/* ==========================================================================
   WEBFIBER · EMPRESARIAL — folha de estilo
   Paleta premium azul marinho. Variáveis editáveis abaixo.
   ========================================================================== */

:root {
  /* Paleta premium (briefing do dono) */
  --marinho:   #061A40;   /* azul marinho premium — base */
  --petroleo:  #082B5F;   /* azul petróleo escuro */
  --abismo:    #030D22;   /* fundo mais profundo p/ contraste */
  --eletrico:  #0064FF;   /* azul elétrico WebFiber — primária */
  --azul-tec:  #00A3FF;   /* azul claro tecnológico */
  --gelo:      #F5F8FF;   /* branco gelo */
  --cinza:     #AEB8C8;   /* cinza premium */
  --dourado:   #D6B25E;   /* dourado discreto premium */
  --dourado-2: #F0D89A;   /* dourado claro p/ gradiente */
  --verde-wa:  #25D366;
  --verde-wa-2:#1FAD53;

  /* Vidro & bordas */
  --glass:   rgba(255,255,255,.045);
  --glass-2: rgba(255,255,255,.08);
  --stroke:  rgba(174,184,200,.18);
  --stroke-soft: rgba(174,184,200,.1);

  /* Texto */
  --txt: #EAF1FF;
  --txt-dim: rgba(234,241,255,.72);
  --txt-faint: rgba(234,241,255,.64);

  /* Tipografia */
  --f-display: 'Sora', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  /* Ritmo */
  --radius: 20px;
  --radius-sm: 13px;
  --sec-pad: clamp(60px, 8vw, 112px);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--abismo);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Fundo em camada fixa de viewport (sem o jank de background-attachment:fixed no scroll) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 760px at 84% -8%, rgba(0,100,255,.20), transparent 58%),
    radial-gradient(900px 720px at -8% 22%, rgba(0,163,255,.10), transparent 55%),
    linear-gradient(180deg, var(--petroleo) 0%, var(--marinho) 36%, var(--abismo) 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
summary { cursor: pointer; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(860px, 92vw); }
.ico { width: 1.2em; height: 1.2em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }
:focus-visible { outline: 3px solid var(--azul-tec); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--eletrico); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* destaque da palavra: azul SÓLIDO (sem degradê — fica mais limpo/profissional) */
.grad-text { color: var(--azul-tec); }

/* ---------- Aurora global ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora__orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .55; will-change: transform; }
.aurora__orb--a { width: 46vw; height: 46vw; background: rgba(0,100,255,.34); top: -12vw; right: -10vw; animation: drift 28s ease-in-out infinite alternate; }
.aurora__orb--b { width: 34vw; height: 34vw; background: rgba(0,163,255,.16); top: 44%; left: -14vw; animation: drift 34s ease-in-out infinite alternate-reverse; }
.aurora__orb--c { width: 26vw; height: 26vw; background: rgba(214,178,94,.07); bottom: -8vw; right: 10vw; animation: drift 40s ease-in-out infinite alternate; }
.aurora__grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(174,184,200,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,184,200,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(5vw,4vw,0) scale(1.14); } }

/* ---------- Reveal (só esconde quando o JS confirmadamente rodou: .js no <html>) ---------- */
.js [data-rv] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
[data-rv].in { opacity: 1; transform: none; }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-body); font-weight: 700; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.4), box-shadow .25s, background .25s, border-color .25s;
  will-change: transform; text-align: center;
}
.btn:active { transform: scale(.97); }
.btn--wa {
  background: linear-gradient(135deg, var(--verde-wa), var(--verde-wa-2));
  color: #04230F; box-shadow: 0 8px 28px rgba(37,211,102,.32), inset 0 1px 0 rgba(255,255,255,.35);
  position: relative; overflow: hidden;
}
.btn--wa::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%); transform: translateX(-130%); transition: transform .7s ease; }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(37,211,102,.46); }
.btn--wa:hover::after { transform: translateX(130%); }
.btn--gold {
  background: linear-gradient(135deg, var(--dourado-2), var(--dourado));
  color: #2A2008; box-shadow: 0 8px 26px rgba(214,178,94,.3), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(214,178,94,.45); }
.btn--ghost {
  background: var(--glass); color: var(--txt); border: 1px solid var(--stroke);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--glass-2); transform: translateY(-3px); border-color: rgba(0,163,255,.5); }
