/* ─────────────────────────────────────────────────────
   HELENICE MOREIRA — BRAND IDENTITY SYSTEM 2026
   Palette: Vinho Profundo / Vinho Assinatura / Dourado
   Type: Lora (display) + Poppins (UI)
───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors — direto do brandbook */
  --vinho-deep: #3D0413;   /* autoridade máxima */
  --vinho:      #5A061D;   /* identidade principal */
  --vinho-soft: #7A1530;
  --gold:       #C9A96E;   /* accent premium */
  --gold-deep:  #B08F52;
  --gold-lt:    #E8D5B0;
  --rose:       #F5EDE8;   /* cards femininos */
  --off:        #FAF8F5;   /* fundo principal */
  --gray-lt:    #F2F0ED;   /* separadores */
  --gray:       #C2C2C4;   /* captions */

  --ink:    #241015;
  --stone:  #5C4A4F;
  --mist:   #8B7A7E;
  --white:  #FFFFFF;
  --border: #ECE5DE;
  --border2:#DED3C9;
  --wa:     #25D366;
  --wa2:    #1BB857;

  --serif: 'Lora', Georgia, serif;
  --sans:  'Poppins', system-ui, sans-serif;
  --max:   1180px;
  --py:    clamp(72px, 9vw, 120px);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300; font-size: 16px; line-height: 1.75;
  color: var(--ink); background: var(--off); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--vinho-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── SCROLL PROGRESS ───────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--vinho-deep), var(--vinho), var(--gold));
  z-index: 1000; transition: width .1s linear;
}

