/* ── HERO CONTATOS ── */
.hero-contatos {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 60px 24px;
}

.hero-contatos-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/fundo-heros.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-contatos-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(235, 194, 191, 0.85); /* #EBC2BF @ 85% */
  z-index: 1;
}

.hero-contatos-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-contatos-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  color: #4A3030;
  display: block;
  margin-bottom: 25px;
}

.hero-contatos-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #5C3A3A;
  max-width: 900px;
  line-height: 1.35;
}

.hero-contatos-inner p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #5C3A3A;
  margin-top: 10px;
}

/* ── SEÇÃO: ENTRE EM CONTATO ── */
.contato-section {
  background-color: #FDDEDC;
  padding: 100px 24px;
}

.contato-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contato-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contato-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contato-info {
  display: flex;
  flex-direction: column;
}

.contato-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #613A3A;
  line-height: 1.25;
  margin-bottom: 24px;
}

.contato-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #613A3A;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contato-desc-bold {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #613A3A;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contato-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-item a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contato-item a:hover {
  opacity: 0.8;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contato-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #613A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon-circle img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* Torna os ícones brancos */
}

.contato-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #613A3A;
}

.contato-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ── RESPONSIVO ── */
@media (max-width: 992px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contato-img-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-contatos-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-contatos-title {
    font-size: 1.8rem;
  }
  
  .contato-section {
    padding: 60px 20px;
  }
  
  .contato-titulo {
    font-size: 2.2rem;
  }
}
