/* ============================================================
   Hellen Taciani Arquitetura — site.css
   Tipografia Poppins, tons alternados (escuro / claro),
   cantos arredondados, sombras suaves e gradientes areia.
   ============================================================ */

/* ---------- Tokens (tom escuro = padrão) ---------- */
:root {
  --bg: #0b0b0c;
  --bg-2: #141417;
  --bg-3: #1c1c20;
  --line: rgba(243, 239, 233, .10);
  --line-strong: rgba(243, 239, 233, .20);
  --text: #f4f1ec;
  --text-2: #b9b4ac;
  --muted: #8e8880;
  --sand: #c9b79c;
  --sand-ink: #d6c5a8;
  --sand-2: #e2d5bd;
  --sand-dim: rgba(201, 183, 156, .14);
  --grad-a: #e6d8bd;
  --grad-b: #c0a271;
  --btn-bg: #c9b79c;
  --btn-ink: #14120f;
  --shadow: 0 18px 40px -24px rgba(0, 0, 0, .8);
  --shadow-lg: 0 28px 60px -30px rgba(0, 0, 0, .9);
  --wa: #25d366;
  --danger: #f87171;

  --sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --h1: clamp(2.35rem, 5.6vw, 4.4rem);
  --h2: clamp(1.85rem, 3.6vw, 2.9rem);
  --h3: clamp(1.12rem, 1.7vw, 1.32rem);
  --lead: clamp(.98rem, 1.25vw, 1.1rem);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 9vw, 118px);
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Tom claro ---------- */
.tone-light {
  --bg: #f7f5f2;
  --bg-2: #ffffff;
  --bg-3: #efeae2;
  --line: rgba(20, 18, 15, .10);
  --line-strong: rgba(20, 18, 15, .18);
  --text: #14120f;
  --text-2: #55504a;
  --muted: #837c73;
  --sand: #c2a87f;
  --sand-ink: #8a6f43;
  --sand-2: #a98c58;
  --sand-dim: rgba(138, 111, 67, .10);
  --grad-a: #a8894f;
  --grad-b: #6f5730;
  --btn-bg: #14120f;
  --btn-ink: #f7f5f2;
  --shadow: 0 16px 36px -22px rgba(20, 18, 15, .30);
  --shadow-lg: 0 26px 56px -26px rgba(20, 18, 15, .35);
  background: var(--bg);
  color: var(--text);
}
.tone-white { --bg: #ffffff; --bg-2: #f7f5f2; --bg-3: #efeae2; }
.tone-dark {
  --bg: #0b0b0c; --bg-2: #141417; --bg-3: #1c1c20;
  --line: rgba(243,239,233,.10); --line-strong: rgba(243,239,233,.20);
  --text: #f4f1ec; --text-2: #b9b4ac; --muted: #8e8880;
  --sand: #c9b79c; --sand-ink: #d6c5a8; --sand-2: #e2d5bd;
  --sand-dim: rgba(201,183,156,.14);
  --grad-a: #e6d8bd; --grad-b: #c0a271;
  --btn-bg: #c9b79c; --btn-ink: #14120f;
  --shadow: 0 18px 40px -24px rgba(0,0,0,.8); --shadow-lg: 0 28px 60px -30px rgba(0,0,0,.9);
  background: var(--bg); color: var(--text);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 16px; line-height: 1.62;
  font-weight: 400; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.has-bottom-bar { padding-bottom: 74px; }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--sand); color: #14120f; }
:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

/* ---------- Tipografia ---------- */
.h1 { font-size: var(--h1); font-weight: 800; letter-spacing: -.03em; line-height: 1.04; }
.h2 { font-size: var(--h2); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.h3 { font-size: var(--h3); font-weight: 700; letter-spacing: -.01em; }
.grad {
  background: linear-gradient(120deg, var(--grad-a) 0%, var(--grad-b) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: var(--lead); color: var(--text-2); line-height: 1.62; font-weight: 400; max-width: 54ch; }
.muted { color: var(--muted); }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand-ink); background: var(--sand-dim);
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 8px 15px; margin-bottom: 20px;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sand); }
.badge.plain { background: none; border-color: transparent; padding: 0; margin-bottom: 14px; }
.section-head { max-width: 700px; margin-bottom: clamp(34px, 4.5vw, 60px); }
.section-head .lead { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding: var(--section) 0; position: relative; }
.section.tight { padding: clamp(48px, 6.5vw, 82px) 0; }
.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.5vw, 76px); align-items: center; }
.split.wide-left { grid-template-columns: 1.12fr .88fr; }
.split.wide-right { grid-template-columns: .88fr 1.12fr; }
@media (max-width: 900px) {
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; }
  .order-first-mobile { order: -1; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 600; letter-spacing: .01em;
  line-height: 1.25; text-align: center; white-space: normal;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
}
.btn svg { flex-shrink: 0; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--btn-bg); color: var(--btn-ink); border-color: var(--btn-bg); box-shadow: 0 12px 28px -14px rgba(201,183,156,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(201,183,156,.75); }
.tone-light .btn-primary { box-shadow: 0 12px 28px -14px rgba(20,18,15,.5); }
.tone-light .btn-primary:hover { box-shadow: 0 18px 34px -14px rgba(20,18,15,.6); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #06210f; border-color: var(--wa); box-shadow: 0 12px 28px -14px rgba(37,211,102,.7); }
.btn-wa:hover { background: #2fe071; transform: translateY(-2px); }
.btn-lg { padding: 19px 32px; font-size: .92rem; }
.btn-sm { padding: 11px 19px; font-size: .78rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--sand-ink); transition: gap .3s var(--ease); }
.link-arrow:hover { gap: 13px; }

/* ---------- Barra de progresso de leitura ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70; background: linear-gradient(90deg, #c9b79c, #8a6f43); transition: width .1s linear; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 11, 12, .72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background .3s, box-shadow .3s;
  color: #f4f1ec;
}
.nav.scrolled { background: rgba(11, 11, 12, .95); box-shadow: 0 8px 30px -14px rgba(0,0,0,.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, #e6d8bd, #b3945f); color: #14120f; display: grid; place-items: center; font-weight: 800; font-size: .82rem; letter-spacing: -.02em; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.brand-sub { font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: #c9b79c; margin-top: 4px; font-weight: 600; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: .86rem; font-weight: 500; color: rgba(244,241,236,.72); position: relative; padding: 6px 0; transition: color .25s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #e6d8bd, #b3945f); transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav .btn-primary { background: linear-gradient(135deg, #e6d8bd, #c0a271); color: #14120f; border-color: transparent; }
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(244,241,236,.22); border-radius: 12px; }
.nav-toggle span { display: block; width: 17px; height: 2px; border-radius: 2px; background: #f4f1ec; position: relative; transition: background .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 17px; height: 2px; border-radius: 2px; background: #f4f1ec; transition: transform .35s var(--ease), top .35s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 1000px) {
  .nav-links { position: fixed; inset: 72px 0 0 0; background: #0b0b0c; flex-direction: column; gap: 0; padding: 16px var(--gutter) 40px; transform: translateX(100%); transition: transform .42s var(--ease); overflow-y: auto; }
  .nav-open .nav-links { transform: none; }
  .nav-links a { font-size: 1.28rem; font-weight: 600; padding: 18px 0; border-bottom: 1px solid rgba(244,241,236,.09); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100svh - 72px); display: flex; align-items: center; overflow: hidden; isolation: isolate; background: #0b0b0c; color: #f4f1ec; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,11,12,.96) 0%, rgba(11,11,12,.86) 44%, rgba(11,11,12,.36) 78%, rgba(11,11,12,.6) 100%); }
.hero-bg::before { content: ''; position: absolute; inset: auto 0 0 0; height: 36%; background: linear-gradient(180deg, transparent, #0b0b0c); z-index: 1; }
.hero-glow { position: absolute; z-index: -1; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; right: -12vw; top: -14vw; border-radius: 50%; background: radial-gradient(circle, rgba(201,183,156,.16), transparent 66%); pointer-events: none; }
.hero-inner { padding: clamp(52px, 8vw, 100px) 0 clamp(44px, 6vw, 80px); max-width: 780px; }
.hero .h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; color: rgba(244,241,236,.8); max-width: 50ch; }
.hero .badge { color: #d6c5a8; background: rgba(201,183,156,.14); border-color: rgba(201,183,156,.3); }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 54px); margin-top: clamp(34px, 5vw, 60px); padding-top: 26px; border-top: 1px solid rgba(244,241,236,.14); }
.stat-num { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.stat-num sup { font-size: .48em; color: #c9b79c; vertical-align: top; margin-right: 1px; }
.stat-label { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,241,236,.52); margin-top: 7px; font-weight: 600; }
.hero.compact { min-height: 62svh; }
.hero-scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(244,241,236,.45); font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll::after { content: ''; width: 1px; height: 32px; background: linear-gradient(#c9b79c, transparent); animation: hint 2.2s ease-in-out infinite; }
@keyframes hint { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 700px) {
  .hero-scroll { display: none; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(11,11,12,.78) 0%, rgba(11,11,12,.9) 58%, #0b0b0c 100%); }
  .hero-stats { gap: 18px 24px; }
  .hero-stats > div { flex: 1 1 40%; }
}

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; background: var(--bg-2); border-block: 1px solid var(--line); padding: 15px 0; }
.ticker-track { display: flex; width: max-content; animation: tick 36s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--text-2); white-space: nowrap; }
.ticker-track span::after { content: '✦'; color: var(--sand-ink); letter-spacing: 0; }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Faixa de confiança ---------- */
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { display: flex; align-items: flex-start; gap: 13px; padding: 20px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); font-size: .8rem; color: var(--text-2); }
.trust-item .ico { width: 38px; height: 38px; border-radius: 11px; background: var(--sand-dim); color: var(--sand-ink); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .ico svg { width: 19px; height: 19px; }
.trust-item strong { display: block; color: var(--text); font-weight: 600; font-size: .88rem; margin-bottom: 2px; }
@media (max-width: 900px) { .trust-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-inner { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 30px); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; box-shadow: var(--shadow); position: relative; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card .h3 { margin: 14px 0 8px; }
.card p { color: var(--text-2); font-size: .91rem; }
.card-index { font-size: 1.7rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; background: linear-gradient(120deg, var(--grad-a), var(--grad-b)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.icon-box { width: 46px; height: 46px; border-radius: 14px; background: var(--sand-dim); color: var(--sand-ink); display: grid; place-items: center; }
.icon-box svg { width: 21px; height: 21px; }

/* ---------- Dores ---------- */
.pain { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.pain:last-child { border-bottom: 1px solid var(--line); }
.pain-num { font-size: 1.15rem; font-weight: 800; color: var(--sand-ink); line-height: 1.2; min-width: 34px; letter-spacing: -.02em; }
.pain h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -.01em; }
.pain p { color: var(--text-2); font-size: .9rem; }

/* ---------- Comparação ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-col { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow); }
.compare-col img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.compare-col .body { padding: 24px; }
.compare-col h4 { font-size: 1.15rem; margin-bottom: 14px; font-weight: 700; }
.compare-col ul { display: grid; gap: 9px; }
.compare-col li { display: flex; gap: 10px; font-size: .88rem; color: var(--text-2); align-items: flex-start; }
.compare-col li::before { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; font-weight: 700; }
.compare-col.bad li::before { content: '✕'; background: rgba(224,82,82,.14); color: #e05252; }
.compare-col.good li::before { content: '✓'; background: var(--sand-dim); color: var(--sand-ink); }
.compare-col.bad img { filter: grayscale(1) contrast(.92); opacity: .7; }
.compare-tag { display: inline-block; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 12px; }
.compare-col.bad .compare-tag { background: rgba(224,82,82,.12); color: #e05252; }
.compare-col.good .compare-tag { background: var(--sand-dim); color: var(--sand-ink); }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-2); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.step .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 10px; background: var(--sand-dim); color: var(--sand-ink); font-size: .78rem; font-weight: 800; margin-bottom: 12px; }
.step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 7px; letter-spacing: -.01em; }
.step p { font-size: .85rem; color: var(--text-2); }
.step .tag { display: inline-block; margin-top: auto; padding-top: 14px; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } .step img { aspect-ratio: 16/9; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Entregáveis ---------- */
.deliv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.deliv-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 30px); box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.deliv-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.deliv-item h4 { font-size: 1.02rem; font-weight: 700; margin: 15px 0 7px; letter-spacing: -.01em; }
.deliv-item p { color: var(--text-2); font-size: .88rem; }
@media (max-width: 900px) { .deliv { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .deliv { grid-template-columns: 1fr; } }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 12px; }
.gallery .tile { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--bg-2); cursor: zoom-in; box-shadow: var(--shadow); }
.gallery .tile.wide { grid-column: span 2; }
.gallery .tile.tall { grid-row: span 2; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .tile .cap { position: absolute; inset: auto 0 0 0; padding: 40px 16px 15px; background: linear-gradient(transparent, rgba(11,11,12,.9)); font-size: .78rem; font-weight: 600; color: #f4f1ec; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .45s var(--ease); }
.gallery .tile:hover .cap { opacity: 1; transform: none; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; } .gallery .tile.tall { grid-row: span 1; } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; } .gallery .tile.wide { grid-column: span 1; } }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter { padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: var(--r-pill); font-size: .8rem; font-weight: 600; color: var(--text-2); transition: all .25s; }
.filter:hover { color: var(--text); border-color: var(--text); }
.filter.active { background: var(--btn-bg); color: var(--btn-ink); border-color: var(--btn-bg); }
.tile[hidden] { display: none; }

/* ---------- Fotos da Hellen ---------- */
.photo-stack { position: relative; padding-bottom: 44px; padding-right: 38px; }
.photo-stack .main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-stack .main img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.photo-stack .sub { position: absolute; right: 0; bottom: 0; width: 44%; border-radius: var(--r-lg); overflow: hidden; border: 6px solid var(--bg); box-shadow: var(--shadow-lg); }
/* Fotos da Hellen: enquadra pelo topo para a cabeça nunca ser cortada */
.photo-stack .sub img { aspect-ratio: 1; object-fit: cover; object-position: center top; width: 100%; }
.photo-stack .badge-float { position: absolute; left: -12px; top: 30px; background: linear-gradient(135deg, #e6d8bd, #c0a271); color: #14120f; padding: 13px 17px; border-radius: var(--r); z-index: 2; box-shadow: 0 14px 30px -14px rgba(201,183,156,.8); }
.photo-stack .badge-float b { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.photo-stack .badge-float span { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 520px) { .photo-stack { padding-right: 20px; padding-bottom: 32px; } .photo-stack .badge-float { left: 0; } }
.portrait { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.portrait img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.signature { font-size: 1.15rem; font-weight: 700; color: var(--sand-ink); margin-top: 20px; letter-spacing: -.01em; }
.about-list { margin-top: 20px; display: grid; gap: 11px; }
.about-list li { display: flex; gap: 11px; color: var(--text-2); font-size: .92rem; align-items: flex-start; }
.about-list li::before { content: '✓'; flex-shrink: 0; width: 19px; height: 19px; margin-top: 2px; border-radius: 50%; background: var(--sand-dim); color: var(--sand-ink); display: grid; place-items: center; font-size: .68rem; font-weight: 700; }

/* ---------- Citação ---------- */
.quote { display: grid; grid-template-columns: 190px 1fr; gap: clamp(24px, 4vw, 54px); align-items: center; }
.quote .portrait { border-radius: 50%; }
.quote .portrait img { aspect-ratio: 1; object-position: center top; }
.quote q { font-size: clamp(1.25rem, 2.2vw, 1.8rem); line-height: 1.4; display: block; font-weight: 600; letter-spacing: -.02em; quotes: '“' '”'; }
.quote .who { margin-top: 16px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
@media (max-width: 700px) { .quote { grid-template-columns: 1fr; text-align: center; } .quote .portrait { width: 132px; margin-inline: auto; } }

/* ---------- Depoimentos ---------- */
.testi { display: flex; flex-direction: column; gap: 16px; }
.testi q { font-size: 1rem; line-height: 1.6; quotes: '“' '”'; color: var(--text); font-weight: 400; }
.testi .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); color: #14120f; display: grid; place-items: center; font-weight: 800; font-size: .92rem; }
.testi .who b { display: block; font-size: .88rem; font-weight: 600; }
.testi .who span { font-size: .74rem; color: var(--muted); }
.stars { color: #e0b64c; letter-spacing: 2px; font-size: .84rem; }

/* ---------- Preço ---------- */
.price-box { display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.price-main { padding: clamp(26px, 3.4vw, 46px); background: var(--bg-2); }
.price-side { padding: clamp(26px, 3.4vw, 46px); background: var(--bg-3); }
.price-tiers { display: grid; gap: 0; margin: 20px 0 24px; }
.price-tier { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); flex-wrap: wrap; }
.price-tier:first-child { border-top: 0; padding-top: 0; }
.price-tier .what { font-size: .95rem; font-weight: 600; }
.price-tier .what small { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; margin-top: 3px; }
.price-tier .val { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1; white-space: nowrap; letter-spacing: -.03em; }
.price-tier .val small { font-size: .54rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand-ink); font-weight: 700; display: block; margin-bottom: 5px; letter-spacing: .16em; }
.check-list { display: grid; gap: 10px; margin-top: 16px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--text-2); }
.check-list li::before { content: '✓'; flex-shrink: 0; width: 19px; height: 19px; margin-top: 2px; border-radius: 50%; background: var(--sand-dim); color: var(--sand-ink); display: grid; place-items: center; font-size: .68rem; font-weight: 700; }
.note { border-radius: var(--r); padding: 16px 18px; background: var(--sand-dim); color: var(--text-2); font-size: .88rem; margin-top: 20px; }
.note b { color: var(--text); font-weight: 700; }
@media (max-width: 860px) { .price-box { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 19px 22px; text-align: left; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; transition: color .25s; color: var(--text); }
.faq-q:hover { color: var(--sand-ink); }
.faq-q .plus { width: 28px; height: 28px; flex-shrink: 0; border-radius: 9px; background: var(--sand-dim); color: var(--sand-ink); position: relative; transition: transform .35s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; top: 50%; left: 50%; background: currentColor; border-radius: 2px; transform: translate(-50%, -50%); }
.faq-q .plus::before { width: 11px; height: 2px; } .faq-q .plus::after { width: 2px; height: 11px; transition: opacity .3s; }
.faq-item.open .faq-q .plus { transform: rotate(90deg); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 22px 22px; color: var(--text-2); max-width: 68ch; font-size: .92rem; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(56% 76% at 84% 46%, var(--sand-dim), transparent 70%); pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.5vw, 74px); align-items: center; position: relative; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

/* ---------- Rodapé ---------- */
.footer { padding: 58px 0 28px; background: #0b0b0c; color: #f4f1ec; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 42px; }
.footer h5 { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: #c9b79c; margin: 0 0 15px; font-weight: 700; }
.footer li { margin-bottom: 9px; }
.footer a { color: rgba(244,241,236,.7); font-size: .9rem; transition: color .25s; }
.footer a:hover { color: #fff; }
.footer p { color: rgba(244,241,236,.5); font-size: .88rem; max-width: 34ch; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; border-top: 1px solid rgba(244,241,236,.1); font-size: .76rem; color: rgba(244,241,236,.45); }
.footer-bottom a { font-size: inherit; color: #c9b79c; font-weight: 600; }
.footer-bottom a:hover { color: #e6d8bd; text-decoration: underline; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp flutuante + barra ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #06210f; display: grid; place-items: center; box-shadow: 0 12px 32px -8px rgba(37,211,102,.5); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 29px; height: 29px; }
.bottom-bar { display: none; position: fixed; inset: auto 0 0 0; z-index: 56; padding: 10px var(--gutter); background: rgba(11,11,12,.96); backdrop-filter: blur(12px); border-top: 1px solid rgba(244,241,236,.12); }
.bottom-bar .btn { width: 100%; padding: 16px; background: linear-gradient(135deg, #e6d8bd, #c0a271); color: #14120f; border-color: transparent; }
@media (max-width: 700px) { .bottom-bar { display: block; } .wa-float { bottom: 84px; right: 16px; width: 50px; height: 50px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; } .reveal[data-delay="2"] { transition-delay: .16s; } .reveal[data-delay="3"] { transition-delay: .24s; } .reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; transform: none; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Antes / Depois ---------- */
.ba { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-lg); user-select: none; touch-action: pan-y; background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow); }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.ba .handle::after { content: '⇆'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #e6d8bd, #c0a271); color: #14120f; display: grid; place-items: center; font-size: 1.05rem; box-shadow: 0 8px 22px rgba(0,0,0,.4); }
.ba .lbl { position: absolute; top: 12px; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; padding: 6px 11px; background: rgba(11,11,12,.75); color: #f4f1ec; border-radius: var(--r-pill); pointer-events: none; }
.ba .lbl.b { left: 12px; } .ba .lbl.a { right: 12px; color: #e6d8bd; }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(11,11,12,.96); display: none; align-items: center; justify-content: center; padding: 24px; color: #f4f1ec; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1400px, 100%); max-height: 88vh; object-fit: contain; border-radius: var(--r); animation: lbIn .35s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } }
.lightbox .cap { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: .8rem; color: rgba(244,241,236,.7); text-align: center; padding: 0 20px; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: 1px solid rgba(244,241,236,.2); border-radius: 50%; display: grid; place-items: center; background: rgba(11,11,12,.5); font-size: 1.2rem; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; font-size: 1.2rem; border: 1px solid rgba(244,241,236,.2); border-radius: 50%; }

/* ---------- Modal + formulário ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(11,11,12,.88); backdrop-filter: blur(8px); }
.modal.open { display: flex; }
.modal-box { width: min(600px, 100%); background: #141417; color: #f4f1ec; border: 1px solid rgba(244,241,236,.16); border-radius: var(--r-lg); position: relative; animation: lbIn .32s var(--ease); max-height: 92svh; overflow-y: auto; }
.modal-box .lf-head { padding-right: 46px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(244,241,236,.2); display: grid; place-items: center; font-size: 1.05rem; z-index: 2; background: #141417; color: #f4f1ec; }

.lead-form { padding: clamp(24px, 3.2vw, 38px); }
.lead-form.inline { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.lf-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.lf-head span { white-space: nowrap; }
.lf-progress { height: 4px; background: var(--line); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 24px; }
.lf-progress i { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--grad-a), var(--grad-b)); width: 0; transition: width .45s var(--ease); }
.lf-step { animation: stepIn .4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } }
.lf-q { font-size: clamp(1.3rem, 2.1vw, 1.65rem); line-height: 1.2; margin-bottom: 7px; font-weight: 700; letter-spacing: -.02em; }
.lf-hint { color: var(--muted); font-size: .87rem; margin-bottom: 20px; }
.lf-options { display: grid; gap: 9px; }
.lf-options.cols { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .lf-options.cols { grid-template-columns: 1fr; } }
.lf-opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; padding: 15px 17px; border: 1px solid var(--line-strong); border-radius: var(--r); background: var(--bg); font-size: .93rem; font-weight: 500; transition: border-color .22s, background .22s, transform .22s var(--ease); }
.lf-opt:hover { border-color: var(--sand); background: var(--bg-3); transform: translateX(3px); }
.lf-opt.selected { border-color: var(--sand); background: var(--sand-dim); }
.lf-opt .k { font-size: .6rem; letter-spacing: .1em; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 6px; padding: 2px 7px; flex-shrink: 0; font-weight: 700; }
.lf-opt .em { font-size: 1.1rem; margin-right: 6px; }
.lf-input { width: 100%; padding: 15px 0; background: transparent; border: 0; border-bottom: 2px solid var(--line-strong); font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; color: var(--text); outline: 0; transition: border-color .3s; }
.lf-input::placeholder { color: var(--muted); opacity: .55; font-weight: 400; }
.lf-input:focus { border-bottom-color: var(--sand); }
.lf-input.invalid { border-bottom-color: var(--danger); }
.lf-error { color: var(--danger); font-size: .8rem; margin-top: 9px; min-height: 1.2em; }
.lf-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; }
.lf-back { font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; padding: 10px 0; font-weight: 500; }
.lf-back:hover { color: var(--text); }
.lf-enter { font-size: .72rem; color: var(--muted); }
.lf-enter kbd { font: inherit; border: 1px solid var(--line-strong); border-radius: 5px; padding: 1px 6px; margin-right: 3px; }
.lf-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.lf-done { text-align: center; padding: 18px 0; }
.lf-done .h3 { margin: 14px 0 8px; }
.lf-spinner { width: 32px; height: 32px; border: 3px solid var(--line-strong); border-top-color: var(--sand); border-radius: 50%; margin: 22px auto; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal-box .lead-form { --bg: #0b0b0c; --bg-2: #141417; --bg-3: #1c1c20; --text: #f4f1ec; --text-2: #b9b4ac; --muted: #8e8880; --line: rgba(244,241,236,.1); --line-strong: rgba(244,241,236,.2); --sand: #c9b79c; --sand-ink: #d6c5a8; --sand-dim: rgba(201,183,156,.14); --grad-a: #e6d8bd; --grad-b: #c0a271; }

/* ---------- Diversos ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { font-size: .74rem; font-weight: 600; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: var(--r-pill); color: var(--text-2); }
.img-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-card { display: flex; gap: 15px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-2); box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card b { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 3px; letter-spacing: -.01em; }
.contact-card span { color: var(--text-2); font-size: .88rem; }
.big-list { counter-reset: n; display: grid; }
.big-list li { counter-increment: n; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.big-list li::before { content: counter(n, decimal-leading-zero); font-size: 1.05rem; font-weight: 800; color: var(--sand-ink); line-height: 1.4; letter-spacing: -.02em; }
.big-list h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.big-list p { color: var(--text-2); font-size: .9rem; }
.thanks { min-height: calc(100svh - 72px); display: flex; align-items: center; text-align: center; }
.thanks .container { max-width: 700px; }
.thanks .check { width: 66px; height: 66px; border-radius: 50%; background: var(--sand-dim); display: grid; place-items: center; margin: 0 auto 22px; color: var(--sand-ink); }

/* Faixa de números */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-band > div { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.8vw, 34px) 18px; text-align: center; box-shadow: var(--shadow); }
.stat-band b { display: block; font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1; font-weight: 800; letter-spacing: -.04em; background: linear-gradient(120deg, var(--grad-a), var(--grad-b)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-band span { display: block; font-size: .72rem; color: var(--muted); margin-top: 9px; font-weight: 500; }
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
