/* ==========================================================================
   Método SP5 — LP v2 (linguagem Nexus re-skinada na marca SP5)
   "Prata & Esmeralda sobre Obsidiana" · padrões: aura/Nexus
   ========================================================================== */

:root {
  /* Superfícies */
  --bg:           #08090c;
  --bg-2:         #0b0d10;
  --surface:      #101319;
  --surface-2:    #161a21;
  --border:       rgba(206, 214, 220, 0.10);
  --border-strong:rgba(206, 214, 220, 0.18);

  /* Verde-esmeralda (acento de ação) + floresta */
  /* Verde OFICIAL da marca (amostrado de espacoanagil.com.br) */
  --green:        #25b739;   /* grama vivo — botão "Agende" do site */
  --green-bright: #3ac94e;   /* pop pontual (ROI, ping, ✓) */
  --green-glow:   rgba(37, 183, 57, 0.28);
  --forest:       #2d5334;   /* floresta — logo, títulos e acentos da marca */
  --sage:         #6e8c6e;   /* sálvia secundária */
  --mint:         #d0e0cf;   /* menta clara (tints) */

  /* Prata / metálico (display + estrutura) */
  --silver-light: #f3f5f6;
  --silver:       #c4cbd0;
  --silver-mid:   #9aa3a9;
  --silver-dark:  #5f676d;
  --grad-silver:   linear-gradient(180deg,#ffffff 0%,#e0e5e8 24%,#a8b0b6 50%,#ccd3d7 64%,#f1f4f5 82%,#b3bbc0 100%);
  --grad-silver-h: linear-gradient(110deg,#f5f7f8 0%,#bfc6cc 42%,#eef1f3 60%,#a9b1b7 100%);
  --grad-chrome:   linear-gradient(135deg,#eaedef 0%,#b5bcc2 45%,#dde2e5 68%,#a6aeb4 100%);

  /* Texto */
  --text:       #edf0f2;
  --text-2:     #d3d8db;
  --text-dim:   #aab2b8;
  --text-faint: #828a90;

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mouse-x: 0px;
  --mouse-y: 0px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); font-weight: 300; line-height: 1.6;
  color: var(--text); background: var(--bg); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: #ffffff; color: #000; }

/* ---------- Film grain (Nexus) ---------- */
.bg-grain::after {
  content: ""; position: fixed; top: -100%; left: -100%; height: 300%; width: 300%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none; z-index: 9998; animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 10%{transform:translate(-5%,-10%)} 20%{transform:translate(-15%,5%)}
  30%{transform:translate(7%,-25%)} 40%{transform:translate(-5%,25%)} 50%{transform:translate(-15%,10%)}
  60%{transform:translate(15%,0)} 70%{transform:translate(0,15%)} 80%{transform:translate(3%,35%)} 90%{transform:translate(-10%,10%)}
}

/* ---------- Aurora blobs (drift sutil) ---------- */
.bg-aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; will-change: transform; }
.blob--1 { width: 56vw; height: 56vw; top: -20vw; left: -14vw;
  background: radial-gradient(circle, rgba(190,200,208,0.10), transparent 66%); animation: drift1 32s ease-in-out infinite; }
.blob--2 { width: 52vw; height: 52vw; top: 40%; right: -20vw;
  background: radial-gradient(circle, rgba(7,179,54,0.09), transparent 64%); animation: drift2 38s ease-in-out infinite; }
.blob--3 { width: 44vw; height: 44vw; bottom: -14vw; left: 22%;
  background: radial-gradient(circle, rgba(165,176,186,0.06), transparent 70%); animation: drift3 34s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4vw,3vh) scale(1.08)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5vw,-3vh) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(3vw,-4vh) scale(0.94)} }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; z-index: 1; }
.section--tint { background: rgba(20,24,30,0.20); border-block: 1px solid var(--border); }

.section__head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .sub { margin-top: 16px; font-size: clamp(0.95rem, 1.2vw, 1.05rem); color: var(--text-2); max-width: 600px; line-height: 1.6; text-wrap: pretty; }
.section__head--center .sub { margin-inline: auto; }