/* ─── NAV ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .5s var(--ease-out), backdrop-filter .5s, border-color .5s, transform .4s var(--ease-out), box-shadow .4s;
}
nav.scrolled {
  background: rgba(250,248,245,.9); backdrop-filter: blur(18px) saturate(1.4);
  border-color: var(--border); box-shadow: 0 1px 30px rgba(61,4,19,.05);
}
nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600;
  color: var(--vinho); text-decoration: none; letter-spacing: .04em;
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo small {
  font-family: var(--sans); font-size: .52rem; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep);
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone); text-decoration: none;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: var(--vinho); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  white-space: nowrap;
  background: var(--vinho) !important; color: var(--white) !important;
  padding: 11px 24px; border-radius: 2px; letter-spacing: .1em !important;
  transition: background .3s, transform .3s var(--ease-spring), box-shadow .3s !important;
}
.nav-cta:hover { background: var(--vinho-deep) !important; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(61,4,19,.25); }
.nav-cta::after { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--vinho); transition: .35s var(--ease-out); }
.mob-menu {
  position: fixed; inset: 0; background: var(--vinho-deep); z-index: 190;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; transform: translateX(100%); transition: transform .55s var(--ease-soft);
}
.mob-menu.open { transform: none; }
.mob-menu a {
  font-family: var(--serif); font-size: 1.7rem; color: var(--off);
  text-decoration: none; transition: color .2s; opacity: 0; transform: translateX(24px);
}
.mob-menu.open a { opacity: 1; transform: none; transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), color .2s; }
.mob-menu.open a:nth-child(2){transition-delay:.06s}.mob-menu.open a:nth-child(3){transition-delay:.12s}
.mob-menu.open a:nth-child(4){transition-delay:.18s}.mob-menu.open a:nth-child(5){transition-delay:.24s}
.mob-menu.open a:nth-child(6){transition-delay:.3s}
.mob-menu a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 22px; right: 28px; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100svh; padding-top: 76px;
  display: grid; grid-template-columns: 1.05fr .95fr;
  background: var(--off); overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vw,80px) clamp(28px,5vw,64px) clamp(40px,6vw,80px) clamp(28px,6vw,80px);
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 30px; opacity: 0; width: fit-content;
}
.hero-eyebrow::before { content:''; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--serif); font-size: clamp(2.3rem,4.2vw,3.5rem);
  font-weight: 700; line-height: 1.14; color: var(--vinho-deep); margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--vinho); font-weight: 600; }
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line > span { display: inline-block; transform: translateY(110%); }
.hero-sub {
  font-size: clamp(.95rem,1.4vw,1.06rem); color: var(--stone); line-height: 1.8;
  max-width: 480px; margin-bottom: 38px; opacity: 0; transform: translateY(18px); font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; opacity: 0; transform: translateY(18px); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 26px; opacity: 0; transform: translateY(18px); }
.proof-item { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: var(--stone); }
.proof-check {
  width: 22px; height: 22px; background: var(--vinho); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.proof-check svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--vinho); color: #fff; font-family: var(--sans);
  font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 2px; border: 1.5px solid var(--vinho); text-decoration: none;
  position: relative; overflow: hidden;
  transition: background .35s, border-color .35s, transform .3s var(--ease-spring), box-shadow .35s;
}
.btn-primary::before {
  content:''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-101%); transition: transform .45s var(--ease-out); z-index: 0;
}
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; transition: color .35s; }
.btn-primary:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(61,4,19,.28); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover span, .btn-primary:hover svg { color: var(--vinho-deep); stroke: var(--vinho-deep); }
.btn-primary svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--vinho); font-family: var(--sans);
  font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 14.5px 28px; border-radius: 2px; border: 1.5px solid var(--border2); text-decoration: none;
  transition: border-color .3s, color .3s, transform .3s var(--ease-spring);
}
.btn-outline:hover { border-color: var(--vinho); transform: translateY(-3px); }

/* HERO RIGHT — foto com scan diagnóstico */
.hero-right { position: relative; overflow: hidden; background: var(--rose); }
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease-out) .2s;
}
.hero-right.revealed .hero-photo { clip-path: inset(0 0 0% 0); }
.hero-photo-tint {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(61,4,19,.04) 0%, rgba(61,4,19,.18) 100%);
}
/* linha de scan dourada */
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 18px 2px rgba(201,169,110,.6); opacity: 0; pointer-events: none;
}
.hero-right.revealed .scan-line { animation: scan 2.6s var(--ease-soft) 1s 1 forwards; }
@keyframes scan {
  0% { top: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hero-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  background: rgba(250,248,245,.94); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,.4); border-left: 3px solid var(--gold);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 50px rgba(61,4,19,.16);
  opacity: 0; transform: translateY(20px);
}
.hero-right.revealed .hero-badge { animation: badgeIn .8s var(--ease-out) 3.2s forwards; }
@keyframes badgeIn { to { opacity: 1; transform: none; } }
.hero-badge-icon {
  width: 40px; height: 40px; background: var(--vinho); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.hero-badge strong { display: block; font-family: var(--serif); font-size: .92rem; font-weight: 600; color: var(--vinho-deep); }
.hero-badge span { font-size: .7rem; color: var(--mist); letter-spacing: .04em; }

/* ─── SECTIONS ──────────────────────────────────────── */
section { padding: var(--py) 32px; }
.container { max-width: var(--max); margin: 0 auto; }

.sec-eyebrow {
  font-size: .66rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  opacity: 0; transform: translateX(-16px);
}
.sec-eyebrow::before { content:''; display:block; width:0; height:1px; background:var(--gold); transition: width .8s var(--ease-out) .15s; }
.sec-eyebrow.in-view { opacity: 1; transform: none; transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.sec-eyebrow.in-view::before { width: 26px; }
.sec-eyebrow.center { justify-content: center; }

.sec-title {
  font-family: var(--serif); font-size: clamp(1.9rem,3.1vw,2.7rem);
  font-weight: 500; line-height: 1.22; color: var(--vinho-deep); margin-bottom: 22px;
}
.sec-title em { font-style: italic; color: var(--vinho); }
.title-reveal { overflow: hidden; }
.title-reveal .ti { display: inline-block; transform: translateY(110%); opacity: 0; }

.rule { width: 0; height: 1px; background: var(--gold); margin-bottom: 32px; transition: width 1s var(--ease-out); }
.rule.in-view { width: 48px; }
.rule.center { margin-left: auto; margin-right: auto; }

/* ─── POSICIONAMENTO (3 pilares) ────────────────────── */
.position { background: var(--vinho-deep); color: var(--off); }
.position .sec-eyebrow { color: var(--gold); }
.position .sec-eyebrow::before { background: var(--gold); }
.position .sec-title { color: var(--off); }
.pos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 56px; background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.12); }
.pos-card {
  background: var(--vinho-deep); padding: 44px 36px;
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), background .4s;
}
.pos-card.in-view { opacity: 1; transform: none; }
.pos-card:hover { background: #320310; }
.pos-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 20px; opacity: .85; }
.pos-card h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--off); margin-bottom: 12px; }
.pos-card p { font-size: .86rem; color: rgba(250,248,245,.6); line-height: 1.75; font-weight: 300; }