.btn--xl { font-size: clamp(1rem, 1vw + .6rem, 1.14rem); padding: 1.02em 1.85em; }
.btn--lg { font-size: 1.02rem; padding: .92em 1.6em; }
.btn--sm { font-size: .9rem; padding: .68em 1.2em; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background .3s, box-shadow .3s; }
.topbar.is-scrolled {
  background: rgba(6,18,42,.84); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 34px rgba(0,0,0,.4); border-bottom: 1px solid var(--stroke-soft);
}
.topbar__inner { height: var(--header-h); display: flex; align-items: center; gap: 26px; }
.topbar__brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.topbar__brand img { width: 42px; height: auto; filter: drop-shadow(0 2px 12px rgba(0,163,255,.4)); }
.topbar__tag { font-family: var(--f-display); font-weight: 700; font-size: .6rem; letter-spacing: .32em; text-transform: uppercase; color: var(--dourado); padding: .32em .8em; border: 1px solid rgba(214,178,94,.42); border-radius: 999px; }
.topbar__nav { display: flex; gap: 24px; font-size: .94rem; font-weight: 500; color: var(--txt-dim); }
.topbar__nav a { position: relative; padding: 6px 0; transition: color .25s; }
.topbar__nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--azul-tec), var(--eletrico)); border-radius: 2px; transition: width .3s; }
.topbar__nav a:hover { color: var(--txt); }
.topbar__nav a:hover::after { width: 100%; }
.topbar__cta { margin-left: 6px; }

