/* ================================================================
   KACYA UNHA — LANDING PAGE
   Identidade: Arquétipos "A Sábia" (técnica, precisão, confiança) +
   "A Amante" (beleza, sofisticação, autocuidado, luxo discreto).
   Mobile-first. Editar cores e fontes é feito nas variáveis abaixo.
   ================================================================ */

/* ---------- 1. TOKENS DE DESIGN ---------- */
:root{
  /* Paleta */
  --cor-off-white:   #FAF6F1;
  --cor-bege:        #EFE1D1;
  --cor-nude:        #D9C4A9;
  --cor-marrom-claro:#A98B6E;
  --cor-marrom-cafe: #3D2B24;
  --cor-chocolate:   #2A1B16;
  --cor-preto:       #1C130F;
  --cor-bordo:       #6B1F2A;
  --cor-vinho:       #4A0E15;
  --cor-dourado:     #B8985F;
  --cor-dourado-claro:#D9C08E;

  /* Papel de fundo e texto padrão */
  --bg: var(--cor-off-white);
  --texto: var(--cor-chocolate);
  --texto-suave: #6B5A4E;

  /* Tipografia */
  --fonte-display: 'Fraunces', Georgia, serif;
  --fonte-corpo: 'Jost', 'Segoe UI', sans-serif;

  /* Espaçamento em escala */
  --espaco-xs: .5rem;
  --espaco-sm: 1rem;
  --espaco-md: 2rem;
  --espaco-lg: 4rem;
  --espaco-xl: 7rem;

  /* Outros */
  --raio: 4px;
  --raio-lg: 18px;
  --sombra: 0 20px 45px -25px rgba(28, 19, 15, .35);
  --sombra-suave: 0 10px 30px -18px rgba(28, 19, 15, .25);
  --transicao: .5s cubic-bezier(.16,.84,.44,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--texto);
  font-family: var(--fonte-corpo);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul{ list-style: none; }
table{ border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 2px solid var(--cor-dourado);
  outline-offset: 3px;
}

/* ---------- 3. UTILITÁRIOS ---------- */
.container{
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--espaco-sm);
}
.container--estreito{ max-width: 720px; }

.secao{ padding-block: var(--espaco-xl); }

.eyebrow{
  display: block;
  font-family: var(--fonte-corpo);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cor-bordo);
  margin-bottom: var(--espaco-sm);
  font-weight: 500;
}
.eyebrow--centro{ text-align: center; }

.titulo-secao{
  font-family: var(--fonte-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--espaco-lg);
  color: var(--cor-preto);
  line-height: 1.2;
}
.titulo-secao--intro{ margin-bottom: 1rem; }

h1, h2, h3{ font-family: var(--fonte-display); color: var(--cor-preto); }
h2{ font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.25; margin-bottom: var(--espaco-sm); }
h3{ font-weight: 500; font-size: 1.25rem; margin-bottom: .5rem; }

/* Reveal ao rolar (JS adiciona a classe .visivel) */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16,.84,.44,1);
}
.reveal.visivel{ opacity: 1; transform: translateY(0); }