/* ─── SOBRE ─────────────────────────────────────────── */
.about { background: var(--off); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,6vw,84px); align-items: center; }
.about-img { position: relative; }
.about-frame {
  aspect-ratio: 4/5; border-radius: 1px; overflow: hidden; background: var(--rose);
  clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out);
}
.about-frame.in-view { clip-path: inset(0 0 0% 0); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-deco {
  position: absolute; bottom: -18px; right: -18px; width: 110px; height: 110px;
  border: 1px solid var(--gold); opacity: 0; transform: translate(18px,18px);
  transition: opacity .8s var(--ease-out) .4s, transform .8s var(--ease-out) .4s; pointer-events: none;
}
.about-img.in-view .about-deco { opacity: .55; transform: none; }
.about-body p { color: var(--stone); font-size: .94rem; margin-bottom: 18px; font-weight: 300; opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.about-body p.in-view { opacity: 1; transform: none; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag {
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--vinho);
  border: 1px solid var(--border2); padding: 7px 15px; border-radius: 1px;
  opacity: 0; transform: scale(.93);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-spring), background .3s, border-color .3s, color .3s;
}
.tag:hover { background: var(--rose); border-color: var(--gold); }
.tag.in-view { opacity: 1; transform: scale(1); }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--border); }
.stat-n { font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--vinho); line-height: 1; margin-bottom: 6px; }
.stat-n .sfx { color: var(--gold); }
.stat-l { font-size: .7rem; color: var(--mist); letter-spacing: .04em; line-height: 1.45; }

/* ─── ABORDAGEM (protocolo numerado) ────────────────── */
.approach { background: var(--gray-lt); }
.approach-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,84px); align-items: start; }
.approach-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 1px; overflow: hidden;
  background: linear-gradient(160deg, var(--vinho) 0%, var(--vinho-deep) 100%);
  display: flex; align-items: flex-end; padding: 40px;
  transform: translateX(-30px); opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}
.approach-visual.in-view { transform: none; opacity: 1; }
.approach-visual::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201,169,110,.25), transparent 60%);
}
.approach-quote { position: relative; font-family: var(--serif); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--off); }
.approach-quote::before { content: '"'; font-size: 3.5rem; color: var(--gold); display: block; line-height: .6; margin-bottom: 8px; }
.protocol { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border2); opacity: 0; transform: translateX(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.protocol:first-of-type { border-top: 1px solid var(--border2); }
.protocol.in-view { opacity: 1; transform: none; }
.protocol-num { font-family: var(--serif); font-size: .9rem; font-weight: 600; font-style: italic; color: var(--gold-deep); min-width: 26px; padding-top: 2px; }
.protocol h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--vinho-deep); margin-bottom: 5px; }
.protocol p { font-size: .85rem; color: var(--stone); font-weight: 300; }

/* ─── TRATAMENTOS ───────────────────────────────────── */
.services { background: var(--off); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1px; margin-top: 56px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: var(--off); padding: 38px 32px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), background .35s;
}
.service-card::after { content:''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.service-card.in-view { opacity: 1; transform: none; }
.service-card:hover { background: var(--rose); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 48px; height: 48px; background: var(--white); border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: border-color .3s, transform .4s var(--ease-spring); }
.service-card:hover .svc-icon { border-color: var(--gold); transform: scale(1.08) rotate(-6deg); }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--vinho); fill: none; stroke-width: 1.5; }
.service-card h4 { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--vinho-deep); margin-bottom: 10px; }
.service-card p { font-size: .82rem; color: var(--stone); line-height: 1.7; font-weight: 300; }
.svc-tag { display: inline-block; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--border2); padding: 4px 10px; border-radius: 1px; margin-top: 16px; }

/* ─── RESULTADOS (antes/depois — assinatura) ────────── */
.results { background: var(--vinho-deep); color: var(--off); }
.results .sec-eyebrow { color: var(--gold); }
.results .sec-eyebrow::before { background: var(--gold); }
.results .sec-title { color: var(--off); }
.results-note { font-size: .8rem; color: rgba(250,248,245,.55); font-style: italic; font-family: var(--serif); border-left: 2px solid var(--gold); padding-left: 16px; margin-bottom: 48px; max-width: 560px; }
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.result-card {
  position: relative; aspect-ratio: 3/4; border-radius: 1px; overflow: hidden;
  background: #320310; opacity: 0; transform: scale(.95);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), box-shadow .4s;
}
.result-card.in-view { opacity: 1; transform: scale(1); }
.result-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.result-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease-soft); }
.result-card:hover img { transform: scale(1.05); }
/* varredura dourada de revelação */
.result-card::before {
  content:''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(201,169,110,.5) 50%, transparent 70%);
  transform: translateX(-120%);
}
.result-card.in-view::before { animation: sweep 1.2s var(--ease-out) forwards; }
@keyframes sweep { to { transform: translateX(120%); } }
.result-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(61,4,19,.78); backdrop-filter: blur(6px); border: 1px solid rgba(201,169,110,.4);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding: 5px 11px;
}
.result-meta { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 28px 16px 14px; background: linear-gradient(transparent, rgba(61,4,19,.85)); font-size: .72rem; color: rgba(250,248,245,.8); letter-spacing: .04em; }