/* ---------- Kicker (mono label — assinatura Nexus) ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver-mid);
}
.kicker .num { color: var(--silver-dark); }

/* ---------- Headings (Sora + prata metálico) ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; }
.h-display {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 600;
  background: var(--grad-silver-h); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.h-display .accent { -webkit-text-fill-color: var(--silver-light); color: var(--silver-light); }
h3.card-title { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--silver-light); font-weight: 600; }

.lead { font-size: clamp(1rem, 1.3vw, 1.1rem); color: var(--text-2); font-weight: 300; line-height: 1.6; text-wrap: pretty; }
.lead strong { color: var(--text); font-weight: 500; }
.muted { color: var(--text-dim); }
.note {
  margin: clamp(40px,6vw,56px) auto 0; text-align: center; max-width: 660px;
  font-size: clamp(1rem, 1.5vw, 1.18rem); font-weight: 300; color: var(--text-2); line-height: 1.55; text-wrap: pretty;
}
.note strong { color: var(--text); font-weight: 600; }
.serif-glow { font-style: italic; }

/* ---------- Glass / spotlight / gradient-border (Nexus) ---------- */
.glass-panel {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.card:hover .pillar__icon, .card:hover .card__icon { border-color: var(--silver-dark); color: #fff; }
.spotlight-card { position: relative; overflow: hidden; background: rgba(20,24,30,0.45); border: 1px solid var(--border-strong); }
.spotlight-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.07), transparent 40%);
}
.spotlight-card:hover::before { opacity: 1; }
[style*="--border-gradient"]::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--border-radius-before, inherit);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; background: var(--border-gradient); pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; cursor: pointer;
  border: 1px solid transparent; border-radius: 100px; padding: 14px 28px; position: relative;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(135deg, var(--green), var(--forest)); color: #ffffff; font-weight: 600; box-shadow: 0 10px 30px -10px var(--green-glow); }
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 42px -12px var(--green-glow); }
.btn--white { background: var(--silver-light); color: #0b0d10; font-weight: 600; }
.btn--white:hover { transform: translateY(-3px) scale(1.02); background: #fff; }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--silver-dark); transform: translateY(-3px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
  border-bottom: 1px solid var(--border-strong); padding-bottom: 3px; transition: color .3s, border-color .3s;
}
.text-link:hover { color: var(--text); border-bottom-color: var(--green); }

/* ---------- Pills / tags / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 8px 16px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-2);
}
.ping { position: relative; display: inline-flex; height: 8px; width: 8px; }
.ping span:first-child { position: absolute; inset: 0; border-radius: 50%; background: var(--green-bright); opacity: .75; animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
.ping span:last-child { position: relative; border-radius: 50%; height: 8px; width: 8px; background: var(--green); }
@keyframes ping { 75%,100% { transform: scale(2.2); opacity: 0; } }
.tag {
  display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); font-size: 0.78rem; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: 0.02em;
}

/* ---------- Generic card ---------- */
.card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--border); padding: clamp(24px,3vw,34px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-5px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 50px -28px rgba(0,0,0,0.8); }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  width: 48px; height: 48px;
  background: rgba(206,214,220,0.08); border: 1px solid var(--border); color: var(--silver-light); margin-bottom: 20px;
  transition: color .3s, border-color .3s, background .3s;
}
.card__icon { width: 48px; height: 48px; }
.card__icon iconify-icon { font-size: 23px; }
.card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.55; text-wrap: pretty; }
.card-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* ==========================================================================
   HEADER / NAV (top horizontal — glass)
   ========================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding: 16px; transition: padding .4s var(--ease); }
.nav-shell {
  display: flex; align-items: center; gap: 4px; padding: 8px; border-radius: 100px;
  max-width: 100%; overflow-x: auto; scrollbar-width: none;
}
.nav-shell::-webkit-scrollbar { display: none; }
.brand { display: inline-flex; align-items: center; gap: 4px; padding: 6px 14px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; color: var(--silver-light); white-space: nowrap; }
.brand .accent { color: var(--green-bright); }
.nav-div { width: 1px; height: 16px; background: var(--border-strong); margin-inline: 6px; }
.nav-shell a.nav-link { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); padding: 8px 12px; border-radius: 100px; white-space: nowrap; transition: color .3s, background .3s; }
.nav-shell a.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { margin-left: 4px; }