/* ---------- 4. BOTÕES ---------- */
.botao{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 2.1rem;
  border-radius: var(--raio);
  font-family: var(--fonte-corpo);
  font-size: .92rem;
  letter-spacing: .04em;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.botao--primario{
  background: var(--cor-vinho);
  color: var(--cor-off-white);
  box-shadow: var(--sombra-suave);
}
.botao--primario:hover{ background: var(--cor-bordo); transform: translateY(-2px); box-shadow: var(--sombra); }

.botao--secundario{
  background: transparent;
  color: var(--cor-preto);
  border: 1px solid var(--cor-marrom-claro);
}
.botao--secundario:hover{ border-color: var(--cor-vinho); color: var(--cor-vinho); transform: translateY(-2px); }

.botao--outline{
  background: transparent;
  color: var(--cor-vinho);
  border: 1px solid var(--cor-vinho);
  padding: .75rem 1.6rem;
  font-size: .85rem;
}
.botao--outline:hover{ background: var(--cor-vinho); color: var(--cor-off-white); }

.botao--whatsapp{
  background: var(--cor-preto);
  color: var(--cor-dourado-claro);
  padding: 1.1rem 2.6rem;
  font-size: 1rem;
  box-shadow: var(--sombra);
}
.botao--whatsapp:hover{ background: var(--cor-vinho); color: var(--cor-off-white); transform: translateY(-2px); }

/* ---------- 5. MARCA / MONOGRAMA ---------- */
.marca{ display: flex; align-items: center; gap: .6rem; }
.marca__monograma{
  width: 34px; height: 34px;
  border: 1px solid var(--cor-dourado);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--fonte-display);
  font-size: .95rem;
  color: var(--cor-dourado);
  flex-shrink: 0;
}
.marca__monograma--grande{
  width: 68px; height: 68px;
  font-size: 1.7rem;
  margin-inline: auto;
  margin-bottom: var(--espaco-sm);
}
.marca__nome{
  font-family: var(--fonte-display);
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--cor-preto);
}
.marca__nome em{ font-style: normal; color: var(--cor-bordo); }

/* ---------- 6. CABEÇALHO ---------- */
.cabecalho{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding-block: 1.3rem;
}
.cabecalho.rolado{
  background: rgba(250, 246, 241, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(28,19,15,.08);
  padding-block: .8rem;
}
.cabecalho__conteudo{ display: flex; align-items: center; justify-content: space-between; }

.navegacao{ display: none; align-items: center; gap: var(--espaco-md); }
.navegacao a{
  font-size: .88rem;
  letter-spacing: .03em;
  color: var(--cor-marrom-cafe);
  position: relative;
  padding-bottom: 2px;
}
.navegacao a:not(.navegacao__cta)::after{
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--cor-dourado);
  transition: right .35s ease;
}
.navegacao a:not(.navegacao__cta):hover::after{ right: 0; }
.navegacao__cta{
  border: 1px solid var(--cor-vinho);
  padding: .5rem 1.3rem;
  border-radius: var(--raio);
  color: var(--cor-vinho) !important;
}
.navegacao__cta:hover{ background: var(--cor-vinho); color: var(--cor-off-white) !important; }

.menu-toggle{
  display: flex; flex-direction: column; gap: 5px;
  width: 26px;
}
.menu-toggle span{
  height: 1px; width: 100%; background: var(--cor-preto);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 900px){
  .navegacao{
    display: flex;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
  }
  .menu-toggle{ display: none; }
}
@media (max-width: 899px){
  .navegacao{
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    padding: var(--espaco-lg) var(--espaco-md);
    background: var(--cor-off-white);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: var(--espaco-md);
    z-index: 110;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.16,.84,.44,1);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    visibility: hidden;
    pointer-events: none;
  }
  .navegacao.active,
  .navegacao.aberto{
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .navegacao a{ font-size: 1.1rem; }
  .menu-toggle{
    position: relative;
    z-index: 120;
  }
}

/* ---------- 7. BOTÃO FLUTUANTE ---------- */
.botao-flutuante{
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  background: var(--cor-vinho);
  color: var(--cor-off-white);
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .04em;
  box-shadow: var(--sombra);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, background .3s ease;
}
.botao-flutuante.visivel{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.botao-flutuante:hover{ background: var(--cor-bordo); }

/* ---------- 8. HERO ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--espaco-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #EFE1D1 0%, #E4CFB4 55%, #D9C4A9 100%);
}
.hero::before{
  /* textura sutil de ambiente, substitui um "gradiente forte" por algo orgânico */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(184,152,95,.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(74,14,21,.10), transparent 60%);
  pointer-events: none;
}
.hero__moldura{
  position: absolute;
  top: 0; right: 0;
  width: min(58%, 620px);
  height: 100%;
  overflow: hidden;
}
.hero__foto{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%);
}
.hero__conteudo{ position: relative; z-index: 2; max-width: 620px; }
.hero__titulo{
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: var(--espaco-sm);
}
.hero__titulo em{ font-style: italic; color: var(--cor-bordo); font-weight: 400; }
.hero__texto{
  font-size: 1.05rem;
  color: var(--texto-suave);
  max-width: 480px;
  margin-bottom: var(--espaco-md);
}
.hero__acoes{ display: flex; flex-wrap: wrap; gap: var(--espaco-sm); }

