/* ============================================================
   TEMPLATE ESTÉTICA · MODELO 1 — "Spa Sofisticado"
   Editorial de luxo, calmo. Serifa dominante, muito respiro.

   >>> PARA TROCAR AS CORES, edite só o bloco :root abaixo. <<<
   ============================================================ */

:root {
  /* ----- PALETA (troque os valores aqui) ----- */
  --bg:        #F6F1EA; /* off-white quente — fundo geral            */
  --bg-alt:    #EFE7DB; /* areia mais quente — seções alternadas     */
  --areia:     #A18267; /* taupe areia — detalhes / textos suaves    */
  --marrom:    #2D241B; /* marrom profundo — títulos e texto forte   */
  --ouro:      #C2A14E; /* dourado suave — acento / botões (CTA)     */
  --ouro-esc:  #A8863B; /* dourado mais escuro — hover do botão      */
  --texto:     #4A4036; /* texto de corpo (marrom acinzentado)       */
  --linha:     #E2D6C6; /* bordas e divisórias                       */
  --branco:    #FFFFFF;
  --wpp:       #25D366; /* verde do WhatsApp (não trocar)            */

  /* ----- TIPOGRAFIA ----- */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* ----- MEDIDAS ----- */
  --max:   1180px;  /* largura máxima do conteúdo */
  --gutter: 24px;   /* respiro lateral (mantido em mobile, NÃO reduzir) */
  --radius: 18px;
  --sombra:    0 18px 50px rgba(45, 36, 27, .10);
  --sombra-sm: 0 10px 28px rgba(45, 36, 27, .08);
}

/* ============ RESET / BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--texto);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* zero scroll horizontal */
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--marrom);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .3px;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.45rem; }

h1 em, h2 em { font-style: italic; color: var(--ouro); font-weight: 500; }

p { font-size: 1.02rem; }

/* container principal — dá o respiro lateral em qualquer largura */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============ EYEBROW / DETALHES ============ */
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--areia);
  margin-bottom: 18px;
}
/* variante com tracinho dourado antes do texto (fundos escuros/hero) */
.tracinho-claro { display: inline-flex; align-items: center; gap: 14px; }
.tracinho-claro::before {
  content: ""; width: 38px; height: 1px; background: var(--ouro);
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 17px 36px;
  border-radius: 100px;
  cursor: pointer; border: none;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.btn-ouro {
  background: var(--ouro);
  color: var(--marrom);
  box-shadow: 0 12px 30px rgba(201, 168, 106, .35);
}
.btn-ouro:hover {
  background: var(--ouro-esc);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(201, 168, 106, .45);
}

.btn-wpp {
  background: var(--wpp);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .30);
}
.btn-wpp svg { width: 20px; height: 20px; fill: currentColor; }
.btn-wpp:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37, 211, 102, .42); }

/* ============ HEADER ============ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 234, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, box-shadow .4s ease, background .4s ease;
}
header.rolou {
  border-bottom-color: var(--linha);
  box-shadow: 0 6px 24px rgba(45, 36, 27, .05);
}

/* ⚠️ NUNCA usar shorthand padding aqui — zera o lateral e cola na borda.
   O respiro lateral vem da .wrap; aqui só vertical. */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: var(--marrom); color: var(--ouro);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  border-radius: 50%;
}
.logo img { width: 46px; height: 46px; object-fit: contain; }
.nome {
  font-family: var(--serif); font-size: 1.35rem; color: var(--marrom);
  font-weight: 600; line-height: 1.1; display: flex; flex-direction: column;
}
.nome small {
  font-family: var(--sans); font-size: .62rem; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase; color: var(--areia);
  margin-top: 2px;
}

header nav ul { list-style: none; display: flex; gap: 34px; }
header nav ul li a {
  font-size: .92rem; color: var(--texto); position: relative; padding: 4px 0;
  transition: color .3s ease;
}
header nav ul li a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--ouro); transition: width .35s ease;
}
header nav ul li a:hover { color: var(--marrom); }
header nav ul li a:hover::after { width: 100%; }

.cta-top { padding: 13px 26px; }