/* Hambúrguer */
.topbar__burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; background: var(--glass); border: 1px solid var(--stroke); border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.topbar__burger span { display: block; width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: transform .3s, opacity .3s; }
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobilenav {
  display: none; flex-direction: column; gap: 4px; padding: 12px 6vw 22px;
  background: rgba(6,18,42,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
}
.mobilenav.open { display: flex; }
.mobilenav a { display: flex; align-items: center; min-height: 44px; padding: 12px 6px; font-weight: 600; color: var(--txt-dim); border-bottom: 1px solid var(--stroke-soft); }
.mobilenav__cta { justify-content: center; }
.mobilenav a:hover { color: var(--txt); }
.mobilenav__cta { margin-top: 14px; border-bottom: 0; color: #04230F; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: min(100svh, 880px); display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 40px) 0 30px; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .85;
  mask-image: linear-gradient(105deg, transparent 0%, rgba(0,0,0,.3) 36%, #000 64%);
  -webkit-mask-image: linear-gradient(105deg, transparent 0%, rgba(0,0,0,.3) 36%, #000 64%); }
.hero__beam { position: absolute; inset: -20% -10% auto auto; width: 70%; height: 120%; pointer-events: none;
  background: conic-gradient(from 210deg at 70% 30%, transparent 0deg, rgba(0,163,255,.1) 40deg, transparent 90deg);
  filter: blur(20px); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; gap: clamp(28px, 5vw, 60px); }

.badge { display: inline-flex; align-items: center; gap: .55em; font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .55em 1.05em; border-radius: 999px; background: rgba(0,163,255,.1); color: #8FD3FF; border: 1px solid rgba(0,163,255,.32); box-shadow: 0 0 24px rgba(0,163,255,.16); }
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--azul-tec); animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; transform: scale(.8); } }

.hero__title { font-family: var(--f-display); font-weight: 800; line-height: 1.04; letter-spacing: -.5px; margin-top: 22px; font-size: clamp(2.1rem, 4.6vw, 4rem); text-shadow: 0 6px 40px rgba(0,0,0,.4); }
.hero__sub { margin-top: 20px; max-width: 56ch; font-size: clamp(1.02rem, 1.2vw, 1.18rem); color: var(--txt-dim); }
.hero__sub strong { color: var(--txt); font-weight: 600; }

.hero__pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero__pills li { font-size: .84rem; font-weight: 600; padding: .5em .95em; border-radius: 999px; background: var(--glass); border: 1px solid var(--stroke); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: var(--txt-dim); }
.hero__pills li:nth-child(3n) { border-color: rgba(214,178,94,.4); color: var(--dourado-2); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero__micro { display: flex; align-items: center; gap: .6em; margin-top: 20px; font-size: .88rem; color: var(--txt-faint); }
.hero__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--verde-wa); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse 2.2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Palco com cards flutuantes */
.hero__stage { position: relative; aspect-ratio: 1; max-width: 480px; margin-inline: auto; width: 100%; }
.hero__core { position: absolute; inset: 0; margin: auto; width: 130px; height: 130px; border-radius: 30px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(0,100,255,.5), rgba(0,163,255,.18)); border: 1px solid rgba(0,163,255,.5);
  box-shadow: 0 24px 70px rgba(0,60,160,.5), inset 0 1px 0 rgba(255,255,255,.3); }
.hero__core-ico { width: 62px; height: 62px; fill: none; stroke: var(--gelo); stroke-width: 1.6; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.hero__core-ring { position: absolute; inset: -34px; border: 1px solid rgba(0,163,255,.25); border-radius: 50%; animation: spin 26s linear infinite; }
.hero__core-ring--2 { inset: -70px; border-color: rgba(214,178,94,.16); border-style: dashed; animation-duration: 40s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.floatcard { position: absolute; display: flex; flex-direction: column; gap: 1px; padding: .7em 1em; border-radius: 14px;
  background: rgba(8,27,63,.78); border: 1px solid var(--stroke); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4); animation: bob 6s ease-in-out infinite; }
.floatcard b { font-family: var(--f-display); font-size: .98rem; font-weight: 700; color: var(--gelo); }
.floatcard i { font-style: normal; font-size: .72rem; color: var(--txt-faint); }
.floatcard--a { top: 4%; left: 0; }
.floatcard--b { top: 16%; right: -4%; animation-delay: -1.2s; }
.floatcard--c { bottom: 24%; left: -6%; animation-delay: -2.4s; }
.floatcard--d { bottom: 2%; right: 2%; animation-delay: -3.6s; }
.floatcard--e { top: 48%; right: -10%; animation-delay: -4.8s; }
@keyframes bob { 50% { transform: translateY(-12px); } }

.hero__scroll { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--stroke); border-radius: 16px; display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--azul-tec); animation: scrolldot 1.7s ease-in-out infinite; }
@keyframes scrolldot { 60% { transform: translateY(12px); opacity: .2; } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee { overflow: hidden; border-block: 1px solid var(--stroke-soft); background: rgba(3,13,34,.5); padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__group { display: flex; align-items: center; }
.marquee__group span { font-family: var(--f-display); font-weight: 700; font-size: .96rem; letter-spacing: .12em; color: var(--txt-dim); padding: 0 22px; white-space: nowrap; }
.marquee__group i { color: var(--dourado); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SEÇÕES (base)
   ========================================================================== */
.section { padding: var(--sec-pad) 0; position: relative; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); }
.kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--azul-tec); padding: .4em 1em; border: 1px solid rgba(0,163,255,.3); border-radius: 999px; margin-bottom: 16px; }
.kicker--gold { color: var(--dourado-2); border-color: rgba(214,178,94,.4); }
.section__head h2 { font-family: var(--f-display); font-weight: 800; line-height: 1.1; letter-spacing: -.5px; font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.section__lead { margin-top: 16px; font-size: clamp(1rem, 1.1vw, 1.1rem); color: var(--txt-dim); }

/* Faixa de confiança */
.section--trust { padding: clamp(40px, 5vw, 64px) 0; }
.trust { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.trust li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 22px 12px; border-radius: var(--radius-sm); background: var(--glass); border: 1px solid var(--stroke); }
.trust .ico { width: 30px; height: 30px; color: var(--azul-tec); margin-bottom: 4px; }
.trust b { font-size: .92rem; font-weight: 700; color: var(--gelo); line-height: 1.25; }
.trust span { font-size: .76rem; color: var(--txt-faint); }

/* Cards de soluções */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 30px 26px; border-radius: var(--radius); background: linear-gradient(160deg, var(--glass-2), var(--glass)); border: 1px solid var(--stroke); transition: transform .3s, border-color .3s, box-shadow .3s; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--azul-tec), var(--eletrico)); opacity: 0; transition: opacity .3s; }
.card:hover { transform: translateY(-6px); border-color: rgba(0,163,255,.4); box-shadow: 0 24px 54px rgba(0,0,0,.42); }
.card:hover::before { opacity: 1; }
.card__ico { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(150deg, rgba(0,100,255,.32), rgba(0,163,255,.12)); border: 1px solid rgba(0,163,255,.34); margin-bottom: 18px; }
.card__ico svg { width: 28px; height: 28px; fill: none; stroke: var(--azul-tec); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; margin-bottom: 9px; }
.card p { font-size: .96rem; color: var(--txt-dim); }

