/* Site Rápido Hoje — sistema visual */

:root {
  /* Surfaces */
  --bg:        #070707;
  --bg-1:      #0b0b0c;
  --surface:   #0e0e10;
  --surface-2: #131316;
  --surface-3: #17171b;

  /* Lines */
  --line:   rgba(255, 255, 255, .06);
  --line-2: rgba(255, 255, 255, .10);
  --line-3: rgba(255, 255, 255, .16);

  /* Text */
  --text:   #f6f6f7;
  --text-2: #9b9ba3;
  --text-3: #85858e;

  /* Accent — electric blue */
  --accent:     #4f7cff;
  --accent-600: #3867ed;
  --accent-700: #2f5ae0;
  --accent-soft: rgba(79, 124, 255, .12);
  --accent-line: rgba(79, 124, 255, .35);

  --wpp: #25d366;

  --font: "General Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-xs: 8px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(0,0,0,.5);
  --sh-md: 0 8px 30px -12px rgba(0,0,0,.7);
  --sh-lg: 0 30px 80px -30px rgba(0,0,0,.85);

  --container: 1600px;
  --gutter: clamp(18px, 2.5vw, 42px);
  /* Ritmo vertical contido: evita grandes vazios em telas largas. */
  --section-y: clamp(56px, 5.5vw, 80px);
  --nav-h: 76px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -.025em; color: var(--text); text-wrap: balance; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--accent); color: #fff; }

* { scrollbar-color: #232327 transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #202024; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2c2c31; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--surface-2); color: #fff; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line-2); transition: top .2s var(--ease); }
.skip-link:focus { top: 12px; }

/* Section scaffolding */
.section { padding: var(--section-y) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500; letter-spacing: .01em;
  color: var(--text-2);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 600; letter-spacing: -.03em; margin-top: 10px; line-height: 1.05; }
.section-title .dim { color: var(--text-3); }
.section-lead { margin-top: 18px; color: var(--text-2); font-size: 1.05rem; max-width: 48ch; line-height: 1.6; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 44px;
  font-weight: 600; font-size: .94rem; letter-spacing: -.01em;
  padding: .72em 1.2em; border-radius: var(--r-sm);
  border: 1px solid transparent; color: var(--text);
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent-600); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 1px 2px rgba(0,0,0,.4); }
.btn-primary:hover { background: var(--accent-700); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 24px -10px rgba(79,124,255,.6); }
.btn-primary:hover svg { transform: translateX(2px); }

.btn-ghost { background: rgba(255,255,255,.02); border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: var(--line-3); transform: translateY(-1px); }

.btn-wpp { background: var(--wpp); color: #05331b; font-weight: 600; }
.btn-wpp:hover { background: #22c35f; transform: translateY(-1px); }

.btn-lg { padding: .85em 1.4em; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background-color .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease); border-bottom: 1px solid transparent; }
.nav-wrap.scrolled { background: rgba(7,7,7,.72); backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--line); }
.nav { height: var(--nav-h); display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); }

.brand { display: inline-flex; align-items: center; min-height: 44px; flex: none; }
.brand img { width: clamp(174px, 15vw, 236px); height: auto; }