/* ─── DIFERENCIAIS ──────────────────────────────────── */
.diffs { background: var(--off); }
.diffs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 56px; background: var(--border); border: 1px solid var(--border); }
.diff-card { background: var(--off); padding: 36px 32px; opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), background .3s; }
.diff-card.in-view { opacity: 1; transform: none; }
.diff-card:hover { background: var(--rose); }
.diff-num { font-family: var(--serif); font-size: .7rem; font-weight: 600; font-style: italic; color: var(--gold-deep); letter-spacing: .12em; margin-bottom: 16px; }
.diff-card h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--vinho-deep); font-weight: 600; margin-bottom: 10px; }
.diff-card p { font-size: .82rem; color: var(--stone); line-height: 1.7; font-weight: 300; }

/* ─── DEPOIMENTOS ───────────────────────────────────── */
.testimonials { background: var(--gray-lt); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.test-card { padding: 34px; background: var(--off); border: 1px solid var(--border); border-radius: 1px; opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), box-shadow .3s, border-color .3s; }
.test-card.in-view { opacity: 1; transform: none; }
.test-card:hover { box-shadow: 0 16px 50px rgba(61,4,19,.07); border-color: var(--gold); }
.test-quote { font-family: var(--serif); font-size: 3rem; color: var(--gold); opacity: .4; line-height: 1; margin-bottom: 10px; }
.test-text { font-family: var(--serif); font-style: italic; font-size: .96rem; color: var(--stone); line-height: 1.75; margin-bottom: 24px; }
.audio-player { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 40px; padding: 10px 16px; margin-bottom: 20px; transition: border-color .3s, box-shadow .3s; }
.audio-player:hover { border-color: var(--gold); box-shadow: 0 4px 18px rgba(61,4,19,.06); }
.play-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--vinho); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .25s var(--ease-spring); }
.play-btn:hover { background: var(--vinho-deep); transform: scale(1.1); }
.play-btn svg { width: 12px; height: 12px; fill: var(--gold); margin-left: 2px; }
.pause-icon { display: none; margin-left: 0 !important; }
.audio-progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.progress-bar-bg { width: 100%; height: 4px; background: var(--border); border-radius: 2px; cursor: pointer; overflow: hidden; }
.progress-bar-fill { height: 100%; width: 0%; background: var(--gold); border-radius: 2px; transition: width .1s linear; }
.audio-times { display: flex; justify-content: space-between; font-size: .64rem; color: var(--mist); }
.audio-waves { display: flex; align-items: center; gap: 2px; margin-right: 4px; }
.audio-waves span { display: block; width: 2px; background: var(--border2); border-radius: 1px; }
.audio-waves span:nth-child(1){height:8px}.audio-waves span:nth-child(2){height:14px}.audio-waves span:nth-child(3){height:10px}.audio-waves span:nth-child(4){height:16px}.audio-waves span:nth-child(5){height:8px}
.audio-player.playing .audio-waves span { background: var(--gold); animation: wave .8s ease-in-out infinite; }
.audio-player.playing .audio-waves span:nth-child(1){animation-delay:0s}.audio-player.playing .audio-waves span:nth-child(2){animation-delay:.1s}.audio-player.playing .audio-waves span:nth-child(3){animation-delay:.2s}.audio-player.playing .audio-waves span:nth-child(4){animation-delay:.05s}.audio-player.playing .audio-waves span:nth-child(5){animation-delay:.15s}
@keyframes wave { 0%,100%{transform:scaleY(1)}50%{transform:scaleY(1.7)} }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.author-av { width: 40px; height: 40px; background: var(--vinho); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); color: var(--gold); font-size: 1rem; }
.author-nm { font-size: .83rem; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.author-dt { font-size: .7rem; color: var(--mist); }
.stars { color: var(--gold); font-size: .72rem; letter-spacing: 2px; margin-bottom: 3px; }

/* ─── AGENDAMENTO ───────────────────────────────────── */
.form-section { background: var(--vinho); }
.form-inner { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.form-left .sec-eyebrow { color: var(--gold); }
.form-left .sec-eyebrow::before { background: var(--gold); }
.form-left .sec-title { color: var(--off); }
.form-left .sec-title em { color: var(--gold); }
.form-left p { color: rgba(250,248,245,.75); font-size: .92rem; line-height: 1.8; font-weight: 300; }
.form-card { background: var(--off); border-radius: 4px; padding: 38px 34px; box-shadow: 0 30px 80px rgba(61,4,19,.3); transform: translateY(36px); opacity: 0; transition: transform .9s var(--ease-out), opacity .9s var(--ease-out); }
.form-card.in-view { transform: none; opacity: 1; }
.form-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--vinho-deep); margin-bottom: 6px; }
.form-card .fc-sub { font-size: .78rem; color: var(--mist); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); margin-bottom: 7px; }
.form-group input, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border2); border-radius: 2px; font-family: var(--sans); font-size: .9rem; color: var(--ink); background: var(--white); outline: none; transition: border-color .25s, box-shadow .25s; -webkit-appearance: none; appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A061D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.2); }
.form-submit { width: 100%; padding: 16px; background: var(--wa); color: #fff; border: none; border-radius: 2px; font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: background .25s, transform .3s var(--ease-spring), box-shadow .3s; margin-top: 8px; }
.form-submit:hover { background: var(--wa2); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.36); }
.form-submit svg { width: 18px; height: 18px; fill: #fff; }
.form-privacy { font-size: .68rem; color: var(--mist); text-align: center; margin-top: 12px; }

/* ─── FAQ ───────────────────────────────────────────── */
.faq { background: var(--off); }
.faq-list { max-width: 780px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; background: none; border: none; text-align: left; font-family: var(--serif); font-size: 1.02rem; font-weight: 600; color: var(--vinho-deep); cursor: pointer; transition: color .25s; }
.faq-btn:hover { color: var(--vinho); }
.faq-arrow { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .3s, background .3s, transform .45s var(--ease-out); }
.faq-btn:hover .faq-arrow, .faq-item.open .faq-arrow { border-color: var(--gold); background: var(--vinho); }
.faq-arrow svg { width: 12px; height: 12px; stroke: var(--stone); fill: none; stroke-width: 2.5; transition: stroke .2s; }
.faq-btn:hover .faq-arrow svg, .faq-item.open .faq-arrow svg { stroke: var(--gold); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.faq-body-inner { padding: 0 0 24px; font-size: .9rem; color: var(--stone); line-height: 1.85; max-width: 660px; font-weight: 300; }

/* ─── CTA FINAL ─────────────────────────────────────── */
.cta-final { background: var(--rose); text-align: center; }
.cta-final .container { max-width: 700px; }
.cta-eyebrow { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 22px; }
.cta-eyebrow::before, .cta-eyebrow::after { content:''; display:block; width:34px; height:1px; background:var(--gold); }
.cta-final p { color: var(--stone); max-width: 520px; margin: 0 auto 42px; font-size: .95rem; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: var(--wa); color: #fff; font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; padding: 16px 34px; border-radius: 2px; transition: background .3s, transform .3s var(--ease-spring), box-shadow .3s; }
.btn-wa:hover { background: var(--wa2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.34); }
.btn-wa svg { width: 17px; height: 17px; fill: #fff; }

/* ─── FOOTER ────────────────────────────────────────── */
footer { background: var(--vinho-deep); color: rgba(250,248,245,.55); padding: 64px 32px 28px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(201,169,110,.15); margin-bottom: 26px; }
.f-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--off); margin-bottom: 4px; }
.f-sub { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.f-tagline { font-size: .82rem; line-height: 1.75; max-width: 280px; font-weight: 300; }
.f-col h5 { font-size: .64rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a { font-size: .83rem; color: rgba(250,248,245,.5); text-decoration: none; transition: color .25s; }
.f-col ul li a:hover { color: var(--gold); }
.f-contact { display: flex; align-items: center; gap: 10px; font-size: .82rem; margin-bottom: 13px; }
.f-contact svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.f-contact a { color: inherit; text-decoration: none; transition: color .25s; }
.f-contact a:hover { color: var(--off); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.soc-link { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .3s, background .3s, transform .3s var(--ease-spring); }
.soc-link:hover { border-color: var(--gold); background: rgba(201,169,110,.12); transform: translateY(-3px); }
.soc-link svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: .7rem; color: rgba(250,248,245,.3); flex-wrap: wrap; gap: 8px; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 62vw; min-height: 340px; order: -1; }
  .about-grid, .approach-grid, .form-inner { grid-template-columns: 1fr; }
  .about-img { max-width: 400px; margin: 0 auto; }
  .pos-grid, .diffs-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  section { padding: 60px 22px; }
  .hero-left { padding: 36px 22px 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 12px; }
  .stat-n { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE EXPERIENCE — FAB · BOTTOM NAV · TOUCH
═══════════════════════════════════════════════════════ */

/* Safe-area para celulares com notch */
body { padding-bottom: env(safe-area-inset-bottom); }

/* ─── FAB WHATSAPP (flutuante) ──────────────────────── */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  text-decoration: none; transform: scale(0); opacity: 0;
  transition: transform .4s var(--ease-spring), opacity .4s, box-shadow .3s;
}
.fab-wa.show { transform: scale(1); opacity: 1; }
.fab-wa:hover { box-shadow: 0 14px 38px rgba(37,211,102,.6); }
.fab-wa svg { width: 28px; height: 28px; fill: #fff; }
.fab-wa::after {
  content:''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.6);opacity:0} }

/* ─── BOTTOM NAV (estilo app — só mobile) ───────────── */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 250;
  display: none; align-items: stretch;
  background: rgba(250,248,245,.94); backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 24px rgba(61,4,19,.06);
}
.bn-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 9px 4px 8px; text-decoration: none;
  color: var(--mist); font-size: .58rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; transition: color .25s; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.bn-item svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; transition: transform .3s var(--ease-spring); }
.bn-item.active { color: var(--vinho); }
.bn-item.active svg { transform: translateY(-2px); }
.bn-item.active::before { content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 22px; height: 2px; background: var(--gold); border-radius: 0 0 2px 2px; }
.bn-cta { color: var(--wa); }
.bn-cta svg { fill: var(--wa); stroke: none; width: 23px; height: 23px; }

/* ─── RESULTADOS: carrossel swipe no mobile ─────────── */
@media (max-width: 920px) {
  .results-grid {
    grid-template-columns: none; display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 12px;
    margin-right: -22px; padding-right: 22px;
    scrollbar-width: none;
  }
  .results-grid::-webkit-scrollbar { display: none; }
  .result-card { flex: 0 0 72%; scroll-snap-align: start; }
  .swipe-hint { display: flex; }
}
.swipe-hint {
  display: none; align-items: center; gap: 8px; justify-content: center;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(250,248,245,.5); margin-top: 18px;
}
.swipe-hint svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.6; animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }

/* ─── ATIVAÇÃO MOBILE GERAL ─────────────────────────── */
@media (max-width: 920px) {
  .bottom-nav { display: flex; }
  /* espaço pro bottom-nav não cobrir o conteúdo */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  /* alvos de toque maiores */
  .btn-primary, .btn-outline, .btn-wa { padding-top: 17px; padding-bottom: 17px; }
  .nav-cta { display: none; } /* CTA vai pro bottom-nav */
  /* hero mais respirável */
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}
@media (min-width: 921px) {
  .fab-wa { display: none; } /* desktop não precisa do FAB */
}

/* ─── REFINO TOUCH / PERFORMANCE ────────────────────── */
@media (hover: none) {
  .service-card:hover, .diff-card:hover, .pos-card:hover { background: var(--off); }
  .result-card:active img { transform: scale(1.04); }
  * { -webkit-tap-highlight-color: rgba(201,169,110,.2); }
}
img { content-visibility: auto; }

/* ─── BREADCRUMB (páginas internas — SEO) ───────────── */
.breadcrumb { max-width: var(--max); margin: 0 auto; padding: 96px 32px 0; font-size: .74rem; color: var(--mist); }
.breadcrumb a { color: var(--gold-deep); text-decoration: none; }
.breadcrumb a:hover { color: var(--vinho); }
.breadcrumb span { margin: 0 7px; opacity: .5; }

