/* =========================================================================
   GuiarTrack — Site Institucional
   GUIAR Consultoria · Diagnóstico de Maturidade Operacional
   Paleta: Azul-marinho #142B43 + Verde esmeralda #1D8B5D
   Tipografia: Montserrat (títulos) + Nunito (corpo)
   ========================================================================= */

/* ----------------------------- Tokens ----------------------------------- */
:root {
  /* Marca */
  --navy-950: #0a1726;
  --navy-900: #0d1f33;
  --navy-800: #142b43;
  --navy-700: #1c3a59;
  --navy-600: #274d72;
  --navy-500: #34618c;

  --emerald-700: #14past;
  --emerald-600: #166f49;
  --emerald-500: #1d8b5d;
  --emerald-400: #25a06d;
  --emerald-300: #4cc28d;
  --emerald-100: #d6f1e4;

  --gold: #f0a93b;
  --rose: #e2574c;

  --bg: #f5f7f9;
  --bg-alt: #ffffff;
  --ink-900: #0f1b29;
  --ink-700: #2a3645;
  --ink-500: #5a6573;
  --ink-400: #828d9b;
  --line: #e4e8ec;

  /* Tipografia */
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(15, 27, 41, .06), 0 1px 2px rgba(15, 27, 41, .04);
  --shadow: 0 12px 30px -12px rgba(15, 27, 41, .18), 0 4px 10px -6px rgba(15, 27, 41, .1);
  --shadow-lg: 0 40px 80px -28px rgba(10, 23, 38, .35);
  --shadow-emerald: 0 18px 40px -16px rgba(29, 139, 93, .5);

  /* Transições */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* fix accidental token */
:root { --emerald-700: #14724a; }

/* ----------------------------- 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);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
}

::selection { background: var(--emerald-500); color: #fff; }

/* ----------------------------- Utilitários ------------------------------ */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--emerald-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--emerald-500); border-radius: 2px;
}
.eyebrow.light { color: var(--emerald-300); }
.eyebrow.center { justify-content: center; }

.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 800; margin: 18px 0 18px;
}
.section-head p { font-size: 1.15rem; color: var(--ink-500); }
.section-head.center p { margin-inline: auto; }

.em { color: var(--emerald-500); }
.text-grad {
  background: linear-gradient(100deg, var(--emerald-400), var(--emerald-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Botões */
.btn {
  --pad-y: 15px; --pad-x: 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--emerald-500); color: #fff; box-shadow: var(--shadow-emerald); }
.btn-primary:hover { transform: translateY(-3px); background: var(--emerald-400); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--navy-700); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--emerald-500); color: var(--emerald-600); transform: translateY(-3px); }
.btn-lg { --pad-y: 18px; --pad-x: 36px; font-size: 16px; }

/* ----------------------------- Header ----------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; transition: padding .4s var(--ease), background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header.scrolled {
  background: rgba(13, 31, 51, .82); backdrop-filter: blur(14px) saturate(140%);
  padding: 11px 0; box-shadow: 0 1px 0 rgba(255,255,255,.06), var(--shadow);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: auto; }
.brand-track {
  font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 19px; letter-spacing: -.01em;
}
.brand-track b { color: var(--emerald-300); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: rgba(255,255,255,.82);
  position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--emerald-400); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login {
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: #fff;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-login:hover { color: var(--emerald-300); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px; justify-content: center; }
.burger span { height: 2px; width: 24px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Hero ------------------------------------- */
.hero {
  position: relative; padding: 180px 0 110px;
  background: radial-gradient(120% 120% at 80% -10%, var(--navy-700) 0%, var(--navy-900) 42%, var(--navy-950) 100%);
  color: #fff; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(120% 90% at 75% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 75% 0%, #000 30%, transparent 78%);
}
.hero-glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,139,93,.32), transparent 65%);
  top: -120px; right: -120px; filter: blur(20px); pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  font-family: var(--font-head); color: rgba(255,255,255,.9); margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-400); box-shadow: 0 0 0 4px rgba(37,160,109,.25); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(37,160,109,.25);} 50% { box-shadow: 0 0 0 8px rgba(37,160,109,0);} }