/* Por que */
.section--why .why { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; max-width: 900px; margin-inline: auto; }
.why__list { display: flex; flex-direction: column; gap: 14px; }
.why__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; color: var(--txt); }
.why__list .ico { width: 22px; height: 22px; color: var(--verde-wa); margin-top: 3px; }

/* Feature (Link Dedicado) */
.section--feature { background: linear-gradient(180deg, transparent, rgba(8,27,63,.4), transparent); }
.feature__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 5vw, 64px); }
.feature__lead { margin-top: 16px; font-size: 1.08rem; color: var(--txt-dim); }
.feature__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
.feature__list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 500; }
.feature__list .ico { width: 21px; height: 21px; color: var(--dourado); margin-top: 3px; }
.feature__note { margin-top: 14px; font-size: .86rem; color: var(--txt-faint); }
.feature__art { display: grid; place-items: center; }
.dedi { width: 100%; max-width: 420px; padding: 38px 28px; border-radius: var(--radius); background: rgba(8,27,63,.5); border: 1px solid var(--stroke); display: flex; flex-direction: column; align-items: center; gap: 0; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.dedi__node { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 26px; border-radius: 16px; background: linear-gradient(150deg, rgba(0,100,255,.28), rgba(0,163,255,.1)); border: 1px solid rgba(0,163,255,.36); width: 100%; }
.dedi__node svg { width: 38px; height: 38px; fill: none; stroke: var(--gelo); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dedi__node span { font-family: var(--f-display); font-weight: 600; font-size: .98rem; }
.dedi__node--cloud { background: linear-gradient(150deg, rgba(214,178,94,.22), rgba(214,178,94,.06)); border-color: rgba(214,178,94,.4); }
.dedi__line { width: 3px; height: 56px; background: linear-gradient(180deg, var(--azul-tec), var(--dourado)); position: relative; }
.dedi__line::after { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--gelo); box-shadow: 0 0 12px var(--azul-tec); animation: flow 2.2s linear infinite; }
@keyframes flow { from { top: -4px; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } to { top: 52px; opacity: 0; } }

/* IP Fixo minicards */
.minicards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.minicard { padding: 24px 22px; border-radius: var(--radius-sm); background: var(--glass); border: 1px solid var(--stroke); transition: transform .3s, border-color .3s; }
.minicard:hover { transform: translateY(-5px); border-color: rgba(0,163,255,.4); }
.minicard .ico { width: 32px; height: 32px; color: var(--azul-tec); margin-bottom: 12px; }
.minicard h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.04rem; margin-bottom: 6px; }
.minicard p { font-size: .88rem; color: var(--txt-dim); }