/* ─── PÁGINA INTERNA: hero compacto ─────────────────── */
.page-hero { background: var(--vinho-deep); color: var(--off); padding: 64px 32px 72px; position: relative; overflow: hidden; }
.page-hero::after { content:''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(circle at 80% 30%, rgba(201,169,110,.18), transparent 65%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .sec-eyebrow { color: var(--gold); opacity: 1; transform: none; }
.page-hero .sec-eyebrow::before { width: 26px; background: var(--gold); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; line-height: 1.16; color: var(--off); margin-bottom: 18px; max-width: 720px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: rgba(250,248,245,.72); font-size: 1.02rem; line-height: 1.8; max-width: 600px; font-weight: 300; }

/* ─── CONTEÚDO LONGO (tratamento/blog) ──────────────── */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--vinho-deep); margin: 44px 0 16px; }
.prose h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--vinho); margin: 32px 0 12px; }
.prose p { color: var(--stone); font-size: 1rem; line-height: 1.85; margin-bottom: 18px; font-weight: 300; }
.prose ul { list-style: none; margin: 0 0 22px; padding: 0; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--stone); font-weight: 300; line-height: 1.7; }
.prose ul li::before { content:''; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.prose strong { color: var(--vinho); font-weight: 600; }
.prose .lead { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--vinho); line-height: 1.6; margin-bottom: 32px; padding-left: 20px; border-left: 2px solid var(--gold); }

