/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

html, body {
    overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #efe3d6;
  color: #4c3427;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* REMOVE ESTILO PADRÃO DOS LINKS */
a {
  text-decoration: none;
  color: inherit;
}


/* CONTAINER */
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(241, 230, 223, 0.85);
  border-top: 3px solid #b9898d;
  border-bottom: 2px solid #b9898d;
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#conteudo {
  padding-top: 90px; /* altura do header */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 48px;
}

.brand-text {
  font-size: 0.9rem;
  color: #7b5c5d;
}

/* ESCONDE NO DESKTOP */
.menu-toggle {
  display: none;
}

/* MOBILE */
@media (max-width: 900px) {

  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 1.6rem;
    color: #7b5c5d;
    cursor: pointer;
  }
  
  .nav-list a.active::after {
  transform: scaleX(1);
}
}

/* NAV */
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-list a {
  position: relative;
  font-size: 0.95rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: -4px;
  left: 0;
  background: #8f625a;
  transform: scaleX(0);
  transition: 0.3s;
}

.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

/* HERO BASE */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;  
}

/* OVERLAY SÓ PRA AJUDAR LEITURA */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.98) 35%,
    rgba(255,255,255,0.92) 55%,
    rgba(255,255,255,0.75) 70%,
    rgba(255,255,255,0.4) 100%
  );
  z-index: 1;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: stretch;
  min-height: 90vh;
}

/* LADO ESQUERDO (FUNDO AQUI!) */
.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px;
  border-radius: 20px 0 0 20px;
  

  background: url("img/fundo.png") no-repeat;
  background-size: cover;
  background-position: 70% center;
}

@media(max-width: 900px) {

  .hero-left {
    min-height: 420px;
    background-position: 80% top;
  }

  .hero-image img {
    max-width: 260px;
  }

}


/* TEXTO */
.hero-text {
  position: relative;
  z-index: 2;
  color: #af797d;
  max-width: 480px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLuxury 1.2s ease forwards;
  animation-delay: 0.2s;
  max-width: 520px;
  line-height: 1.9;
}

@keyframes fadeLuxury {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* LADO DIREITO */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ebe6;
  opacity: 0;
  transform: translateX(60px);
  animation: fadeRight 1.2s ease forwards;
  animation-delay: 0.4s;
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* HOVER 🔥 */
.hero-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}


/* BOTÕES */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.btn.primary {
  background: #b9898d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.btn.primary:hover {
  background: #a57276;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn.primary:hover .arrow {
  transform: translateY(3px);
}

.btn.primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.5s;
}

.btn.primary:hover::after {
  left: 100%;
}

.btn.secondary {
  background: #e8ded8;
  color: #7b5c5d;
  padding: 12px 22px;
  border-radius: 25px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 40px 20px;
  }

  .hero-image {
    padding: 30px;
  }
}

.arrow {
  transition: 0.3s;
  margin-left: 8px;
  display: inline-block;
  animation: descer 1.2s infinite;
}

@keyframes descer {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

/* SECTION */
.section {
  padding: 4rem 0;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  line-height: 1.7;
  letter-spacing: 0.4px;
  color: #5a3e32;
  text-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

/* GRID */
.split-grid,
.about-grid,
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-phrase {
    min-height: 350px;
  }

  .nav-list {
    display: none;
  }
}

/* ===== CONTAINER ===== */
.zap-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    animation: fadeInUp 1s ease forwards;
}

/* ===== BOTÃO ===== */
.zap-btn {
    position: relative;
    width: 65px;
    height: 65px;
    display: inline-block;
}

/* ===== AURA 1 ===== */
.zap-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: aura1 2.5s infinite;
    z-index: 0;
}

/* ===== AURA 2 (ATRASADA) ===== */
.zap-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    animation: aura2 2.5s infinite;
    z-index: 0;
}

/* ===== ÍCONE ===== */
.zap-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

/* ===== HOVER ===== */
.zap-btn:hover img {
    transform: scale(1.15) rotate(-5deg);
}

/* ===== ANIMAÇÕES ===== */

/* ENTRADA SUAVE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PULSE DO BOTÃO */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* AURA 1 */
@keyframes aura1 {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* AURA 2 (DESINCRONIZADA) */
@keyframes aura2 {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ===== ABOUT MODERNO ===== */
.about-modern {
  padding: 6rem 0;
  background: linear-gradient(
    to bottom,
    #efe3d6,
    #f7f0ea
  );
}

/* GRID PRINCIPAL */
.about-modern-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;

  align-items: stretch;
}

/* CARD TEXTO */
.about-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(185, 137, 141, 0.25);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* TITULO */
.about-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin: 0.5rem 0;
  color: #5a3e32;
  font-weight: 400; /* 👈 mais fino */
  line-height: 1.7;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.06);
  margin-bottom: -1rem;
}

.about-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin: 0.5rem 0;
  color: #5a3e32;
  font-weight: 400; /* 👈 mais fino */
  line-height: 1.7;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
}