/* hambúrguer (escondido no desktop) */
.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; cursor: pointer; padding: 4px; flex: none;
}
.burger span {
  height: 2px; width: 100%; background: var(--marrom); border-radius: 2px;
  transition: transform .35s ease, opacity .3s ease;
}
.burger.aberto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.aberto span:nth-child(2) { opacity: 0; }
.burger.aberto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px; padding-bottom: 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 168, 106, .18), transparent 46%),
    radial-gradient(circle at 12% 84%, rgba(161, 130, 103, .14), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero h1 { margin: 4px 0 26px; max-width: 16ch; }
.hero > .wrap > p { max-width: 52ch; font-size: 1.12rem; color: var(--texto); }

.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  margin-top: 40px;
}
.selo-google {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--texto);
}
.selo-google b { color: var(--marrom); font-weight: 600; }
.estrelas { color: var(--ouro); letter-spacing: 1px; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--areia);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .linha {
  width: 1px; height: 46px;
  background: linear-gradient(var(--ouro), transparent);
}

/* ============ FAIXA DE CONFIANÇA ============ */
.trust { background: var(--marrom); color: #efe6da; padding: 56px 0; }
.trust .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.trust .item { position: relative; }
.trust .item:not(:last-child)::after {
  content: ""; position: absolute; right: -15px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 52px; background: rgba(201, 168, 106, .28);
}
.trust .num {
  font-family: var(--serif); font-size: 2.9rem; font-weight: 600;
  color: var(--ouro); line-height: 1;
}
.trust .num span { font-size: 1.6rem; }
.trust .lbl {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: #c9bba8; margin-top: 12px;
}

/* ============ BLOCOS DE SEÇÃO ============ */
.bloco { padding: clamp(70px, 9vw, 130px) 0; }
.bloco.alt { background: var(--bg-alt); }

.head-centro { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.head-centro h2 { margin: 6px 0 18px; }
.head-centro p { color: var(--texto); }

/* ---- Experiência ---- */
.exp {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.exp-txt h2 { margin: 6px 0 22px; }
.exp-txt p { margin-bottom: 18px; }
.lista { list-style: none; margin-top: 28px; }
.lista li {
  position: relative; padding-left: 30px; margin-bottom: 14px;
  color: var(--marrom); font-weight: 400;
}
.lista li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--ouro);
  background: radial-gradient(circle, var(--ouro) 0 4px, transparent 4px);
}
.exp-img { position: relative; }
.exp-img img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--sombra);
  aspect-ratio: 4/5; object-fit: cover;
}
/* selo flutuante dourado sobre as fotos */
.selo {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--branco); color: var(--marrom);
  padding: 18px 26px; border-radius: 14px; box-shadow: var(--sombra-sm);
  font-family: var(--serif); font-size: 1.05rem; max-width: 220px; line-height: 1.4;
}
.selo b { color: var(--ouro); font-weight: 700; }

/* ---- Serviços ---- */
.servicos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
}
.serv {
  background: var(--branco); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sombra-sm); border: 1px solid var(--linha);
  transition: transform .4s ease, box-shadow .4s ease;
}
.serv:hover { transform: translateY(-8px); box-shadow: var(--sombra); }
.serv-img { overflow: hidden; aspect-ratio: 3/2; }
.serv-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.serv:hover .serv-img img { transform: scale(1.06); }
.serv-corpo { padding: 30px 28px 34px; }
.serv-corpo h3 { margin-bottom: 12px; }
.serv-corpo p { font-size: .96rem; margin-bottom: 18px; }
.preco {
  display: inline-block;
  font-family: var(--sans); font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--areia);
  padding-top: 16px; border-top: 1px solid var(--linha); width: 100%;
}

.centro-cta { text-align: center; margin-top: 60px; }

/* ---- Antes & Depois ---- */
.resultados { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ad { position: relative; }
.ad-par {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sombra-sm); aspect-ratio: 4/5; cursor: pointer;
}
.ad-par img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ad-depois { opacity: 0; transition: opacity .55s ease; }
/* hover (desktop) ou toque (classe .ver via JS) revela o depois */
.ad-par:hover .ad-depois,
.ad-par.ver .ad-depois { opacity: 1; }