/* ==========================================================================
   HERO (portas + canvas de partículas — Nexus)
   ========================================================================== */
.sticky-wrapper { position: relative; height: 250vh; background: var(--bg); }
.sticky-content { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.45; }

.hero-bg { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.30; mix-blend-mode: screen; filter: grayscale(0.3); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent, var(--bg)); }

.doors { position: absolute; inset: 0; z-index: 20; display: flex; align-items: center; justify-content: center; pointer-events: none; overflow: hidden; }
.door { position: absolute; height: 100%; display: flex; flex-direction: column; justify-content: center; width: 60vw; background: var(--bg); z-index: 30; will-change: transform; }
.door--left { right: 50%; align-items: flex-end; padding-right: clamp(8px,2vw,32px); border-right: 1px solid var(--border); }
.door--right { left: 50%; align-items: flex-start; padding-left: clamp(8px,2vw,32px); border-left: 1px solid var(--border); }
.door h1 {
  font-family: var(--font-display); font-weight: 700; font-size: 11vw; line-height: 0.92; letter-spacing: -0.04em;
  white-space: nowrap; mix-blend-mode: exclusion; color: #fff;
}
.door--right h1 { font-weight: 300; background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; mix-blend-mode: normal; }
.door .door-label { margin-top: 14px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver-mid); }
.door--left .door-label { text-align: right; }

.hero-content { position: relative; z-index: 20; text-align: center; padding-inline: 24px; opacity: 0; transform: translateY(40px); transition: opacity .3s; }
.hero-content .hero-badge { margin-bottom: 30px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.0; margin-bottom: 24px;
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-title .accent { -webkit-text-fill-color: var(--silver-light); color: var(--silver-light); }
.hero-lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--text-2); max-width: 560px; margin: 0 auto 34px; line-height: 1.6; text-wrap: pretty; }
.hero-lead strong { color: var(--text); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: center; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--border); }
.hero-trust li { display: flex; flex-direction: column; gap: 3px; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
.hero-trust span { font-size: 0.78rem; color: var(--text-faint); font-family: var(--font-mono); letter-spacing: 0.05em; }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: opacity .3s; }
.scroll-hint span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver-mid); }
.scroll-hint iconify-icon { color: var(--silver-mid); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ==========================================================================
   GRIDS / sections
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }
.span-6 { grid-column: span 6; } .span-4 { grid-column: span 4; } .span-3 { grid-column: span 3; }

/* Stat highlight (prata por padrão) */
.stat-big {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; letter-spacing: -0.04em;
  background: var(--grad-silver-h); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.roi-banner .stat-big { background: none; -webkit-text-fill-color: var(--green-bright); color: var(--green-bright); }

/* Problem chips grid */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.chip { display: flex; align-items: center; gap: 11px; padding: 14px 18px; border-radius: 13px; background: var(--surface); border: 1px solid var(--border); font-size: 0.88rem; color: var(--text-2); transition: border-color .3s, transform .3s; }
.chip:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.chip iconify-icon { color: var(--silver-mid); font-size: 18px; flex: none; }

/* 5 Pilares */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { position: relative; }
.pillar__n { font-family: var(--font-mono); font-size: 0.72rem; color: var(--silver-mid); letter-spacing: 0.2em; }
.pillar__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(206,214,220,0.08); border: 1px solid var(--border); color: var(--silver-light); margin: 14px 0 16px; transition: color .3s, border-color .3s, background .3s; }
.pillar__icon iconify-icon { font-size: 22px; }

/* ROI banner */
.roi-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; max-width: 820px; margin: 36px auto 0; padding: 32px 40px; border-radius: var(--radius-lg); }
.roi-banner .stat-big { flex: none; }
.roi-banner p { color: var(--text); font-size: 0.98rem; max-width: 360px; line-height: 1.5; }
.roi-banner cite { display: block; margin-top: 8px; font-style: normal; font-size: 0.8rem; color: var(--text-faint); font-family: var(--font-mono); }

