/* =========================================================
   Andrade Santos França Advogados
   Landing minimalista, leve e focada em conversão
   Paleta: claro (branco/marfim) + PRETO + DOURADO
   Verde só para a ação (WhatsApp)
   ========================================================= */
:root {
  --paper: #ffffff;
  --paper-2: #f7f4ee;        /* marfim quente */
  --ink: #15120c;            /* quase preto (texto) */
  --ink-2: #5d5648;          /* texto secundário */
  --ink-3: #8b8475;          /* sutil */
  --line: #ece5d7;           /* bordas claras */
  --black: #0c0b0a;          /* seções escuras */
  --black-2: #15120f;
  --bg: #0a0a0b;             /* seção escura base */
  --bg-2: #0e0d11;           /* seção escura alternada */
  --bg-3: #121015;
  --gold: #b1842f;           /* dourado legível no claro */
  --gold-2: #c9a253;
  --gold-bright: #ecc375;    /* dourado no escuro */
  --green: #1fae53;
  --green-2: #25d366;
  --shadow-sm: 0 4px 18px rgba(20, 16, 8, .06);
  --shadow: 0 18px 50px rgba(20, 16, 8, .10);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .5);
  --max: 1140px;
  --pad: clamp(72px, 9vw, 122px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(177, 132, 47, .22); }

h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.04; letter-spacing: -.01em; }

.container { width: min(100% - 44px, var(--max)); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--gold); color: #fff; padding: 10px 14px; border-radius: 8px; font-weight: 700; transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transition: width .1s linear; }