/* Tags (para quem) */
.tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 880px; margin-inline: auto; }
.tags li { font-weight: 600; font-size: .96rem; padding: .7em 1.3em; border-radius: 999px; background: linear-gradient(150deg, var(--glass-2), var(--glass)); border: 1px solid var(--stroke); transition: transform .25s, border-color .25s, color .25s; }
.tags li:hover { transform: translateY(-3px); border-color: rgba(0,163,255,.45); color: var(--gelo); }

/* Versus */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; max-width: 940px; margin-inline: auto; }
.versus__col { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--stroke); }
.versus__col h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 18px; }
.versus__col ul { display: flex; flex-direction: column; gap: 12px; }
.versus__col li { display: flex; align-items: flex-start; gap: 11px; font-size: .98rem; color: var(--txt-dim); }
.versus__col--them { background: rgba(255,255,255,.025); }
.versus__col--them .no { color: var(--cinza); font-weight: 700; flex: none; }
.versus__col--us { background: linear-gradient(160deg, rgba(0,100,255,.16), rgba(0,163,255,.05)); border-color: rgba(0,163,255,.4); box-shadow: 0 24px 60px rgba(0,40,120,.3); }
.versus__col--us .ok { color: var(--verde-wa); font-weight: 700; flex: none; }
.versus__col--us li { color: var(--txt); }
.versus__vs { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--abismo); border: 1px solid var(--stroke); color: var(--dourado); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 26px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--stroke); transition: transform .3s, border-color .3s; }
.step:hover { transform: translateY(-5px); border-color: rgba(0,163,255,.4); }
.step__n { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, var(--eletrico), var(--azul-tec)); color: #fff; margin-bottom: 16px; box-shadow: 0 10px 26px rgba(0,100,255,.4); }
.step h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.06rem; margin-bottom: 7px; }
.step p { font-size: .92rem; color: var(--txt-dim); }

/* Cobertura */
.cover { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: clamp(34px, 5vw, 56px); border-radius: var(--radius); background: linear-gradient(150deg, rgba(0,100,255,.18), rgba(8,27,63,.5)); border: 1px solid rgba(0,163,255,.34); box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.cover__copy { max-width: 60ch; }
.cover__copy h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.12; }
.cover__copy p { margin-top: 14px; color: var(--txt-dim); }
.cover .btn { flex: none; }

/* Conteúdo SEO (learn) */
.learn { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.learn__block { padding: 28px 26px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--stroke); }
.learn__block h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.14rem; margin-bottom: 10px; color: var(--gelo); }
.learn__block p { font-size: .96rem; color: var(--txt-dim); }
.learn__block:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* Institucional local */
.local { max-width: 820px; margin-inline: auto; text-align: center; padding: clamp(36px, 5vw, 60px); border-radius: var(--radius); background: linear-gradient(160deg, rgba(214,178,94,.08), rgba(8,27,63,.4)); border: 1px solid rgba(214,178,94,.24); }
.local h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.12; margin-bottom: 18px; }
.local p { color: var(--txt-dim); font-size: 1.04rem; }
.local__pioneer { margin-top: 18px; font-family: var(--f-display); font-weight: 600; color: var(--dourado-2); font-size: 1rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: var(--glass); overflow: hidden; transition: border-color .25s; }
.faq__item[open] { border-color: rgba(0,163,255,.4); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--azul-tec); transition: transform .3s; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; color: var(--txt-dim); font-size: .96rem; }