.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 5.2vw, 4.15rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.04; margin-bottom: 24px;
}
.hero h1 .text-grad { background: linear-gradient(100deg, var(--emerald-300), var(--emerald-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.22rem; color: rgba(255,255,255,.78); max-width: 540px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust .stat .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: #fff; line-height: 1; }
.hero-trust .stat .lbl { font-size: 12.5px; color: rgba(255,255,255,.6); letter-spacing: .04em; margin-top: 5px; }
.hero-trust .divider { width: 1px; height: 38px; background: rgba(255,255,255,.16); }

/* anim de entrada */
.reveal-hero { opacity: 0; transform: translateY(22px); animation: heroUp .9s var(--ease) forwards; }
.reveal-hero.d1 { animation-delay: .05s; }
.reveal-hero.d2 { animation-delay: .15s; }
.reveal-hero.d3 { animation-delay: .25s; }
.reveal-hero.d4 { animation-delay: .35s; }
.reveal-hero.d5 { animation-delay: .45s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* Radar visual */
.hero-visual { position: relative; display: grid; place-items: center; }
.radar-card {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 1;
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg);
  backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); padding: 26px;
  display: grid; place-items: center;
}
.radar-card .radar-head {
  position: absolute; top: 22px; left: 24px; right: 24px; display: flex; align-items: center; justify-content: space-between;
}
.radar-card .radar-head span { font-family: var(--font-head); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.radar-score { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--emerald-300); display: flex; align-items: center; gap: 6px; }
.radar-score::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-400); }
svg.radar { width: 100%; height: auto; overflow: visible; }
.radar .axis { stroke: rgba(255,255,255,.14); stroke-width: 1; }
.radar .ring { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 1; }
.radar .area { fill: rgba(29,139,93,.28); stroke: var(--emerald-400); stroke-width: 2.5; stroke-linejoin: round;
  filter: drop-shadow(0 6px 16px rgba(29,139,93,.45)); }
.radar .pt { fill: #fff; stroke: var(--emerald-400); stroke-width: 2.5; }
.radar .lbl { fill: rgba(255,255,255,.78); font-family: var(--font-head); font-size: 11px; font-weight: 600; }
#radarDraw { transform: scale(0); transform-box: view-box; transform-origin: 0 0; opacity: 0;
  transition: transform 1.15s var(--ease), opacity .7s ease; }
#radarDraw.drawn { transform: scale(1); opacity: 1; }