/* cards de tratamento (hub e relacionados) */
.treat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 12px; }
.treat-link {
  display: block; text-decoration: none; background: var(--off); border: 1px solid var(--border);
  border-radius: 2px; padding: 30px 26px; transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
  opacity: 0; transform: translateY(22px);
}
.treat-link.in-view { opacity: 1; transform: none; }
.treat-link:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(61,4,19,.08); }
.treat-link .ti-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.treat-link .ti-icon svg { width: 20px; height: 20px; stroke: var(--vinho); fill: none; stroke-width: 1.5; }
.treat-link h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--vinho-deep); margin-bottom: 8px; }
.treat-link p { font-size: .82rem; color: var(--stone); line-height: 1.65; font-weight: 300; margin-bottom: 14px; }
.treat-link .ti-more { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 6px; }
.treat-link .ti-more svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 920px){ .treat-grid { grid-template-columns: 1fr; } }

/* blog cards */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 12px; }
.post-card { background: var(--off); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; text-decoration: none; transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s; opacity: 0; transform: translateY(22px); }
.post-card.in-view { opacity: 1; transform: none; }
.post-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(61,4,19,.08); }
.post-thumb { aspect-ratio: 16/10; background: linear-gradient(150deg, var(--vinho) 0%, var(--vinho-deep) 100%); position: relative; display: flex; align-items: flex-end; padding: 18px; }
.post-thumb .cat { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,.4); padding: 4px 10px; }
.post-body { padding: 24px 24px 28px; }
.post-body h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--vinho-deep); line-height: 1.35; margin-bottom: 10px; }
.post-body p { font-size: .84rem; color: var(--stone); line-height: 1.65; font-weight: 300; }
.post-meta { font-size: .68rem; color: var(--mist); margin-top: 14px; letter-spacing: .04em; }
@media (max-width: 920px){ .post-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   LOCALIZAÇÃO — mapa/satélite cinematográfico (pronto p/ drone)
═══════════════════════════════════════════════════════ */
.local { background: var(--vinho-deep); color: var(--off); }
.local .sec-eyebrow { color: var(--gold); }
.local .sec-eyebrow::before { background: var(--gold); }
.local-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px,5vw,64px); align-items: center; }
.local-info h2 { font-family: var(--serif); font-size: clamp(1.9rem,3vw,2.6rem); font-weight: 500; line-height: 1.2; color: var(--off); margin-bottom: 20px; }
.local-info h2 em { font-style: italic; color: var(--gold); }
.local-rows { margin: 28px 0 32px; }
.local-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(201,169,110,.15); }
.local-row:first-child { border-top: 1px solid rgba(201,169,110,.15); }
.local-row svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
.local-row strong { display: block; font-family: var(--serif); font-size: .96rem; color: var(--off); font-weight: 500; margin-bottom: 2px; }
.local-row span { font-size: .82rem; color: rgba(250,248,245,.6); font-weight: 300; }
.local-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.local-actions .btn-primary { background: var(--gold); border-color: var(--gold); }
.local-actions .btn-primary span, .local-actions .btn-primary svg { color: var(--vinho-deep); stroke: var(--vinho-deep); }
.local-actions .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(201,169,110,.3); }
.local-actions .btn-primary::before { background: var(--off); }