/* ---- Eyebrow / section head ---- */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--gold); font-family: "Inter", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-bright); }
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-2); animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70%,100% { box-shadow: 0 0 0 8px rgba(37,211,102,0); } }
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(33px, 4.6vw, 54px); }
.section-lead { margin-top: 18px; color: var(--ink-2); font-size: 18px; }
.link-gold { color: var(--gold); font-weight: 700; border-bottom: 1px solid rgba(177,132,47,.4); }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 88px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  height: 66px; background: rgba(9, 8, 7, .9);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(177,132,47,.2);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; transition: height .25s ease; }
.site-header.is-scrolled .brand-logo { height: 40px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: rgba(247,244,238,.74); font-size: 14px; font-weight: 600; padding: 10px 13px; border-radius: 8px; transition: color .2s ease, background .2s ease; }
.nav a:hover, .nav a:focus-visible { color: var(--gold-bright); background: rgba(177,132,47,.12); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(177,132,47,.3); border-radius: 10px; background: rgba(177,132,47,.06); padding: 11px; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: var(--gold-bright); margin: 5px 0; border-radius: 99px; transition: transform .3s var(--ease), opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; border: 1.5px solid transparent; border-radius: 12px; padding: 13px 22px; font-family: "Inter", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.01em; cursor: pointer; white-space: nowrap; transition: transform .2s var(--ease), box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.ico-whats { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.btn-whats { color: #1a1305; background: linear-gradient(135deg, #f6e3b6 0%, var(--gold-2) 45%, var(--gold) 100%); box-shadow: 0 14px 34px rgba(177,132,47,.32); }
.btn-whats:hover { box-shadow: 0 20px 48px rgba(177,132,47,.46); }
.btn-dark { color: #fff; background: var(--black); }
.btn-dark:hover { background: #221d16; }
.btn-gold { color: #fff; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.btn-ghost { color: #f7f4ee; background: rgba(255,255,255,.05); border-color: rgba(247,244,238,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(247,244,238,.5); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: 14px; }
.btn-large { min-height: 56px; padding: 16px 28px; font-size: 16px; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   HERO (escuro, minimalista, centralizado)
   ========================================================= */
.hero { position: relative; overflow: hidden; min-height: 100vh; min-height: 100svh; display: flex; background: var(--black); color: #f7f4ee; }
.hero-bg { position: absolute; inset: 0; background: #0a0a0b url("/assets/equipe.jpg") center 18% / cover no-repeat; animation: heroZoom 24s var(--ease) forwards; transform-origin: center 30%; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-veil { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(78% 46% at 50% 44%, rgba(236,195,117,.10), transparent 72%),
    linear-gradient(180deg, rgba(8,8,9,.94) 0%, rgba(8,8,9,.5) 24%, rgba(8,8,9,.26) 46%, rgba(8,8,9,.55) 72%, rgba(8,8,9,.97) 100%); }
.hero-inner { position: relative; z-index: 1; width: min(100% - 44px, var(--max)); margin-inline: auto; text-align: center; padding: clamp(106px, 14vh, 172px) 0 clamp(40px, 6vh, 74px); display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 24px; min-height: 100svh; }
.hero-top, .hero-bottom { width: 100%; }
.hero h1 { font-size: clamp(19px, 5.7vw, 86px); margin: 0 0 16px; letter-spacing: -.01em; text-transform: uppercase; white-space: nowrap; text-shadow: 0 2px 36px rgba(0,0,0,.65); }
.hero h1 .hl { color: var(--gold-bright); }
.hero-sub { margin: 0; color: rgba(247,244,238,.9); font-family: "Inter", sans-serif; font-size: clamp(9.5px, 1.5vw, 16px); font-weight: 600; letter-spacing: .26em; text-transform: uppercase; white-space: nowrap; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 22px; }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; color: rgba(247,244,238,.9); font-size: 14px; font-weight: 600; text-shadow: 0 1px 14px rgba(0,0,0,.85); }
.hero-trust svg { width: 18px; height: 18px; fill: var(--gold-bright); }

/* =========================================================
   TEMA ESCURO DE LUXO — seções abaixo do hero
   ========================================================= */
:root { --ink-on-dark: #f4efe3; --muted-on-dark: rgba(244,239,227,.62); --card: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); --card-bd: rgba(177,132,47,.16); --glow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(177,132,47,.06); }
.areas, .method, .why, .testi, .about, .faq { color: var(--ink-on-dark); }
.section-head h2 { color: var(--ink-on-dark); }
.section-lead { color: var(--muted-on-dark); }
/* divisor dourado sob o título da seção */
.section-head .eyebrow { position: relative; }
.section-head h2::after { content: ""; display: block; width: 54px; height: 2px; margin: 22px auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-head.align-left h2::after, .faq-intro h2::after { margin-inline: 0; background: linear-gradient(90deg, var(--gold), transparent); }

/* ---- AREAS ---- */
.areas { padding: var(--pad) 0; background: var(--bg); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card {
  position: relative; display: flex; flex-direction: column;
  padding: 38px 32px; border: 1px solid var(--card-bd); border-radius: 22px; background: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.area-card:hover { transform: translateY(-8px); box-shadow: var(--glow); border-color: rgba(177,132,47,.45); }
.area-card.is-featured { border-color: rgba(177,132,47,.42); background: linear-gradient(165deg, rgba(177,132,47,.10), rgba(255,255,255,.02)); box-shadow: 0 24px 64px rgba(177,132,47,.12); }
.badge-top { position: absolute; top: -13px; left: 32px; padding: 6px 14px; border-radius: 99px; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1305; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 8px 22px rgba(177,132,47,.4); }
.area-ic { display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 24px; border-radius: 17px; background: linear-gradient(150deg, rgba(177,132,47,.2), rgba(177,132,47,.04)); border: 1px solid rgba(177,132,47,.3); }
.area-ic svg { width: 30px; height: 30px; fill: var(--gold-bright); }
.area-card h3 { font-size: 27px; margin-bottom: 8px; color: var(--ink-on-dark); }
.area-card > p { color: var(--muted-on-dark); font-size: 15.5px; margin-bottom: 20px; }
.area-card ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.area-card ul li { position: relative; padding-left: 28px; color: rgba(244,239,227,.86); font-size: 15px; }
.area-card ul li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 5px; background: rgba(177,132,47,.16); }
.area-card ul li::after { content: ""; position: absolute; left: 4.5px; top: 9.5px; width: 6px; height: 3px; border-left: 2px solid var(--gold-bright); border-bottom: 2px solid var(--gold-bright); transform: rotate(-45deg); }
.area-link { margin-top: auto; color: var(--gold-bright); font-family: "Inter", sans-serif; font-weight: 700; font-size: 15px; transition: color .2s ease; }
.area-link:hover { color: #fff; }
.areas-extra { margin-top: 44px; text-align: center; color: var(--muted-on-dark); font-size: 16px; }
.areas-extra a { color: var(--gold-bright); font-weight: 700; border-bottom: 1px solid rgba(236,195,117,.4); }

/* ---- METHOD ---- */
.method { padding: var(--pad) 0; background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 38px 30px; background: var(--card); border: 1px solid var(--card-bd); border-radius: 22px; text-align: left; transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.step:hover { transform: translateY(-6px); border-color: rgba(177,132,47,.4); box-shadow: var(--glow); }
.step-n { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 16px; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1305; font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 700; box-shadow: 0 12px 28px rgba(177,132,47,.3); }
.step h3 { font-size: 23px; margin-bottom: 9px; color: var(--ink-on-dark); }
.step p { color: var(--muted-on-dark); font-size: 15.5px; }
.method-cta { margin-top: 48px; text-align: center; }

/* ---- NUMBERS ---- */
.numbers { padding: clamp(64px, 8vw, 96px) 0; background: var(--bg); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.num { position: relative; padding: 8px 10px; }
.num + .num::before { content: ""; position: absolute; left: -10px; top: 14%; height: 72%; width: 1px; background: linear-gradient(180deg, transparent, rgba(177,132,47,.28), transparent); }
.num strong { display: block; font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: clamp(48px, 5.8vw, 70px); line-height: 1; background: linear-gradient(120deg, #f6e3b6, var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.num span { display: block; margin-top: 12px; color: var(--muted-on-dark); font-size: 14px; }

/* ---- WHY ---- */
.why { padding: var(--pad) 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 38px 32px; border: 1px solid var(--card-bd); border-radius: 22px; background: var(--card); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: rgba(177,132,47,.4); }
.why-card svg { width: 42px; height: 42px; fill: var(--gold-bright); margin-bottom: 18px; }
.why-card h3 { font-size: 23px; margin-bottom: 9px; color: var(--ink-on-dark); }
.why-card p { color: var(--muted-on-dark); font-size: 15.5px; }

/* ---- TESTIMONIALS ---- */
.testi { padding: var(--pad) 0; background: var(--bg); overflow: hidden; }
.testi-marquee { position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.testi-track { display: flex; gap: 22px; width: max-content; will-change: transform; animation: testiScroll 44s linear infinite; }
.testi-marquee:hover .testi-track { animation-play-state: paused; }
@keyframes testiScroll { to { transform: translateX(-50%); } }
.testi-card { flex: 0 0 auto; width: min(380px, 82vw); display: flex; flex-direction: column; gap: 16px; padding: 34px 32px; background: var(--card); border: 1px solid var(--card-bd); border-radius: 22px; }
.stars { color: var(--gold-bright); letter-spacing: 3px; font-size: 17px; }
.testi-card blockquote { margin: 0; flex: 1; font-family: "Cormorant Garamond", serif; font-size: 22px; line-height: 1.45; color: var(--ink-on-dark); }
.testi-card figcaption { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid rgba(177,132,47,.16); }
.avatar { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; font-family: "Inter", sans-serif; font-weight: 800; color: #1a1305; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.testi-card figcaption strong { display: block; font-family: "Inter", sans-serif; font-size: 15px; color: var(--ink-on-dark); }
.testi-card figcaption small { color: rgba(244,239,227,.5); font-size: 13px; }

/* ---- ABOUT ---- */
.about { padding: var(--pad) 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.about-visual { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid rgba(177,132,47,.2); box-shadow: var(--glow); }
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(10,10,11,.5)); }
.about-visual img { width: 100%; height: 100%; max-height: 540px; object-fit: cover; display: block; }
.about h2 { font-size: clamp(31px, 4.2vw, 50px); margin-bottom: 18px; color: var(--ink-on-dark); }
.about > .container > div > p { color: var(--muted-on-dark); font-size: 17px; }
.about-points { display: grid; gap: 16px; margin: 30px 0 32px; }
.about-points div { padding-left: 18px; border-left: 2px solid var(--gold); }
.about-points strong { display: block; font-family: "Inter", sans-serif; font-size: 16px; color: var(--ink-on-dark); }
.about-points span { color: var(--muted-on-dark); font-size: 15px; }

/* ---- FAQ ---- */
.faq { padding: var(--pad) 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.faq-intro h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; color: var(--ink-on-dark); }
.faq-list { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--card-bd); border-radius: 16px; background: var(--card); overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq details[open] { border-color: rgba(177,132,47,.42); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 56px 22px 24px; font-family: "Inter", sans-serif; font-weight: 600; font-size: 16.5px; position: relative; color: var(--ink-on-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px; margin-top: -7px; border-right: 2px solid var(--gold-bright); border-bottom: 2px solid var(--gold-bright); transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { margin: 0; padding: 0 24px 24px; color: var(--muted-on-dark); }
.faq-help { color: var(--muted-on-dark); }

/* =========================================================
   FINAL CTA (escuro)
   ========================================================= */
.final-cta { padding: var(--pad) 0; background: var(--bg); color: #f7f4ee; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 520px at 50% 8%, rgba(177,132,47,.10), transparent 70%); }
.final-grid { position: relative; max-width: 720px; margin-inline: auto; text-align: center; }
.final-cta h2 { font-size: clamp(38px, 6vw, 66px); margin-bottom: 18px; }
.final-sub { max-width: 560px; margin: 0 auto 32px; color: rgba(247,244,238,.78); font-size: 18px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final-note { margin-top: 24px; color: rgba(247,244,238,.55); font-size: 14px; }

/* =========================================================
   FOOTER (escuro)
   ========================================================= */
.footer { padding: 64px 0 0; background: var(--bg); border-top: 1px solid rgba(177,132,47,.1); color: rgba(247,244,238,.7); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; gap: 36px; }
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer p, .footer a, .footer span { display: block; color: rgba(247,244,238,.65); font-size: 14px; margin: 8px 0 0; }
.footer a:hover { color: var(--gold-bright); }
.footer strong { display: block; margin-bottom: 6px; color: var(--gold-bright); font-family: "Inter", sans-serif; font-size: 14px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; margin-top: 44px; padding: 22px 0; border-top: 1px solid rgba(247,244,238,.1); }
.footer-bottom span { margin: 0; font-size: 12.5px; color: rgba(247,244,238,.5); }
.footer-legal { max-width: 620px; }

/* ---- Floating + mobile CTA + toast ---- */
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 20px 0 16px; border-radius: 999px; color: #1a1305; background: linear-gradient(135deg, #f6e3b6 0%, var(--gold-2) 45%, var(--gold) 100%); box-shadow: 0 14px 36px rgba(177,132,47,.42); font-family: "Inter", sans-serif; font-weight: 700; transition: transform .2s var(--ease), box-shadow .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp .ico-whats { width: 24px; height: 24px; }
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(12,11,10,.97); backdrop-filter: blur(14px); border-top: 1px solid rgba(177,132,47,.22); transform: translateY(120%); transition: transform .35s var(--ease); }
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn-whats { width: 100%; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140%); z-index: 300; max-width: 90vw; padding: 14px 20px; border-radius: 12px; background: var(--black-2); border: 1px solid rgba(177,132,47,.4); color: #f7f4ee; box-shadow: var(--shadow-dark); font-family: "Inter", sans-serif; font-weight: 600; font-size: 14.5px; transition: transform .35s var(--ease), opacity .35s ease; opacity: 0; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .nav { position: fixed; inset: 88px 0 auto; display: none; flex-direction: column; align-items: stretch; padding: 14px 22px 22px; gap: 2px; background: rgba(10,9,8,.99); border-bottom: 1px solid rgba(177,132,47,.2); box-shadow: var(--shadow-dark); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid rgba(247,244,238,.08); border-radius: 0; font-size: 16px; }
  .menu-button { display: block; }
  .area-grid, .steps, .why-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-visual { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Notebooks estreitos / tablets paisagem */
@media (min-width: 681px) and (max-width: 940px) {
  .hero-bg { background-position: center 22%; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { height: 64px; padding-inline: 16px; }
  .nav { top: 64px; }
  .brand-logo { height: 38px; }
  .header-actions .btn-small { display: none; }
  .hero-bg { background-position: center 26%; }
  .hero-inner { padding-top: 74px; gap: 18px; }
  .hero-sub { letter-spacing: .14em; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { display: none; }
  .mobile-cta { display: block; }
  .footer-bottom { flex-direction: column; }

  /* Depoimentos: carrossel swipe, um por vez */
  .testi-marquee { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-padding: 0 20px; scrollbar-width: none; -webkit-mask-image: none; mask-image: none; }
  .testi-marquee::-webkit-scrollbar { display: none; }
  .testi-track { animation: none !important; gap: 16px; padding: 4px 20px; }
  .testi-card { width: calc(100vw - 64px); scroll-snap-align: center; }
}
@media (max-width: 420px) { .numbers-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print { .site-header, .floating-whatsapp, .mobile-cta, .scroll-progress, .hero-bg { display: none !important; } body { background: #fff; color: #000; } }