.hero__scroll{
  position: absolute;
  bottom: var(--espaco-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span{
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--cor-dourado), transparent);
  animation: escorrer 2.2s ease-in-out infinite;
}
@keyframes escorrer{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  51%{ transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 720px){
  .hero{
    align-items: flex-end;
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
    min-height: 100svh;
  }
  .hero__moldura{
    width: 100%;
    height: 44%;
    top: 0;
    opacity: .42;
  }
  .hero__foto{
    mask-image: linear-gradient(180deg, transparent 0%, black 60%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 60%);
  }
  .hero__conteudo{
    margin-top: 0;
    width: 100%;
  }
  .hero__titulo{
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.15;
  }
  .hero__texto{
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero__acoes{
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    max-width: 100%;
  }
  .hero__acoes .botao{
    width: 100%;
    min-height: 48px;
    white-space: normal;
    padding-inline: 1.25rem;
  }
  .hero__scroll{ bottom: 1rem; }
}

/* ---------- 21. AJUSTES MOBILE ---------- */
@media (max-width: 899px){
  :root{
    --espaco-lg: 3rem;
    --espaco-xl: 4.5rem;
  }

  .container{ padding-inline: 1.25rem; }
  .secao{ padding-block: var(--espaco-lg); }

  .cabecalho{ padding-block: 1rem; }
  .cabecalho.rolado{ padding-block: .75rem; }

  .menu-toggle{
    min-width: 44px;
    min-height: 44px;
    padding: 9px;
    justify-content: center;
    align-items: center;
  }

  .marca__nome{ font-size: .95rem; }

  .botao-flutuante{
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: max(16px, env(safe-area-inset-right, 16px));
    padding: .9rem 1.25rem;
    min-height: 44px;
  }

  .faq__pergunta{
    min-height: 48px;
    padding: 1rem 0;
    font-size: .98rem;
  }

  .cartao-servico .botao{
    align-self: stretch;
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .agendamento__conteudo{ gap: .75rem; width: 100%; }
  .agendamento .botao{
    width: 100%;
    max-width: 340px;
    min-height: 48px;
    white-space: normal;
  }

  .agendamento h2,
  .agendamento h3{
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.25;
  }

  .tabela-valores__caixa{ -webkit-overflow-scrolling: touch; }

  .sobre__selo{
    bottom: -12px;
    left: -8px;
  }

  .localizacao__mapa{ min-height: 260px; }

  .titulo-secao{ margin-bottom: 2rem; }
}

/* ---------- 9. SOBRE ---------- */
.sobre__grade{
  display: grid;
  gap: var(--espaco-lg);
  align-items: center;
}
.sobre__imagem{ position: relative; }
.sobre__imagem img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra);
}
.sobre__imagem.sem-imagem img{ display: none; }
.sobre__imagem.sem-imagem{
  aspect-ratio: 4/5;
  border-radius: var(--raio-lg);
  background: linear-gradient(160deg, var(--cor-nude), var(--cor-bege));
  box-shadow: var(--sombra);
}
.sobre__selo{
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--cor-off-white);
  border-radius: 50%;
  padding: 14px;
  box-shadow: var(--sombra-suave);
}
.sobre__selo .marca__monograma--grande{ margin: 0; width: 56px; height: 56px; font-size: 1.4rem; }

.sobre__texto p{ color: var(--texto-suave); margin-bottom: var(--espaco-sm); }
.sobre__lista{ margin-top: var(--espaco-md); display: flex; flex-direction: column; gap: .8rem; }
.sobre__lista li{ display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem; color: var(--texto); }

@media (min-width: 900px){
  .sobre__grade{ grid-template-columns: .8fr 1fr; }
}