.radar-float {
  position: absolute; background: #fff; color: var(--ink-900); border-radius: 14px;
  padding: 13px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
}
.radar-float .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.radar-float .t { font-size: 11px; color: var(--ink-500); font-weight: 600; letter-spacing: .02em; }
.radar-float .v { font-size: 17px; font-weight: 800; line-height: 1.1; }
.radar-float.f1 { top: 8%; left: -8%; animation: floaty 5s ease-in-out infinite; }
.radar-float.f2 { bottom: 11%; right: -7%; animation: floaty 6s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ----------------------------- Logos / faixa ---------------------------- */
.trustbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; align-items: center; gap: 30px; padding: 26px 0; flex-wrap: wrap; justify-content: center; }
.trustbar p { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.trustbar .pills { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trustbar .pill { font-family: var(--font-head); font-weight: 700; color: var(--navy-700); font-size: 15px; padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px; }

/* ----------------------------- Problema --------------------------------- */
.problem { background: var(--bg-alt); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pain-list { display: grid; gap: 16px; }
.pain {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s;
}
.pain:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.pain .x { flex: none; width: 38px; height: 38px; border-radius: 11px; background: #fdecea; color: var(--rose); display: grid; place-items: center; }
.pain h4 { font-size: 16px; margin-bottom: 3px; }
.pain p { font-size: 14.5px; color: var(--ink-500); margin: 0; }
.solve { position: relative; padding: 40px; border-radius: var(--radius-lg); color: #fff;
  background: radial-gradient(120% 120% at 0% 0%, var(--navy-700), var(--navy-900)); box-shadow: var(--shadow-lg); }
.solve .eyebrow { color: var(--emerald-300); }
.solve h3 { color: #fff; font-size: 1.7rem; margin: 14px 0 14px; }
.solve p { color: rgba(255,255,255,.8); margin-bottom: 26px; }
.solve ul { display: grid; gap: 14px; }
.solve li { display: flex; gap: 12px; align-items: center; font-weight: 600; font-family: var(--font-head); font-size: 15px; }
.solve li svg { flex: none; width: 22px; height: 22px; color: var(--emerald-300); }

/* ----------------------------- Métricas grandes ------------------------- */
.bignum-strip { background: var(--navy-900); color: #fff; padding: 0; }
.bignum-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.bignum { padding: 48px 28px; text-align: center; border-left: 1px solid rgba(255,255,255,.08); }
.bignum:first-child { border-left: none; }
.bignum .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; line-height: 1; }
.bignum .n .suf { color: var(--emerald-400); }
.bignum .l { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.62); }

/* ----------------------------- Módulos ---------------------------------- */
.modules { background: var(--bg); }
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.module-card {
  position: relative; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.module-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-300)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.module-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.module-card:hover::before { transform: scaleX(1); }
.module-card .ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: var(--emerald-300); box-shadow: var(--shadow-sm); }
.module-card:hover .ic { background: linear-gradient(150deg, var(--emerald-500), var(--emerald-600)); color: #fff; }
.module-card .ic svg { width: 26px; height: 26px; }
.module-card h3 { font-size: 1.3rem; margin-bottom: 9px; display: flex; align-items: center; gap: 10px; }
.module-card .count { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--emerald-600); background: var(--emerald-100); padding: 3px 10px; border-radius: 999px; }
.module-card p { font-size: 15px; color: var(--ink-500); margin-bottom: 18px; }
.module-card .tags { display: flex; flex-wrap: wrap; gap: 7px; }
.module-card .tag { font-size: 12px; font-weight: 600; color: var(--ink-500); background: var(--bg); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; }

/* ----------------------------- Escala de maturidade --------------------- */
.maturity { background: var(--bg-alt); }
.ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 12px; }
.rung {
  position: relative; border-radius: var(--radius); padding: 26px 20px 24px; color: #fff; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 230px;
  transition: transform .4s var(--ease);
}
.rung:hover { transform: translateY(-6px); }
.rung .lvl { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .12em; opacity: .85; }
.rung h4 { color: #fff; font-size: 1.18rem; margin: 8px 0 8px; }
.rung p { font-size: 13.5px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.5; }
.rung .bar { position: absolute; top: 20px; left: 20px; display: flex; gap: 4px; }
.rung .bar i { width: 16px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.3); }
.rung .bar i.on { background: #fff; }
.rung.r1 { background: linear-gradient(160deg, #b3403a, #8f2f2a); }
.rung.r2 { background: linear-gradient(160deg, #d97b2b, #b25f1d); }
.rung.r3 { background: linear-gradient(160deg, #d9a93b, #b5871f); }
.rung.r4 { background: linear-gradient(160deg, #2f9e6b, #1d8b5d); }
.rung.r5 { background: linear-gradient(160deg, #16795a, var(--navy-800)); }

/* ----------------------------- Como funciona ---------------------------- */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .num {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 20px; display: grid; place-items: center;
  background: var(--bg-alt); border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
}
.step .num span { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy-800); }
.step .num::after { counter-increment: step; }
.step:hover .num { border-color: var(--emerald-400); }
.step .tag { position: absolute; top: -8px; right: calc(50% - 56px); background: var(--emerald-500); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 11px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; }
.step h4 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--ink-500); padding: 0 6px; }

/* ----------------------------- Entregáveis ------------------------------ */
.deliver { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.deliver .hero-grid-bg { opacity: .35; }
.deliver .section-head h2 { color: #fff; }
.deliver .section-head p { color: rgba(255,255,255,.72); }
.deliver-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.dcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: transform .4s var(--ease), background .4s; }
.dcard:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.dcard .ic { width: 48px; height: 48px; border-radius: 13px; background: rgba(29,139,93,.18); color: var(--emerald-300); display: grid; place-items: center; margin-bottom: 18px; }
.dcard .ic svg { width: 24px; height: 24px; }
.dcard h4 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.dcard p { color: rgba(255,255,255,.7); font-size: 14.5px; margin: 0; }
.dcard.wide { grid-column: span 6; }
.dcard.col { grid-column: span 3; }
@media (max-width: 900px){ .dcard.wide, .dcard.col { grid-column: span 12; } }

/* ----------------------------- Ecossistema ------------------------------ */
.ecosystem { background: var(--bg-alt); }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eco-orbit { position: relative; aspect-ratio: 1; max-width: 440px; margin-inline: auto; display: grid; place-items: center; }
.eco-orbit .ring { position: absolute; border: 1px dashed var(--line); border-radius: 50%; }
.eco-orbit .ring.r1 { inset: 18%; } .eco-orbit .ring.r2 { inset: 0; }
.eco-core { width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(120% 120% at 30% 20%, var(--navy-700), var(--navy-900)); color: #fff; box-shadow: var(--shadow-lg); z-index: 2; }
.eco-core b { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.eco-core small { color: var(--emerald-300); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.eco-node { position: absolute; background: var(--bg-alt); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 14px; padding: 12px 16px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy-800); display: flex; align-items: center; gap: 9px; }
.eco-node .d { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald-500); }
.eco-node.active { background: var(--emerald-500); color: #fff; border-color: var(--emerald-500); }
.eco-node.active .d { background: #fff; }
.eco-node.n1 { top: 2%; left: 50%; transform: translateX(-50%); }
.eco-node.n2 { top: 50%; right: -6%; transform: translateY(-50%); }
.eco-node.n3 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.eco-node.n4 { top: 50%; left: -6%; transform: translateY(-50%); }
.eco-list { display: grid; gap: 18px; margin-top: 26px; }
.eco-item { display: flex; gap: 16px; align-items: flex-start; }
.eco-item .b { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); }
.eco-item.is-track .b { background: linear-gradient(150deg, var(--emerald-500), var(--emerald-600)); }
.eco-item h4 { font-size: 1.05rem; margin-bottom: 2px; }
.eco-item p { font-size: 14.5px; color: var(--ink-500); margin: 0; }

/* ----------------------------- Resultados / depoimento ------------------ */
.results { background: var(--bg); }
.quote-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.quote {
  position: relative; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 48px 44px; box-shadow: var(--shadow); }
.quote .mark { font-family: var(--font-head); font-weight: 800; font-size: 5rem; line-height: .6; color: var(--emerald-100); position: absolute; top: 30px; left: 32px; }
.quote blockquote { position: relative; font-size: 1.45rem; font-weight: 600; color: var(--ink-900); font-family: var(--font-head); letter-spacing: -.01em; line-height: 1.4; margin: 26px 0 28px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .who .av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(150deg, var(--navy-700), var(--emerald-600)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; }
.quote .who b { display: block; font-family: var(--font-head); }
.quote .who span { font-size: 14px; color: var(--ink-500); }
.result-stats { display: grid; gap: 18px; }
.rstat { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; display: flex; align-items: center; gap: 20px; transition: transform .35s var(--ease), box-shadow .35s; }
.rstat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.rstat .n { font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; color: var(--emerald-600); line-height: 1; min-width: 96px; }
.rstat p { margin: 0; font-size: 14.5px; color: var(--ink-500); }

/* ----------------------------- CTA / Contato ---------------------------- */
.cta { background: var(--bg-alt); }
.cta-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px);
  background: radial-gradient(130% 130% at 85% 0%, var(--navy-700), var(--navy-950)); color: #fff;
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.cta-card .hero-grid-bg { opacity: .4; }
.cta-info { position: relative; z-index: 2; }
.cta-info h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; margin: 16px 0 16px; }
.cta-info p { color: rgba(255,255,255,.78); margin-bottom: 28px; }
.cta-info .checks { display: grid; gap: 12px; }
.cta-info .checks li { display: flex; gap: 11px; align-items: center; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.cta-info .checks svg { color: var(--emerald-300); width: 20px; height: 20px; flex: none; }

.form { position: relative; z-index: 2; background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.form h3 { color: var(--ink-900); font-size: 1.3rem; margin-bottom: 6px; }
.form > p { color: var(--ink-500); font-size: 14px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--ink-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink-900);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald-500); background: #fff; box-shadow: 0 0 0 4px rgba(29,139,93,.12); }
.field textarea { resize: vertical; min-height: 92px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; margin-top: 6px; }
.form .note { font-size: 12px; color: var(--ink-400); text-align: center; margin-top: 14px; }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.form-msg.ok { display: block; background: var(--emerald-100); color: var(--emerald-700); }
.form-msg.err { display: block; background: #fdecea; color: var(--rose); }

/* ----------------------------- Footer ----------------------------------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,.66); padding: 76px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand img { height: 38px; }
.footer-about p { margin: 20px 0; max-width: 320px; font-size: 14.5px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #fff; transition: background .3s, transform .3s; }
.footer-social a:hover { background: var(--emerald-500); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer h5 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--emerald-300); padding-left: 5px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 13.5px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: #fff; }

/* ----------------------------- Reveal on scroll ------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; } .reveal.d6 { transition-delay: .48s; }

/* ----------------------------- Responsivo ------------------------------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .problem-grid, .eco-grid, .quote-wrap, .cta-card { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
  .ladder { grid-template-columns: repeat(2, 1fr); }
  .bignum-strip .container { grid-template-columns: repeat(2, 1fr); }
  .bignum:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .bignum:nth-child(odd) { border-left: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-login { display: none; }
  .burger { display: flex; }
  .nav.mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900); padding: 16px 20px 24px; box-shadow: var(--shadow-lg); border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav.mobile-open .nav-links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav.mobile-open .nav-login { display: inline-flex; padding: 14px 0 4px; }
  .header .nav { position: static; }
  .modules-grid, .ladder { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .hero-trust .divider { display: none; }
  .form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-about { grid-column: 1 / -1; }
  .radar-float { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; }
  #radarDraw { transform: scale(1) !important; opacity: 1 !important; }
}