/* Timeline */
.timeline { position: relative; max-width: 840px; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 18px; bottom: 18px; width: 1px; background: linear-gradient(var(--border-strong), transparent); }
.timeline li { display: flex; gap: 22px; padding: 14px 0; align-items: flex-start; }
.timeline .dot { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border-strong); color: var(--silver-mid); font-family: var(--font-mono); font-size: 0.8rem; position: relative; z-index: 1; transition: color .3s, border-color .3s, background .3s; }
.timeline li:hover .dot { color: var(--silver-light); border-color: var(--silver-dark); background: var(--surface-2); }
.timeline h4 { font-size: 0.98rem; color: var(--text); margin-bottom: 2px; }
.timeline p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; text-wrap: pretty; }

/* Indicators */
.indicator { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.indicator:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.indicator:hover iconify-icon { color: var(--silver-light); }
.indicator iconify-icon { color: var(--silver-mid); font-size: 20px; transition: color .3s; }
.indicator span { font-size: 0.88rem; color: var(--text-2); }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; color: var(--text-2); font-size: clamp(0.9rem,1.1vw,0.98rem); line-height: 1.5; }
.check-list li::before { content: ''; flex: none; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: rgba(37,183,57,0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233ac94e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* Offer cards (Soluções) */
.offer { display: flex; flex-direction: column; }
.offer .price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.offer .badge-mono { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-mid); }
.offer ul { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.offer ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-dim); font-size: 0.95rem; }
.offer ul li iconify-icon { color: var(--green-bright); font-size: 16px; margin-top: 3px; flex: none; }
.offer--feature { border-color: rgba(7,179,54,0.35); }

/* Founder / authority */
.founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); }
.founder__media { position: relative; min-height: 320px; }
.founder__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder__body { padding: clamp(28px,4vw,44px); }
.founder__body h3 { font-size: clamp(1.5rem,2.6vw,2rem); color: var(--silver-light); font-weight: 600; }
.founder__role { color: var(--silver-mid); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em; margin: 8px 0 24px; }
.creds { display: flex; flex-direction: column; gap: 14px; }
.creds li { display: flex; gap: 14px; color: var(--text-dim); font-size: 0.98rem; line-height: 1.4; }
.creds li span { flex: none; min-width: 56px; color: var(--silver-light); font-family: var(--font-display); font-weight: 600; border-right: 1px solid var(--border-strong); padding-right: 14px; }

.asset { margin-top: clamp(40px,6vw,64px); }
.asset__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.asset__photo img { width: 100%; aspect-ratio: 16/8; object-fit: cover; object-position: center 28%; }
.asset__badges { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-wrap: wrap; gap: 16px; padding: 24px; background: linear-gradient(transparent, rgba(8,9,12,0.92)); }
.asset__badges strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--silver-light); font-weight: 600; }
.asset__badges li { font-size: 0.88rem; color: var(--text-dim); display: flex; align-items: baseline; gap: 8px; }
.asset__note { text-align: center; max-width: 720px; margin: 24px auto 0; color: var(--text-2); font-size: clamp(0.95rem,1.2vw,1.05rem); line-height: 1.6; text-wrap: pretty; }
.asset__note strong { color: var(--text); font-weight: 600; }
.asset__note em { color: var(--silver-light); font-style: normal; font-weight: 500; }

/* ---------- CTA / form ---------- */
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cta__text h2 { margin: 14px 0 20px; }
.cta__text .h-display { background: none; -webkit-text-fill-color: var(--silver-light); color: var(--silver-light); }
.contact-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-list a { color: var(--text-dim); font-size: 0.98rem; font-family: var(--font-mono); letter-spacing: 0.02em; transition: color .3s, padding .3s; }
.contact-list a:hover { color: var(--green-bright); padding-left: 5px; }