.ad-tag-antes, .ad-tag-depois {
  position: absolute; top: 14px; z-index: 2;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; backdrop-filter: blur(4px);
}
.ad-tag-antes { left: 14px; background: rgba(45, 36, 27, .72); color: #fff; }
.ad-tag-depois {
  right: 14px; background: var(--ouro); color: var(--marrom);
  opacity: 0; transition: opacity .55s ease;
}
.ad-par:hover .ad-tag-depois,
.ad-par.ver .ad-tag-depois { opacity: 1; }

.ad figcaption {
  text-align: center; margin-top: 16px; font-family: var(--serif);
  font-size: 1.1rem; color: var(--marrom);
}
.lgpd-nota {
  text-align: center; margin-top: 46px;
  font-size: .82rem; color: var(--areia); max-width: 620px;
  margin-inline: auto;
}

/* ---- Sobre ---- */
.sobre {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.sobre-img { position: relative; }
.sobre-img img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--sombra);
  aspect-ratio: 4/5; object-fit: cover;
}
.sobre-img .selo { left: auto; right: -22px; bottom: -22px; }
.sobre-txt h2 { margin: 6px 0 22px; }
.sobre-txt p { margin-bottom: 18px; }
.credenciais { list-style: none; margin-top: 30px; display: grid; gap: 4px; }
.credenciais li {
  display: flex; flex-direction: column; padding: 16px 0;
  border-top: 1px solid var(--linha);
}
.credenciais li:last-child { border-bottom: 1px solid var(--linha); }
.credenciais b { color: var(--marrom); font-weight: 500; font-size: 1rem; }
.credenciais span { font-size: .86rem; color: var(--areia); }

/* ---- Depoimentos ---- */
.depoimentos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card-depo {
  background: var(--branco); border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--sombra-sm); border: 1px solid var(--linha);
  display: flex; flex-direction: column;
}
.card-depo .estrelas { font-size: 1rem; margin-bottom: 18px; }
.card-depo p {
  font-family: var(--serif); font-size: 1.28rem; line-height: 1.5;
  color: var(--marrom); font-style: italic; flex: 1;
}
.autora { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.autora img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ouro);
}
.autora b { color: var(--marrom); font-weight: 500; display: block; font-size: .95rem; }
.autora small { color: var(--areia); font-size: .8rem; }

/* ---- Agendamento ---- */
.agendar {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.agendar-info h2 { margin: 6px 0 18px; }
.agendar-info > p { margin-bottom: 30px; max-width: 44ch; }
.agendar-extra { display: grid; gap: 18px; margin-top: 40px; }
.info-item { display: flex; align-items: center; gap: 16px; }
.info-item .ico {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-alt); color: var(--ouro);
}
.info-item .ico svg { width: 22px; height: 22px; }
.info-item b { display: block; color: var(--marrom); font-weight: 500; font-size: .95rem; }
.info-item span, .info-item a { color: var(--texto); font-size: .92rem; }
.info-item a:hover { color: var(--ouro); }

/* formulário */
form {
  background: var(--branco); padding: clamp(30px, 4vw, 48px);
  border-radius: var(--radius); box-shadow: var(--sombra); border: 1px solid var(--linha);
  display: flex; flex-direction: column;
}
form label {
  font-size: .82rem; letter-spacing: .06em; color: var(--marrom);
  font-weight: 500; margin: 16px 0 7px;
}
form label:first-child { margin-top: 0; }
form input, form textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--marrom);
  background: var(--bg); border: 1px solid var(--linha); border-radius: 10px;
  padding: 13px 16px; transition: border-color .3s ease, box-shadow .3s ease;
  resize: vertical;
}
form input::placeholder, form textarea::placeholder { color: #b6a78f; }
form input:focus, form textarea:focus {
  outline: none; border-color: var(--ouro);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, .18);
}
.consent {
  flex-direction: row !important; align-items: flex-start; gap: 10px;
  font-size: .8rem !important; color: var(--texto) !important;
  font-weight: 300 !important; letter-spacing: 0 !important; margin-top: 22px !important;
  line-height: 1.5; text-transform: none;
}
.consent input { width: auto; flex: none; margin-top: 4px; accent-color: var(--ouro); }
form .btn { margin-top: 26px; }