/* CTA final */
.final { position: relative; padding: clamp(64px, 9vw, 120px) 0; overflow: hidden; }
.final__glow { position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 120%, rgba(0,100,255,.35), transparent 70%); pointer-events: none; }
.final__inner { position: relative; text-align: center; max-width: 760px; margin-inline: auto; }
.final__inner h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; }
.final__hl { color: var(--dourado-2); }
.final__lead { margin-top: 18px; font-size: 1.12rem; color: var(--txt-dim); }
.final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.final__micro { margin-top: 20px; font-size: .9rem; color: var(--txt-faint); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--stroke); background: rgba(3,13,34,.6); padding: clamp(44px, 6vw, 72px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px; }
.footer__brand img { width: 58px; margin-bottom: 16px; }
.footer__brand p { color: var(--txt-dim); font-size: .94rem; max-width: 42ch; }
.footer__col h3 { font-family: var(--f-display); font-weight: 700; font-size: 1rem; margin-bottom: 16px; color: var(--gelo); }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: var(--txt-dim); font-size: .94rem; transition: color .25s; }
.footer__col a:hover { color: var(--azul-tec); }
.footer__base { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--stroke-soft); font-size: .84rem; color: var(--txt-faint); text-align: center; }
.footer__base em { font-style: italic; }

/* ==========================================================================
   FAB + STICKYBAR
   ========================================================================== */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--verde-wa), var(--verde-wa-2)); box-shadow: 0 12px 30px rgba(37,211,102,.5); animation: fabpulse 2.6s ease-in-out infinite; }
.fab svg { width: 30px; height: 30px; fill: #fff; }
@keyframes fabpulse { 50% { transform: scale(1.07); } }

.stickybar { position: fixed; inset: auto 0 0 0; z-index: 55; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); background: rgba(6,18,42,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--stroke); }
.stickybar p { display: flex; flex-direction: column; line-height: 1.15; }
.stickybar b { font-size: .96rem; color: var(--gelo); }
.stickybar span { font-size: .76rem; color: var(--txt-faint); }
.stickybar .btn { flex: none; min-height: 44px; }
main[tabindex="-1"]:focus { outline: none; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
  .trust { grid-template-columns: repeat(3, 1fr); }
  .cards, .minicards, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__stage { max-width: 420px; margin-top: 18px; }
  .feature__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar__nav, .topbar__cta { display: none; }
  .topbar__burger { display: flex; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 26px); }
  .hero__canvas { display: none; }
  /* enxuga a dobra no mobile p/ o CTA principal subir */
  .hero__title { margin-top: 14px; }
  .hero__sub { margin-top: 12px; max-width: 44ch; font-size: .99rem; }
  .hero__pills { margin-top: 14px; }
  .hero__pills li:nth-child(n+5) { display: none; }
  .hero__actions { margin-top: 18px; }
  .hero__micro { margin-top: 12px; }
  .hero__stage { max-width: 320px; aspect-ratio: 1; margin-top: 26px; }
  .floatcard { padding: .55em .8em; }
  .floatcard b { font-size: .86rem; }
  .floatcard i { font-size: .66rem; }
  .floatcard--b { right: 0; }
  .floatcard--c { left: 0; }
  .floatcard--e { right: -4%; top: 52%; }
  .why .why { grid-template-columns: 1fr; }
  .section--why .why { grid-template-columns: 1fr; gap: 14px; }
  .learn { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; }
  .versus__vs { margin: -4px auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cover { flex-direction: column; align-items: flex-start; text-align: left; }
  .cover .btn { width: 100%; }
  .fab { display: none; }
  .stickybar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .cards, .minicards, .steps { grid-template-columns: 1fr; }
  .hero__pills li { font-size: .8rem; }
  .btn--xl { width: 100%; }
  .hero__actions { gap: 10px; }
  .final__actions .btn { width: 100%; }
}

/* ==========================================================================
   ACESSIBILIDADE: reduzir movimento
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-rv] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