/* moldura do mapa */
.map-frame {
  position: relative; border: 1px solid rgba(201,169,110,.35); border-radius: 3px;
  overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.map-frame.in-view { opacity: 1; transform: none; }
.map-frame::after { content:''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(201,169,110,.12); border-radius: 3px; }
.map-tabs { position: absolute; top: 14px; left: 14px; z-index: 5; display: flex; gap: 0; background: rgba(61,4,19,.82); backdrop-filter: blur(8px); border: 1px solid rgba(201,169,110,.3); border-radius: 2px; overflow: hidden; }
.map-tab { background: none; border: none; cursor: pointer; padding: 8px 16px; font-family: var(--sans); font-size: .64rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,248,245,.6); transition: color .25s, background .25s; }
.map-tab.active { color: var(--vinho-deep); background: var(--gold); }
.map-frame iframe, .map-frame video { display: block; width: 100%; height: 440px; border: 0; background: #1a0309; }
.map-badge { position: absolute; bottom: 14px; right: 14px; z-index: 5; background: rgba(61,4,19,.82); backdrop-filter: blur(8px); border: 1px solid rgba(201,169,110,.3); border-left: 3px solid var(--gold); padding: 9px 14px; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

@media (max-width: 920px) {
  .local-grid { grid-template-columns: 1fr; }
  .map-frame iframe, .map-frame video { height: 320px; }
}

/* ─── AGENDAR (hub de agendamento) ──────────────────── */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.book-card {
  background: var(--off); border: 1px solid var(--border); border-radius: 4px;
  padding: 40px 34px; display: flex; flex-direction: column; align-items: flex-start;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
  opacity: 0; transform: translateY(24px); position: relative; overflow: hidden;
}
.book-card.in-view { opacity: 1; transform: none; }
.book-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(61,4,19,.1); }
.book-card.book-primary h2 { color: var(--off); }
.book-card.book-primary p { color: rgba(250,248,245,.66); }
.book-primary { background: var(--vinho-deep); border-color: var(--vinho-deep); }
.book-primary:hover { border-color: var(--gold); }
.book-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.book-icon svg { width: 26px; height: 26px; stroke: var(--vinho); fill: none; stroke-width: 1.5; }
.book-primary .book-icon { background: rgba(201,169,110,.18); }
.book-primary .book-icon svg { stroke: var(--gold); }
.book-wa-icon { background: rgba(37,211,102,.12); }
.book-wa-icon svg { fill: var(--wa); stroke: none; }
.book-tag { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,.4); padding: 4px 11px; border-radius: 1px; margin-bottom: 14px; }
.book-tag-wa { color: var(--wa2); border-color: rgba(37,211,102,.35); }
.book-card h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--vinho-deep); margin-bottom: 10px; }
.book-card p { font-size: .88rem; color: var(--stone); line-height: 1.7; font-weight: 300; margin-bottom: 26px; flex: 1; }
.book-btn { margin-top: auto; }
.book-primary .book-btn { background: var(--gold); border-color: var(--gold); }
.book-primary .book-btn span, .book-primary .book-btn svg { color: var(--vinho-deep); stroke: var(--vinho-deep); }
.book-primary .book-btn::before { background: var(--off); }
@media (max-width: 720px){ .book-grid { grid-template-columns: 1fr; } }

/* ─── LOGO COM SÍMBOLO ──────────────────────────────── */
.nav-logo { flex-direction: row; align-items: center; gap: 11px; }
.nav-logo-mark { width: 34px; height: auto; display: block; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.f-brand-row { display: flex; align-items: center; gap: 13px; margin-bottom: 4px; }
.f-brand-row .f-mark { width: 42px; height: auto; display: block; }
.f-brand-row .f-name { margin-bottom: 0; }
@media (max-width: 560px){ .nav-logo-mark { width: 30px; } }

/* ─── ABORDAGEM com foto real ───────────────────────── */
.approach-visual-photo { background-size: cover; background-position: center 25%; }
.approach-visual-photo::before {
  background: linear-gradient(to top, rgba(61,4,19,.88) 0%, rgba(61,4,19,.35) 45%, rgba(61,4,19,.15) 100%);
}
.approach-visual-photo .approach-quote { text-shadow: 0 2px 18px rgba(61,4,19,.5); }

/* ─── ANTES/DEPOIS 9:16 (sem corte, uniforme) ───────── */
.result-ba { aspect-ratio: 9/16; background: #2a0510; }
.result-ba img { object-fit: cover; }