.role {
  color: #29253a;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;

}

/* TEXTO */
.about-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #4c3427;
}

.eyebrow{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: -0.5rem;
  line-height: 1.8;
  color: #4c3427;
}

/* IMAGEM */
.about-image {
  height: 100%;
  display: flex;
}

.about-image img {
  width: 100%;
  height: 100%;         /* 🔥 IGUALA ALTURA COM TEXTO */
  object-fit: cover;    /* 🔥 NÃO DISTORCE */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about-modern-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 2rem;
  }

  .about-image img {
    height: auto; /* no mobile evita corte estranho */
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* padrão: de baixo */
.from-bottom {
  transform: translateY(40px);
  opacity: 0;
}

/* da esquerda */
.from-left {
  transform: translateX(-60px);
}

/* da direita */
.from-right {
  transform: translateX(60px);
}

/* quando ativa */
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.quote-panel {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/duvidas.png") no-repeat center;
  background-size: cover;
  opacity: 0.22;
  z-index: 0;
}

.quote-panel {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: #efe3d6;
}

.quote-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 3rem;
  align-items: center;

  position: relative;
  z-index: 2;

  /* deslocamento elegante para direita (substitui padding fixo) */
  padding-left: clamp(60px, 8vw, 320px);
}

/* CARDS */
.text-card,
.contact-card,
.service-card {
  background: rgba(255,255,255,0.5);
  padding: 2rem;
  border-radius: 20px;
}
.faq-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(185, 137, 141, 0.15);
  padding: 3rem;
  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  width: 100%;
  max-width: 650px;

  margin-left: 400px; /* empurra para direita de forma elegante */
}

.faq-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin: 0.5rem 0;
  color: #5a3e32;
  font-weight: 400; /* 👈 mais fino */
  line-height: 1;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/*Texto pergunta*/
.faq-question span:first-child {
  font-weight: 600;
}

/* BOTÃO */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-size: 1rem;
  color: #4c3427;
  font-weight: 500;
}

/* ÍCONE + */
.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;

  border-radius: 50%;
  border: 1.5px solid #b9898d;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 600;

  color: #b9898d;
  background: rgba(255, 255, 255, 0.35);

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.faq-question:hover .faq-icon {
  background: #b9898d;
  color: #fff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 10px 25px rgba(185, 137, 141, 0.35);
}

.faq-item.active .faq-icon {
  background: #b9898d;
  color: #fff;
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 12px 28px rgba(185, 137, 141, 0.4);
}

/* RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  padding-bottom: 1rem;
  line-height: 1.7;
  color: #4c3427;

}

/* ABERTO */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* ÍCONE QUANDO ABRE */
.faq-item.active .faq-icon {
  background: #b9898d;
  color: #fff;
  transform: rotate(45deg); /* vira X */
}

@media (max-width: 900px) {
  .quote-inner {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .quote-panel::before {
    background-position: 40% center;
     opacity: 0.50;
    }

  .faq-card {
    max-width: 100%;
    margin-left: 0;
  }
}

.faq-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(185, 137, 141, 0.25);
  opacity: 0;
  transition: 0.3s ease;
}

.faq-question:hover .faq-icon::after {
  opacity: 1;
  transform: scale(1.15);
}

/* =========================
   ATENDIMENTO SECTION
========================= */

#atendimento {
  padding: 6rem 0;
}

/* GRID PRINCIPAL */
#atendimento .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* IMAGEM */
#atendimento .frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);;
}

#atendimento .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#atendimento .frame:hover img {
  transform: scale(1.05);
}

/* TEXTO PRINCIPAL */
#atendimento .section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

/* EYEBROW */
#atendimento .eyebrow {
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b9898d;
}

/* TÍTULO */
#atendimento h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 400;
  color: #5a3e32;
  line-height: 1.4;
}

/* TEXTO */
#atendimento p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4c3427;
  opacity: 0.9;
}

/* =========================
   CARDS DE SERVIÇO
========================= */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(185, 137, 141, 0.18);
  border-radius: 18px;

  padding: 1.5rem;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover elegante */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* título do card */
.service-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #5a3e32;
}

/* texto */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* efeito suave de brilho */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.service-card:hover::before {
  transform: translateX(100%);
}

#atendimento .about-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: #5a3e32;
  line-height: 1.5;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  #atendimento .split-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ATENDIMENTO MODERNO
========================= */

.modern-attendance {
  padding: 6rem 0;
}

/* GRID PRINCIPAL */
.attendance-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}

/* =========================
   IMAGEM VERTICAL
========================= */

.attendance-vertical {
  height: 73%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.attendance-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.attendance-vertical:hover img {
  transform: scale(1.05);
}

/* =========================
   LADO DIREITO
========================= */

.attendance-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* TEXTO */
.attendance-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#atendimento .eyebrow {
  color: #3f2a22;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.attendance-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #5a3e32;
  line-height: 1.4;
}