.nav-links { display: flex; align-items: center; gap: clamp(2px, .55vw, 10px); }
.nav-links a { font-size: clamp(.88rem, 1vw, 1rem); font-weight: 500; color: var(--text-2); padding: .65em .8em; border-radius: 8px; transition: color .18s var(--ease); white-space: nowrap; }
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-budget { min-height: 46px; padding-inline: 1.25rem; background: #3867ed; color: #fff; border-color: #5c84ff; box-shadow: 0 0 22px rgba(79,124,255,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.nav-budget:hover { background: #4a76f3; border-color: #7b9aff; transform: translateY(-1px); box-shadow: 0 0 30px rgba(79,124,255,.42), inset 0 1px 0 rgba(255,255,255,.24); }
.nav-toggle { display: none; flex: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-2); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 17px; height: 1.6px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: var(--nav-h) 0 0; z-index: 99; background: rgba(7,7,7,.96); backdrop-filter: blur(20px); display: flex; flex-direction: column; padding: 24px var(--gutter) 40px; gap: 2px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { font-size: 1.4rem; font-weight: 500; color: var(--text); padding: 16px 2px; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(10px); animation: mm-in .4s var(--ease-out) forwards; }
.mobile-menu a:nth-child(1){animation-delay:.04s}.mobile-menu a:nth-child(2){animation-delay:.08s}.mobile-menu a:nth-child(3){animation-delay:.12s}.mobile-menu a:nth-child(4){animation-delay:.16s}.mobile-menu a:nth-child(5){animation-delay:.2s}
.mobile-menu .btn { font-size: 1rem; margin-top: 22px; opacity: 0; animation: mm-in .4s var(--ease-out) .26s forwards; }
@keyframes mm-in { to { opacity: 1; transform: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: calc(var(--nav-h) + clamp(30px, 3.5vw, 56px)) 0 clamp(38px, 4vw, 64px); overflow: clip; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(340px, .78fr) minmax(580px, 1.22fr); gap: clamp(28px, 3vw, 60px); align-items: center; }

.hero-h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.02; margin: 0; }
.hero-h1 .ac { color: var(--accent); }
.hero-sub { margin-top: 18px; color: var(--text-2); font-size: 1.12rem; max-width: 34ch; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-note { margin-top: 18px; font-size: .94rem; color: var(--text-2); }

/* Device setup */
.hero-scene { position: relative; }
.scene { position: relative; aspect-ratio: 1 / .68; width: min(100%, 980px); margin-inline: auto; }

/* laptop */
.laptop { position: absolute; left: 50%; top: 1%; transform: translateX(-50%); width: 82%; z-index: 2; animation: laptop-in 820ms var(--ease-out) both; }
.laptop-lid { padding: 8px 8px 0; background: #1a1a1d; border: 1px solid #2a2a2e; border-bottom: none; border-radius: 14px 14px 0 0; box-shadow: var(--sh-lg); }
.laptop-screen { border-radius: 6px 6px 0 0; overflow: hidden; aspect-ratio: 16 / 10; background: #000; }
.laptop-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 360ms var(--ease-out); }
.laptop-base { position: relative; height: 13px; margin: 0 -6%; background: linear-gradient(#3a3a40, #202024 55%, #101012); border-radius: 3px 3px 11px 11px; box-shadow: 0 20px 40px -18px rgba(0,0,0,.9); }
.laptop-base::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15%; height: 5px; background: #16161a; border-radius: 0 0 7px 7px; }

/* phone */
.phone { position: absolute; left: 1%; bottom: -1%; width: 24%; z-index: 4; border-radius: 24px; padding: 4px; background: #202024; box-shadow: var(--sh-lg); animation: phone-in 900ms 100ms var(--ease-out) both; }
.phone-screen { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 9 / 19; background: #f2f0ec; }
.phone-island { position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 32%; height: 8px; background: #000; border-radius: 8px; z-index: 5; }
.phone-ui { position: absolute; inset: 0; z-index: 3; display: grid; grid-template-rows: auto 1fr auto; color: #161616; background: #f4f2ee; font-size: clamp(4px, .4vw, 7px); }
.shop-nav { min-height: 12%; padding: 11% 7% 4%; display: flex; align-items: center; gap: 7%; background: #101011; color: #fff; text-transform: uppercase; letter-spacing: .05em; }
.shop-nav b { margin-right: auto; font-size: 1.35em; letter-spacing: .14em; }
.shop-viewport { min-height: 0; overflow: hidden; background: #f4f2ee; }
.shop-scroll { height: 148%; animation: shop-scroll 11s var(--ease) 1.2s infinite; will-change: transform; }
.shop-hero { position: relative; height: 37%; overflow: hidden; background: #171719; color: #fff; }
.shop-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 7%; transform: scale(1.28); filter: brightness(.5) saturate(.72); transition: transform 420ms var(--ease-out); }
.shop-hero > div { position: absolute; inset: 0; padding: 16% 9% 9%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.shop-hero small { color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .12em; }
.shop-hero strong { margin: 5% 0 7%; font-size: 2.05em; line-height: .98; letter-spacing: -.04em; }
.shop-hero span { padding: .65em .9em; background: #fff; color: #111; border-radius: 2px; font-weight: 700; }
.shop-benefits { height: 8%; display: flex; align-items: center; justify-content: space-around; gap: 4px; padding: 0 5%; background: #171719; color: #d5d5d5; text-transform: uppercase; letter-spacing: .04em; }
.shop-products { height: 39%; padding: 7% 7% 4%; background: #f4f2ee; }
.shop-title { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 5%; }
.shop-title b { font-size: 1.25em; }
.shop-title span { text-decoration: underline; }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; }
.shop-grid article { min-width: 0; }
.shop-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: saturate(.72); }
.shop-grid article:first-child img { object-position: 8% top; }
.shop-grid article:last-child img { object-position: 92% top; }
.shop-grid span, .shop-grid small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shop-grid span { margin-top: 5%; font-weight: 700; }
.shop-grid small { color: #6d6d6d; }
.shop-promo { height: 16%; padding: 7% 8%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: #d9d3c8; }
.shop-promo small { text-transform: uppercase; letter-spacing: .08em; color: #6d665c; }
.shop-promo strong { margin: 3% 0 5%; max-width: 16ch; font-size: 1.45em; line-height: 1.08; }
.shop-promo span { text-decoration: underline; font-weight: 600; }
.shop-footer { min-height: 8%; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid #d7d3cc; text-transform: uppercase; letter-spacing: .04em; }

/* tablet */
.tablet { position: absolute; right: 0; bottom: 2%; width: 32%; z-index: 1; border-radius: 18px; padding: 6px; background: #17171b; box-shadow: var(--sh-lg); animation: tablet-in 900ms 180ms var(--ease-out) both; }
.tablet-screen { border-radius: 11px; overflow: hidden; aspect-ratio: 3 / 4; background: #000; }
.tablet-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 360ms var(--ease-out); }

@keyframes laptop-in { from { opacity: 0; transform: translate(-50%, 18px) scale(.985); } to { opacity: 1; transform: translateX(-50%); } }
@keyframes phone-in { from { opacity: 0; transform: translate(-12px, 20px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes tablet-in { from { opacity: 0; transform: translate(12px, 18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes shop-scroll {
  0%, 20% { transform: translateY(0); }
  48%, 72% { transform: translateY(-32.4%); }
  100% { transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
  .scene:hover .laptop-screen img { transform: scale(1.018); }
  .scene:hover .shop-hero > img { transform: scale(1.305); }
  .scene:hover .tablet-screen img { transform: scale(1.018); }
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { border-top: 1px solid var(--line); }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 56px); }
.hl { padding: 24px 0; }
.hl-k { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.hl-title { color: var(--text); font-size: 1.02rem; font-weight: 600; margin: 12px 0 4px; letter-spacing: -.02em; line-height: 1.25; }
.hl > p:not(.hl-title) { color: var(--text-2); font-size: .9rem; }

/* ============================================================
   PORTFÓLIO — grade editorial ampla
   ============================================================ */
.pf-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 36px); }
.pf-top .section-head { margin-bottom: 0; }
.pf-link { display: inline-flex; align-items: center; min-height: 44px; gap: 7px; font-size: .92rem; font-weight: 500; color: var(--text-2); transition: color .18s var(--ease), gap .18s var(--ease); }
.pf-link:hover { color: var(--text); gap: 10px; }
.pf-link svg { width: 15px; height: 15px; }

.bento { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 1.6vw, 26px); }
.pf, .pf.lg, .pf.tall, .pf.md { position: relative; overflow: hidden; min-height: 0; aspect-ratio: 3 / 2; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); cursor: pointer; text-align: left; grid-column: span 1; grid-row: span 1; transition: transform 320ms var(--ease-out), border-color 320ms var(--ease); }
.pf img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 360ms var(--ease-out), opacity 300ms var(--ease); }
.pf::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,7,0) 48%, rgba(7,7,7,.94) 70%, #070707 100%); opacity: .96; transition: opacity 300ms var(--ease); }
.pf-cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; transform: translateY(4px); opacity: .92; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.pf-cap b { font-size: 1rem; font-weight: 600; letter-spacing: -.02em; color: #fff; }
.pf-cap .arrow { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid var(--line-2); color: #fff; opacity: 0; transform: translateY(4px); transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .18s var(--ease); }
.pf-cap .arrow svg { width: 15px; height: 15px; }

@media (hover: hover) and (pointer: fine) {
  .pf:hover { transform: translateY(-4px); border-color: var(--line-2); }
  .pf:hover img { transform: scale(1.025); }
  .pf:hover::after { opacity: .92; }
  .pf:hover .pf-cap { transform: none; opacity: 1; }
  .pf:hover .pf-cap .arrow { opacity: 1; transform: none; }
}

.pf-cta { grid-column: span 2; min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 14px; padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line-2); border-radius: var(--r-lg); background: var(--surface-2); text-align: left; cursor: pointer; transition: border-color .2s var(--ease), background-color .2s var(--ease); }
.pf-cta:hover { border-color: var(--accent-line); background: var(--surface-3); }
.pf-cta b { font-size: 1.06rem; font-weight: 600; letter-spacing: -.02em; color: var(--text); }
.pf-cta .go { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--accent); }
.pf-cta .go svg { width: 16px; height: 16px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 220; display: grid; place-items: center; padding: clamp(14px, 3vw, 40px); }
.lightbox[hidden] { display: none; }
.lb-overlay { position: absolute; inset: 0; background: rgba(4,4,4,.85); backdrop-filter: blur(8px); animation: fade .25s var(--ease); }
.lb-panel { position: relative; z-index: 1; width: min(1080px, 100%); max-height: 92vh; display: flex; flex-direction: column; animation: pop .3s var(--ease-out); }
.lb-frame { border-radius: 14px; overflow: hidden; background: #0a0a0b; border: 1px solid var(--line-2); box-shadow: var(--sh-lg); display: flex; flex-direction: column; min-height: 0; }
.lb-bar { height: 34px; background: #131316; display: flex; align-items: center; gap: 6px; padding: 0 14px; flex: none; border-bottom: 1px solid var(--line); }
.lb-bar i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.lb-scroll { overflow: hidden; height: min(72vh, 760px); background: #0a0a0b; }
.lb-scroll img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.lb-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 18px; margin-top: 14px; }
.lb-cap b { font-size: 1.05rem; font-weight: 600; display: block; color: #fff; }
.lb-cap small { color: var(--text-2); font-size: .82rem; }
.lb-close { position: absolute; top: -12px; right: -4px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line-2); color: #fff; transition: transform .2s var(--ease); }
.lb-close:hover { transform: rotate(90deg); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.99); } }

/* ============================================================
   PROCESSO — timeline horizontal
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(22px, 2.2vw, 38px); position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 25px; height: 1px; background: var(--line-2); }
.tl { position: relative; min-width: 0; padding-top: 72px; }
.tl::before { content: ""; position: absolute; top: 20px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--bg); }
.tl-n { position: absolute; top: 0; left: 25px; color: var(--text-3); font-size: 2rem; font-weight: 600; line-height: 1.5; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.tl h3 { min-height: 2.3em; margin-bottom: 12px; font-size: 1.15rem; font-weight: 600; letter-spacing: -.02em; }
.tl p { color: #b1b1b8; font-size: .94rem; line-height: 1.58; }
.tl .tl-support { min-height: 6em; margin-top: 12px; color: var(--text-2); }
.tl-meta { margin-top: 20px; border-top: 1px solid var(--line); }
.tl-meta > div { display: grid; grid-template-columns: 82px 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .82rem; line-height: 1.4; }
.tl-meta dt { color: var(--text-3); }
.tl-meta dd { color: #b9b9bf; }
.process-note { max-width: 72ch; margin-top: clamp(28px, 3vw, 42px); padding-left: 16px; border-left: 2px solid var(--accent); color: var(--text-2); font-size: .92rem; line-height: 1.6; }

/* Recursos — lista tipográfica, sem iconografia decorativa */
.resource-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-2); }
.resource-list li { position: relative; min-height: 112px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px 32px 22px 32px; border-bottom: 1px solid var(--line); color: var(--text); letter-spacing: -.015em; }
.resource-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.resource-list li::before { content: ""; position: absolute; left: 4px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.resource-list strong { font-size: 1.08rem; font-weight: 600; }
.resource-list span { margin-top: 7px; color: #a9a9b1; font-size: .94rem; line-height: 1.55; max-width: 58ch; }

/* ============================================================
   FAQ — minimal lines
   ============================================================ */
.faq { max-width: 920px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 4px; text-align: left; font-size: 1.06rem; font-weight: 500; color: var(--text); letter-spacing: -.01em; }
.faq-q:hover { color: #fff; }
.faq-ic { position: relative; flex: none; width: 16px; height: 16px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--text-2); transition: transform .25s var(--ease), opacity .25s var(--ease), background-color .25s var(--ease); }
.faq-ic::before { top: 7px; left: 0; right: 0; height: 1.5px; }
.faq-ic::after { left: 7px; top: 0; bottom: 0; width: 1.5px; }
.faq-item.open .faq-ic::after { transform: scaleY(0); opacity: 0; }
.faq-item.open .faq-ic::before { background: var(--accent); }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-panel[hidden] { display: none; }
.faq-a { padding: 0 4px 24px; color: #adadb5; font-size: .98rem; line-height: 1.65; max-width: 72ch; }

/* Faixa de confiança — informação objetiva, sem selos decorativos */
.trust-strip { padding: clamp(34px, 4vw, 52px) 0; border-top: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.6fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.trust-inner h2 { max-width: 18ch; font-size: clamp(1.45rem, 2.3vw, 2rem); }
.trust-inner ul { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-2); }
.trust-inner li { position: relative; min-height: 54px; display: flex; align-items: center; padding: 12px 18px 12px 21px; border-bottom: 1px solid var(--line); color: #c4c4ca; font-size: .94rem; }
.trust-inner li:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-inner li::before { content: ""; position: absolute; left: 2px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   CTA
   ============================================================ */
.cta { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--bg-1); }
.cta-inner { text-align: center; max-width: 640px; margin-inline: auto; }
.cta h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.04; }
.cta p { margin-top: 18px; color: #adadb5; font-size: 1.08rem; line-height: 1.65; }
.cta .cta-security { margin-top: 12px; color: #d0d0d5; font-size: .92rem; font-weight: 500; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { margin-top: 14px; color: var(--text-2); font-size: .9rem; line-height: 1.6; max-width: 30ch; }
.footer-heading { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.footer-col a { display: flex; align-items: center; min-height: 44px; padding: 5px 0; font-size: .92rem; color: var(--text-2); transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-col > span { display: block; max-width: 24ch; padding-top: 10px; color: var(--text-3); font-size: .86rem; line-height: 1.55; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--text-3); }

/* ============================================================
   PÁGINAS LEGAIS
   ============================================================ */
.legal-nav { display: flex; min-height: var(--nav-h); align-items: center; justify-content: space-between; gap: 24px; }
.legal-back { display: inline-flex; min-height: 44px; align-items: center; color: var(--text-2); font-size: .94rem; transition: color .18s var(--ease); }
.legal-back:hover { color: var(--text); }
.legal-main { min-height: calc(100vh - var(--nav-h)); padding: calc(var(--nav-h) + clamp(48px, 7vw, 96px)) 0 clamp(64px, 8vw, 112px); }
.legal-content { max-width: 820px; }
.legal-content > h1 { max-width: 16ch; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.legal-updated { margin-top: 18px; color: var(--text-3); font-size: .9rem; }
.legal-intro { margin-top: 32px; color: #b9b9c0; font-size: 1.08rem; line-height: 1.75; }
.legal-content section { padding-top: 36px; }
.legal-content h2 { margin-bottom: 12px; font-size: 1.3rem; }
.legal-content section p, .legal-content section li { color: var(--text-2); line-height: 1.75; }
.legal-content section p + p { margin-top: 12px; }
.legal-content ul { padding-left: 1.2em; }
.legal-content a { color: #a9bcff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   WhatsApp float
   ============================================================ */
.wpp-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; place-items: center; width: 56px; height: 56px; padding: 14px; border-radius: 50%; background: var(--wpp); box-shadow: var(--sh-md); transition: transform .2s var(--ease), background-color .2s var(--ease); }
.wpp-float img { width: 27px; height: 27px; }
.wpp-float:hover { transform: translateY(-2px); background: #20bd5a; }
.btn-wpp img { width: 20px; height: 20px; }

/* ============================================================
   FORM MODAL
   ============================================================ */
.sheet { position: fixed; inset: 0; z-index: 240; display: grid; place-items: center; padding: clamp(14px, 4vw, 30px); }
.sheet[hidden] { display: none; }
.sheet-overlay { position: absolute; inset: 0; background: rgba(4,4,4,.8); backdrop-filter: blur(8px); animation: fade .25s var(--ease); }
.sheet-panel { position: relative; z-index: 1; width: min(500px, 100%); max-height: 92vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-xl); box-shadow: var(--sh-lg); animation: pop .3s var(--ease-out); }
.sheet-top { position: relative; padding: 30px clamp(22px, 5vw, 34px) 0; }
.sheet h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -.03em; margin-bottom: 8px; }
.sheet-sub { color: var(--text-2); font-size: .94rem; }
.sheet-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--text-2); transition: transform .2s var(--ease), color .2s var(--ease); }
.sheet-close:hover { transform: rotate(90deg); color: var(--text); }
.sheet-close svg { width: 18px; height: 18px; }

.sheet-form { padding: 22px clamp(22px, 5vw, 34px) clamp(24px, 5vw, 30px); display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text); }
.field label .req { color: var(--accent); }
.field .hint { color: var(--text-3); font-weight: 400; }
.field input, .field select, .field textarea { font-family: var(--font); font-size: .96rem; color: var(--text); padding: .74em .9em; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--bg-1); transition: border-color .18s var(--ease), box-shadow .18s var(--ease); width: 100%; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239b9ba3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; background-size: 14px; }
.field select option { background: #131316; color: var(--text); }
.field textarea { resize: vertical; min-height: 72px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field.invalid input, .field.invalid select { border-color: #ff5c5c; box-shadow: 0 0 0 3px rgba(255,92,92,.1); }
.field .error { font-size: .76rem; color: #ff7a7a; display: none; }
.field.invalid .error { display: block; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { min-height: 44px; font-size: .9rem; font-weight: 500; color: var(--text-2); padding: .48em .85em; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: var(--bg-1); transition: color .16s var(--ease), background-color .16s var(--ease), border-color .16s var(--ease); }
.chip:hover { border-color: var(--line-3); color: var(--text); }
.chip.active { background: var(--accent-600); color: #fff; border-color: var(--accent-600); }

.sheet-form .btn-wpp { margin-top: 4px; padding: .92em; }
.sheet-legal { text-align: center; font-size: .74rem; color: var(--text-3); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.reveal-ready .reveal.in { opacity: 1; transform: none; }
/* O maior texto da primeira dobra deve ser renderizado imediatamente. */
.reveal-ready .hero-h1 { opacity: 1; transform: none; transition: none; }
.reveal[data-d="1"]{transition-delay:.06s}.reveal[data-d="2"]{transition-delay:.12s}.reveal[data-d="3"]{transition-delay:.18s}.reveal[data-d="4"]{transition-delay:.24s}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal { opacity: 1; transform: none; }
  .shop-scroll { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 1100px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px 26px; }
  .timeline::before { display: none; }
  .tl { padding-top: 64px; }
  .tl h3, .tl .tl-support { min-height: 0; }
}
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { order: 1; }
  .hero-scene { order: 2; }
  .scene { max-width: 620px; margin-inline: auto; }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 0 clamp(24px, 6vw, 48px); }
  .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-inner h2 { max-width: 24ch; }
}
@media (max-width: 680px) {
  .nav-budget { display: none; }
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .pf, .pf.lg, .pf.tall, .pf.md { grid-column: 1; grid-row: span 1; aspect-ratio: 3 / 2; }
  .pf-cta { grid-column: 1; min-height: 180px; }
  .pf-cap .arrow { opacity: 1; transform: none; }
  .resource-list { grid-template-columns: 1fr; }
  .resource-list li:nth-child(odd) { border-right: none; }
  .trust-inner ul { grid-template-columns: 1fr; }
  .trust-inner li:nth-child(odd) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .hero-h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .highlights-grid { grid-template-columns: 1fr; }
  .hl { padding: 18px 0; }
  .timeline { grid-template-columns: 1fr; }
  .tl { padding: 56px 0 4px; }
  .tl-n { font-size: 1.75rem; }
  .tl p, .tl .tl-support, .process-note, .resource-list span, .faq-a, .trust-inner li { font-size: .9375rem; }
  .tl-meta > div { grid-template-columns: 88px 1fr; font-size: .9375rem; }
  .resource-list li { min-height: 0; padding-block: 20px; padding-right: 8px; }
  .faq-q { padding-block: 18px; font-size: 1rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .wpp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; padding: 13px; }

  .eyebrow, .hl-k, .tl-n,
  .pf-cta .go, .footer-heading, .footer-col a, .footer-bottom, .sheet-legal,
  .field label, .field .error, .chip { font-size: .9375rem; }
  .section-lead, .hl p, .footer-brand p { font-size: 1rem; }
  .nav { gap: 14px; }
  .brand img { width: clamp(170px, 48vw, 210px); }
  .legal-nav .brand img { width: min(52vw, 190px); }
  .legal-back { font-size: .9375rem; }
}
@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}