.cta-form { display: flex; flex-direction: column; gap: 18px; border-radius: var(--radius-lg); padding: clamp(28px,4vw,40px); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver-light); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--text); font-weight: 300;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong); border-radius: 12px; padding: 13px 16px; width: 100%;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: rgba(7,179,54,0.05); box-shadow: 0 0 0 3px rgba(7,179,54,0.12); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23aab2b8' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field option { background: var(--surface); color: var(--text); }
.field input.invalid, .field textarea.invalid { border-color: #e06464; box-shadow: 0 0 0 3px rgba(224,100,100,0.12); }
.form-hint { font-size: 0.8rem; color: var(--text-faint); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; position: relative; z-index: 1; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer__copy { color: var(--text-faint); font-size: 0.82rem; font-family: var(--font-mono); letter-spacing: 0.03em; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 10px 30px -8px rgba(18,140,126,0.6); transition: transform .4s var(--ease); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 24px); background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text); padding: 14px 24px; border-radius: 100px; font-size: 0.9rem; z-index: 300; opacity: 0; visibility: hidden; transition: .4s var(--ease); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Reveals (Nexus) ---------- */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.scroll-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Polimento premium + animações ---------- */
/* Borda em gradiente sutil nos cards "chapados" (sem --border-gradient inline) */
.card:not([style*="--border-gradient"]):not(.spotlight-card)::before {
  content:""; position:absolute; inset:0; padding:1px; border-radius:inherit; z-index:1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  background: linear-gradient(150deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02) 45%, rgba(255,255,255,0.06));
  pointer-events:none; opacity:.7; transition: opacity .4s var(--ease);
}
.card:not([style*="--border-gradient"]):not(.spotlight-card):hover::before { opacity: 1; }
.chip { box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }

/* Timeline desenhando ao rolar */
.timeline::before { transform: scaleY(0); transform-origin: top; transition: transform 1.3s var(--ease) .15s; }
.timeline.is-visible::before { transform: scaleY(1); }

/* Stagger de entrada nos grids */
.js .stagger.scroll-reveal { opacity: 1; transform: none; }
.js .stagger.scroll-reveal > * { opacity: 0; transform: translateY(22px); }
.js .stagger.scroll-reveal.is-visible > * { animation: revealUp .7s var(--ease) forwards; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
.stagger.is-visible > *:nth-child(1){animation-delay:.04s} .stagger.is-visible > *:nth-child(2){animation-delay:.10s}
.stagger.is-visible > *:nth-child(3){animation-delay:.16s} .stagger.is-visible > *:nth-child(4){animation-delay:.22s}
.stagger.is-visible > *:nth-child(5){animation-delay:.28s} .stagger.is-visible > *:nth-child(6){animation-delay:.34s}
.stagger.is-visible > *:nth-child(7){animation-delay:.40s} .stagger.is-visible > *:nth-child(8){animation-delay:.46s}
.stagger.is-visible > *:nth-child(9){animation-delay:.52s} .stagger.is-visible > *:nth-child(10){animation-delay:.58s}

/* Marquee de especialidades */
.marquee-band { border-block: 1px solid var(--border); padding: 22px 0; overflow: hidden; position: relative; z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent); }
.marquee-band .track { display: flex; gap: 44px; width: max-content; animation: marqueeLeft 38s linear infinite; }
.marquee-band:hover .track { animation-play-state: paused; }
.marquee-band .item { font-family: var(--font-display); font-weight: 400; font-size: clamp(0.95rem, 1.2vw, 1.1rem); color: var(--silver-mid); display: inline-flex; align-items: center; gap: 18px; white-space: nowrap; }
.marquee-band .item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); opacity: .7; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 980px) {
  .nav-shell a.nav-link { display: none; }
  .nav-shell { gap: 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-12 .span-6, .grid-12 .span-4, .grid-12 .span-3 { grid-column: span 12; }
  .cta__inner, .founder { grid-template-columns: 1fr; }
  .founder__media { min-height: 280px; }
  .door h1 { font-size: 15vw; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { padding-inline: 18px; }
  .field--row { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .roi-banner { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .scroll-reveal { opacity: 1 !important; transform: none !important; }
}