.attendance-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4c3427;
  opacity: 0.9;
}

/* =========================
   IMAGEM HORIZONTAL
========================= */

.attendance-horizontal {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  height: 260px;
}

.attendance-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.attendance-horizontal:hover img {
  transform: scale(1.05);
}

/* =========================
   MOBILE ATENDIMENTO (CORRIGIDO)
========================= */

@media (max-width: 900px) {

  /* volta grid (mais estável que flex aqui) */
  .attendance-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* IMAGEM VERTICAL (não corta rosto) */
  .attendance-vertical {
    height: 360px;
  }

  .attendance-vertical img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center; /* 🔥 central seguro */
  }

  /* TEXTO COLADO NATURALMENTE */
  .attendance-text {
    margin: 0;
    padding: 0;
  }

  .attendance-text h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.3;
  }

  .attendance-text p {
    margin-top: 0.6rem;
  }

  /* IMAGEM INFERIOR MAIS FLEXÍVEL */
  .attendance-horizontal {
    height: 220px;
  }

  .attendance-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/*-----------------------------------------------------------------------*/
.contato-final {
  background: #e8d8c3;
  padding: 4rem 0;
}

.contato-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr 420px;
  align-items: center;
  gap: 2rem;
}

/* FOTO */
.contato-img img {
  width: 100%;
  max-width: 240px;
}

/* TEXTO */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5a4a42; /* cor do texto elegante */
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info i {
  color: #c46a2d; /* marrom/laranja igual da imagem */
  font-size: 18px;
}

/* links clicáveis */
.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #5a4a42;
  text-decoration: none; /* remove sublinhado */

  transition: all 0.3s ease;
}

.contact-item i {
  color: #c46a2d;
  font-size: 18px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* 🔥 EFEITO HOVER */
.contact-item a:hover {
  transform: scale(1.05); /* aumenta levemente */
  color: #8b3a1a; /* marrom mais escuro */
}

.contact-item a:hover i {
  color: #8b3a1a; /* ícone acompanha */
}

/* REDES SOCIAIS */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  color:#8f3f15;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.social-link svg {
  width: 30px;
  height: 30px;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  color: #f19c6e;
}

/* MAPA */

.contato-map {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-top: 60px; /* ajusta aqui */
  transition-delay: 0.3s;
}

.contato-map.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contato-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contato-img img {
    margin: 0 auto;
  }

  .socials {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center; /* 🔥 CENTRALIZA NO FLEX */
  }
}

.map-address {
  position: absolute;
  top: 10px;
  right: 10px;

  background: transparent;
  box-shadow: none;
  padding: 0;

  font-size: 11px;
  line-height: 1.3;
  color: #5c4445;

  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

  max-width: 140px; /* 🔥 evita ficar gigante */
}

.map-route {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 8px;

  font-size: 11px;
  text-decoration: none;

  color: #fff;
  background: #b9898d;

  border-radius: 4px;
  transition: 0.2s;
}

.map-route:hover {
  background: #5c4445;
}

/* FOOTER */
.footer {
  width: 100%;
  padding: 40px 15px;
  background: rgba(241, 230, 223, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #b9898d;
  border-bottom: 2px solid #b9898d;
  backdrop-filter: blur(10px);

}

.footer-container {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

/* MARCA */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-brand img {
  width: 48px;
  height: auto;
}

.footer-brand h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #7b5c5d;/* escuro suave, não preto */
  margin-top: 5px;
}

/* CRP */
.footer-crp {
  font-size: 12px;
  color: #7b5c5d;
  letter-spacing: 0.5px;
}

/* TEXTO */
.footer-text {
  font-size: 13px;
  color:  #7b5c5d;
  margin-top: 14px;
  line-height: 1.6;
}

/* LINHA */
.footer-line {
  width: 35px;
  height: 2px;
  background:  #5c4445; /* sua cor principal */
  margin: 20px auto;
  border-radius: 2px;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color:  #7b5c5d;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer {
    padding: 30px 10px;
  }

  .footer-brand h2 {
    font-size: 18px;
  }

  .footer-text {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 11px;
  }
}

/* HAMBURGER (HIDDEN IN THE DESKTOP) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  padding: 6px;

  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #5c4445; /* mesma cor do seu site */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background: #b9898d;
}

/* ANIMAÇÃO X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.site-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media(max-width: 900px){

  .site-nav {
    position: fixed;
    top: 20px;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: auto;

    background: rgba(241, 230, 223, 0.95); /* 🔥 sua paleta */
    backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;
    border-radius: 20px 0 0 20px;

    transition: 0.4s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .site-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-list a {
    font-size: 16px;
    color: #5c4445;
  }

  .menu-toggle {
    display: flex;
  }

   .site-nav ul {
    flex-direction: column;
    gap: 20px;
  }
}

.site-nav,
.menu-toggle,
.hero-image img,
.about-image img,
.service-card,
.faq-card {
  will-change: transform, opacity;
  transform: translateZ(0);
}