/* ---- FAQ ---- */
.faq-wrap .head-centro { margin-bottom: 48px; }
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 16px; }
.item-faq {
  background: var(--branco); border: 1px solid var(--linha);
  border-radius: 14px; overflow: hidden; transition: box-shadow .3s ease;
}
.item-faq[open] { box-shadow: var(--sombra-sm); }
.item-faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  font-family: var(--serif); font-size: 1.2rem; color: var(--marrom);
}
.item-faq summary::-webkit-details-marker { display: none; }
.cruz { position: relative; width: 16px; height: 16px; flex: none; }
.cruz::before, .cruz::after {
  content: ""; position: absolute; background: var(--ouro);
  top: 50%; left: 50%; transition: transform .35s ease;
}
.cruz::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.cruz::after  { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.item-faq[open] .cruz::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.item-faq p { padding: 0 26px 24px; font-size: .96rem; }

/* ---- Contato ---- */
.contato {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 70px);
  align-items: start;
}
.contato-info h2 { margin: 6px 0 30px; }
.contato-info .info-item { margin-bottom: 22px; }
.mapa {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sombra-sm); border: 1px solid var(--linha);
  min-height: 380px;
}
.mapa iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============ FOOTER ============ */
footer { background: var(--marrom); color: #c9bba8; padding: 70px 0 34px; }
footer .mark { background: var(--ouro); color: var(--marrom); }
footer .nome { color: #fff; }
footer .nome small { color: var(--ouro); }
.foot-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(201, 168, 106, .2);
}
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: .85rem;
}
.foot-bottom a { color: var(--ouro); }
.foot-bottom a:hover { text-decoration: underline; }

/* ============ WHATSAPP FLUTUANTE ============ */
.wpp {
  position: fixed; right: 24px; bottom: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wpp);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s ease;
}
.wpp svg { width: 32px; height: 32px; fill: #fff; }
.wpp:hover { transform: scale(1.08); }

/* ============ SCROLL-REVEAL (controlado pelo JS) ============ */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visivel { opacity: 1; transform: none; }
/* itens em sequência dentro de [data-stagger] */
[data-stagger] > * {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-stagger].visivel > * { opacity: 1; transform: none; }

/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  header nav { display: none; } /* substituído pelo menu mobile abaixo */
  .cta-top { display: none; }   /* esconde o CTA do header no mobile  */
  .burger { display: flex; }

  /* menu mobile aberto via classe .menu-aberto no <header> */
  header.menu-aberto nav {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--linha);
    box-shadow: 0 14px 30px rgba(45, 36, 27, .12);
  }
  header.menu-aberto nav ul {
    flex-direction: column; gap: 0;
    padding: 12px var(--gutter) 22px;
  }
  header.menu-aberto nav ul li a {
    display: block; padding: 14px 0; border-bottom: 1px solid var(--linha);
    font-size: 1.05rem;
  }
  header.menu-aberto nav ul li:last-child a { border-bottom: none; }

  .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .trust .item:nth-child(2)::after { display: none; }

  .exp, .sobre, .agendar, .contato { grid-template-columns: 1fr; }
  .sobre-img { order: -1; }
  .servicos, .resultados, .depoimentos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .servicos, .resultados, .depoimentos { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .selo, .sobre-img .selo { left: 12px; right: auto; bottom: -18px; }
  .hero { min-height: 86vh; }
  .hero-actions { gap: 20px; }
  .foot-bottom { justify-content: flex-start; }
}

/* 375px e abaixo — mantém 24px de respiro lateral (NÃO reduzir) */
@media (max-width: 400px) {
  :root { --gutter: 24px; }
  .btn { padding: 15px 26px; }
}

/* ============ REDUÇÃO DE MOVIMENTO ============ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}