/* ---------- 10. ÍCONES (SVG inline via mask, monocromáticos) ---------- */
.icone{
  display: inline-block;
  width: 22px; height: 22px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  flex-shrink: 0;
}
.icone--check{ color: var(--cor-vinho); width:18px; height:18px; margin-top:3px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.icone--usuario{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.icone--casa{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E"); }
.icone--escudo{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/svg%3E"); }
.icone--gota{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 2s7 8 7 13a7 7 0 0 1-14 0c0-5 7-13 7-13Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 2s7 8 7 13a7 7 0 0 1-14 0c0-5 7-13 7-13Z'/%3E%3C/svg%3E"); }
.icone--estrela{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpolygon points='12 2 15 9 22 9.5 17 14.5 18.5 22 12 18 5.5 22 7 14.5 2 9.5 9 9'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpolygon points='12 2 15 9 22 9.5 17 14.5 18.5 22 12 18 5.5 22 7 14.5 2 9.5 9 9'/%3E%3C/svg%3E"); }
.icone--relogio{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15.5 14'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15.5 14'/%3E%3C/svg%3E"); }
.icone--relogio-pequeno{ width:15px; height:15px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15.5 14'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15.5 14'/%3E%3C/svg%3E"); color: var(--texto-suave); }
.icone--pin{ width:16px; height:16px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.icone--whatsapp{ width:20px; height:20px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.9-2-1-.3-.1-.5-.1-.7.1-.2.3-.7 1-.9 1.2-.2.2-.3.2-.6.1-.3-.1-1.3-.5-2.4-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.1.2-.3.3-.5.1-.2 0-.4 0-.5C10 9 9.5 7.7 9.3 7.2 9.1 6.7 8.9 6.7 8.7 6.7h-.5c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.2 5 4.4.7.3 1.2.5 1.7.6.7.2 1.3.2 1.8.1.5-.1 1.7-.7 2-1.4.2-.7.2-1.2.1-1.3-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2Zm0 18.2a8.1 8.1 0 0 1-4.2-1.1l-.3-.2-3.1.8.8-3-.2-.3A8.2 8.2 0 1 1 12 20.2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.9-2-1-.3-.1-.5-.1-.7.1-.2.3-.7 1-.9 1.2-.2.2-.3.2-.6.1-.3-.1-1.3-.5-2.4-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.1.2-.3.3-.5.1-.2 0-.4 0-.5C10 9 9.5 7.7 9.3 7.2 9.1 6.7 8.9 6.7 8.7 6.7h-.5c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.2 5 4.4.7.3 1.2.5 1.7.6.7.2 1.3.2 1.8.1.5-.1 1.7-.7 2-1.4.2-.7.2-1.2.1-1.3-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2Zm0 18.2a8.1 8.1 0 0 1-4.2-1.1l-.3-.2-3.1.8.8-3-.2-.3A8.2 8.2 0 1 1 12 20.2Z'/%3E%3C/svg%3E"); }

/* ---------- 11. DIFERENCIAIS ---------- */
.diferenciais{ background: var(--cor-bege); }
.diferenciais__grade{
  display: grid;
  gap: var(--espaco-md);
  grid-template-columns: 1fr;
}
.cartao-diferencial{
  background: var(--cor-off-white);
  padding: var(--espaco-md) var(--espaco-md);
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-suave);
  transition: transform .4s ease, box-shadow .4s ease;
}
.cartao-diferencial:hover{ transform: translateY(-6px); box-shadow: var(--sombra); }
.cartao-diferencial .icone{ color: var(--cor-vinho); width: 26px; height: 26px; margin-bottom: var(--espaco-sm); }
.cartao-diferencial p{ color: var(--texto-suave); font-size: .92rem; }

@media (min-width: 640px){ .diferenciais__grade{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .diferenciais__grade{ grid-template-columns: repeat(3, 1fr); } }

/* ---------- 12. PORTFÓLIO ---------- */
.portfolio__intro{ text-align: center; color: var(--texto-suave); max-width: 520px; margin: 0 auto 3rem; }
.portfolio__grade{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--espaco-xs);
}
.portfolio__item{
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--raio);
  cursor: zoom-in;
}
.portfolio__item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio__item:hover img{ transform: scale(1.06); }
.portfolio__item.sem-imagem{ background: linear-gradient(160deg, var(--cor-nude), var(--cor-marrom-claro)); }
.portfolio__item.sem-imagem img{ display: none; }

@media (min-width: 640px){ .portfolio__grade{ grid-template-columns: repeat(3, 1fr); } }

.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,19,15,.94);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--espaco-md);
}
.lightbox.aberto{ display: flex; }
.lightbox img{ max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--raio); }
.lightbox__fechar{
  position: absolute; top: 20px; right: 26px;
  color: var(--cor-off-white); font-size: 2.2rem; line-height: 1;
  font-weight: 300;
}

/* ---------- 13. SERVIÇOS ---------- */
.servicos__grade{
  display: grid;
  gap: var(--espaco-md);
  grid-template-columns: 1fr;
}
.cartao-servico{
  position: relative;
  background: var(--cor-off-white);
  border: 1px solid rgba(74,14,21,.08);
  border-radius: var(--raio-lg);
  padding: var(--espaco-md);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform .4s ease, box-shadow .4s ease;
}
.cartao-servico:hover{ transform: translateY(-6px); box-shadow: var(--sombra); }
.cartao-servico--destaque{ border-color: var(--cor-dourado); }
.cartao-servico__etiqueta{
  position: absolute; top: -12px; left: var(--espaco-md);
  background: var(--cor-vinho); color: var(--cor-off-white);
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px;
}
.cartao-servico__topo{ display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.cartao-servico__valor{ font-family: var(--fonte-display); color: var(--cor-bordo); font-size: 1.15rem; white-space: nowrap; }
.cartao-servico__descricao{ color: var(--texto-suave); font-size: .92rem; flex-grow: 1; }
.cartao-servico__tempo{ display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--texto-suave); }
.cartao-servico .botao{ margin-top: .4rem; align-self: flex-start; }

@media (min-width: 640px){ .servicos__grade{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .servicos__grade{ grid-template-columns: repeat(4, 1fr); } }

/* ---------- 14. TABELA DE VALORES ---------- */
.tabela-valores{ background: var(--cor-chocolate); color: var(--cor-off-white); }
.tabela-valores .eyebrow{ color: var(--cor-dourado-claro); }
.tabela-valores .titulo-secao{ color: var(--cor-off-white); }
.tabela-valores__caixa{
  overflow-x: auto;
  border-radius: var(--raio-lg);
  background: rgba(250,246,241,.03);
  border: 1px solid rgba(217,192,142,.2);
}
.tabela-valores table{ min-width: 480px; }
.tabela-valores th, .tabela-valores td{
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: .92rem;
}
.tabela-valores thead th{
  font-family: var(--fonte-corpo);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  color: var(--cor-dourado-claro);
  border-bottom: 1px solid rgba(217,192,142,.25);
}
.tabela-valores tbody tr:not(:last-child) td{ border-bottom: 1px solid rgba(250,246,241,.08); }
.tabela-valores tbody td:last-child{ color: var(--cor-dourado-claro); font-family: var(--fonte-display); }
.tabela-valores__nota{ text-align: center; margin-top: var(--espaco-sm); font-size: .8rem; color: rgba(250,246,241,.55); }

/* ---------- 15. AVALIAÇÕES ---------- */
.avaliacoes__grade{
  display: grid;
  gap: var(--espaco-md);
  grid-template-columns: 1fr;
}
.cartao-avaliacao{
  background: var(--cor-bege);
  padding: var(--espaco-md);
  border-radius: var(--raio-lg);
  position: relative;
}
.cartao-avaliacao__estrelas{ color: var(--cor-dourado); letter-spacing: .2em; font-size: .85rem; margin-bottom: .8rem; }
.cartao-avaliacao p{ font-family: var(--fonte-display); font-style: italic; color: var(--cor-preto); font-size: 1.02rem; margin-bottom: 1rem; }
.cartao-avaliacao__autora{ font-size: .8rem; letter-spacing: .04em; color: var(--texto-suave); text-transform: uppercase; }

@media (min-width: 720px){ .avaliacoes__grade{ grid-template-columns: repeat(3, 1fr); } }

/* ---------- 16. FAQ ---------- */
.faq__lista{ display: flex; flex-direction: column; }
.faq__item{ border-bottom: 1px solid rgba(74,14,21,.12); }
.faq__pergunta{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--espaco-sm);
  padding: 1.3rem 0;
  text-align: left;
  font-family: var(--fonte-display);
  font-size: 1.02rem;
  color: var(--cor-preto);
}
.faq__icone{
  position: relative;
  width: 16px; height: 16px; flex-shrink: 0;
}
.faq__icone::before, .faq__icone::after{
  content: '';
  position: absolute; background: var(--cor-vinho);
  transition: transform .35s ease;
}
.faq__icone::before{ top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq__icone::after{ left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq__pergunta[aria-expanded="true"] .faq__icone::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq__resposta{
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16,.84,.44,1), padding .45s ease;
}
.faq__resposta p{ padding-bottom: 1.3rem; color: var(--texto-suave); font-size: .93rem; max-width: 620px; }

/* ---------- 17. LOCALIZAÇÃO / HORÁRIO ---------- */
.localizacao{ background: var(--cor-bege); }
.localizacao__grade{ display: grid; gap: var(--espaco-lg); align-items: center; }
.localizacao__info p{ color: var(--texto-suave); margin-bottom: var(--espaco-sm); }
.localizacao__info h2{ margin-bottom: var(--espaco-sm); }
.localizacao__mapa{
  aspect-ratio: 4/3;
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
}

.horario{ margin-top: var(--espaco-lg); }
.horario__tabela td{ padding: .55rem 0; font-size: .92rem; border-bottom: 1px solid rgba(74,14,21,.1); }
.horario__tabela td:last-child{ text-align: right; color: var(--cor-bordo); font-family: var(--fonte-display); }

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

/* ---------- 18. INSTAGRAM ---------- */
.instagram{ text-align: center; }
.instagram__intro{ color: var(--texto-suave); max-width: 480px; margin: 0 auto 3rem; }
.instagram__grade{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--espaco-xs);
  margin-bottom: var(--espaco-md);
}
.instagram__item{ aspect-ratio: 1/1; overflow: hidden; border-radius: var(--raio); }
.instagram__item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.instagram__item:hover img{ transform: scale(1.08); }
.instagram__item.sem-imagem{ background: linear-gradient(160deg, var(--cor-nude), var(--cor-bege)); }
.instagram__item.sem-imagem img{ display: none; }

@media (min-width: 640px){ .instagram__grade{ grid-template-columns: repeat(4, 1fr); } }

/* ---------- 19. AGENDAMENTO (CTA final) ---------- */
.agendamento{
  background: var(--cor-vinho);
  color: var(--cor-off-white);
  text-align: center;
}
.agendamento .marca__monograma--grande{ border-color: var(--cor-dourado-claro); color: var(--cor-dourado-claro); }
.agendamento .eyebrow{ color: var(--cor-dourado-claro); }
.agendamento h2{ color: var(--cor-off-white); }
.agendamento p{ color: rgba(250,246,241,.75); max-width: 480px; margin-inline: auto; margin-bottom: var(--espaco-md); }
.agendamento__conteudo{ display: flex; flex-direction: column; align-items: center; }

/* ---------- 20. RODAPÉ ---------- */
.rodape{ background: var(--cor-preto); color: rgba(250,246,241,.7); padding-block: var(--espaco-lg) var(--espaco-md); }
.rodape__conteudo{ display: flex; flex-direction: column; gap: var(--espaco-md); align-items: center; text-align: center; }
.rodape__marca .marca__nome{ color: var(--cor-off-white); }
.rodape__links{ display: flex; gap: var(--espaco-md); flex-wrap: wrap; justify-content: center; }
.rodape__links a{ font-size: .85rem; letter-spacing: .03em; }
.rodape__links a:hover{ color: var(--cor-dourado-claro); }
.rodape__direitos{ font-size: .78rem; color: rgba(250,246,241,.4); }

@media (min-width: 720px){
  .rodape__conteudo{ flex-direction: row; justify-content: space-between; text-align: left; }
}
