/* =========================================================
   GURU DO COMEX — Visual v2 (Royal Blue + Glass + Neon)
   ========================================================= */
:root{
  /* base — deep royal blue */
  --bg-0:        #03133f;
  --bg-1:        #0a2a8c;
  --bg-2:        #1e3fd9;
  --bg-3:        #2853ff;
  --ink:         #0a1947;
  --ink-2:       #0f2670;

  /* surface */
  --paper:       #f4f7ff;
  --paper-2:     #dde6ff;

  /* accents — laranja vibrante substituindo o neon lime */
  --neon:        #c8ff2e;      /* primary CTA accent (é nome legado; agora = laranja) */
  --neon-soft:   #e3ff8a;
  --neon-glow:   rgba(200,255,46,0.55);

  --cyan:        #5fb3ff;
  --pink:        #ec008b;
  --gold:        #ffd43b;
  --red:         #ff6b7a;
  --green:       #36e08d;

  /* glass */
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-bg-2:  rgba(255,255,255,0.10);
  --glass-bd:    rgba(255,255,255,0.14);
  --glass-bd-2:  rgba(255,255,255,0.22);
  --shadow-soft: 0 18px 60px -20px rgba(0,8,40,0.55), 0 4px 16px -4px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 0 1px rgba(200,255,46,0.35), 0 20px 60px -20px rgba(200,255,46,0.18);

  /* type — Plus Jakarta Sans (soft geometric, parecida com 'haphat') */
  --f-disp:  "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  --f-body:  "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --f-mono:  "JetBrains Mono", ui-monospace, monospace;

  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius:  20px;
  --radius-lg: 28px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background: var(--bg-0);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img,svg,video,iframe{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:0; background:none; color:inherit; }
input,textarea{ font:inherit; color:inherit; }
::selection{ background: var(--neon); color: var(--ink); }

/* ===== ATMOSFERA: gradiente puro sem grid ===== */
body::before{
  content:""; position: fixed; inset:-20%;
  z-index:-2;
  background:
    radial-gradient(70% 50% at 15% 20%, rgba(40,83,255,0.55), transparent 60%),
    radial-gradient(50% 40% at 85% 25%, rgba(200,255,46,0.18), transparent 60%),
    radial-gradient(60% 50% at 75% 85%, rgba(200,255,46,0.22), transparent 60%),
    radial-gradient(50% 50% at 20% 90%, rgba(40,83,255,0.4), transparent 60%),
    linear-gradient(165deg, #051a55 0%, #061a55 30%, #0a1a52 60%, #1a0a3a 100%);
  filter: saturate(1.1);
  animation: drift 28s ease-in-out infinite alternate;
}
@keyframes drift{
  from{ transform: translate3d(0,0,0) scale(1); }
  to{ transform: translate3d(-3%, -2%, 0) scale(1.06); }
}
/* sem grid de fundo */

/* ===== UTIL ===== */
.wrap{ max-width:var(--max); margin:0 auto; padding: 0 var(--gutter); position: relative; z-index: 1; }
.disp{ font-family: var(--f-disp); letter-spacing:-0.02em; line-height:0.98; }
.mono{ font-family: var(--f-mono); }

.eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--neon);
  padding: 8px 14px;
  background: rgba(200,255,46,0.08);
  border: 1px solid rgba(200,255,46,0.25);
  border-radius: 999px;
}
.eyebrow::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{ 50%{ opacity: .4; transform: scale(1.4); } }

/* === GLASS card === */
.glass{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.glass::before{
  content:""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.02) 40%, rgba(200,255,46,0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
}

/* === BUTTONS === */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  background: var(--neon);
  color: var(--ink);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s;
  box-shadow: 0 10px 30px -10px var(--neon-glow), inset 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  white-space: nowrap;
}
.btn::after{
  content:""; width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8ff2e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>") center/16px no-repeat;
  margin-left: 4px;
  transition: transform .25s;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px -10px var(--neon-glow); }
.btn:hover::after{ transform: translateX(3px); }
.btn:active{ transform: translateY(0); }

.btn--ghost{
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}
.btn--ghost::after{ background-color: rgba(255,255,255,0.12); }
.btn--ghost:hover{ background: rgba(255,255,255,0.06); }

.btn--pink{
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(236,0,139,0.55);
}
.btn--pink::after{ background-color: #fff; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ec008b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>"); }

.btn--lg{ padding: 18px 26px 18px 30px; font-size: 16px; }
.btn--sm{ padding: 10px 16px 10px 18px; font-size: 13px; }
.btn--sm::after{ width:22px; height:22px; background-size:13px; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: sticky; top: 12px; z-index: 50;
  margin: 12px auto 0;
  max-width: calc(var(--max) - 0px);
  padding: 0 var(--gutter);
}
.nav__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 12px 14px 12px 22px;
  background: rgba(6, 18, 60, 0.65);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
}
.nav__brand{ display:flex; align-items:center; gap:12px; }
.nav__logo{
  width: 44px; height: 44px;
  flex-shrink: 0;
  position: relative;
  display: grid; place-items: center;
}
.nav__logo img{
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(255,255,255,0.18));
}
.nav__logo::after{ display: none; }
.nav__brand-name{
  font-family: var(--f-disp); font-weight: 800;
  font-size: 26px; line-height:1;
  white-space: nowrap;
  letter-spacing: -0.05em;
}
.nav__brand-name small{
  display:block; font-size:10px; color: rgba(255,255,255,0.5);
  margin-top:4px; font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links{ display:flex; gap: 4px; justify-content:center; }
.nav__links a{
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(244,247,255,0.7);
  font-weight: 500;
  transition: color .2s, background .2s;
}
.nav__links a:hover{ color: var(--neon); background: rgba(200,255,46,0.08); }
.nav__cta{ justify-self: end; }
@media (max-width: 920px){
  .nav__inner{ grid-template-columns: auto auto; padding: 10px 12px 10px 18px; }
  .nav__links{ display:none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding: 64px 0 120px;
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px){ .hero__grid{ grid-template-columns: 1fr; gap: 40px; } }

.hero__badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 16px;
  background: rgba(200,255,46,0.10);
  border: 1px solid rgba(200,255,46,0.3);
  border-radius: 999px;
  font-size: 13px;
  color: var(--neon-soft);
  font-weight: 600;
  margin-bottom: 26px;
  white-space: nowrap;
}
.nav__links a{ white-space: nowrap; }
.hero__badge .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__title{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero__title em{
  font-style: normal;
  font-weight: 300;
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.hero__sub{
  font-size: 19px;
  color: rgba(244,247,255,0.72);
  max-width: 560px;
  margin: 26px 0 32px;
  line-height: 1.55;
}
.hero__sub b{ color: var(--paper); font-weight: 600; }

.hero__cta-row{
  display:flex; flex-wrap:wrap; gap:14px;
  align-items:center;
}
.hero__cta-meta{
  font-size: 13px;
  color: rgba(244,247,255,0.6);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid rgba(200,255,46,0.4);
}
.hero__cta-meta b{ color: var(--neon); }

/* hero floating badges */
.hero__floats{ position: relative; }
.hero__stats{
  margin-top: 40px;
  display: flex; flex-wrap: wrap;
  gap: 14px;
}
.hero__stat{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 12px;
  transition: transform .3s, border-color .3s;
}
.hero__stat:hover{ transform: translateY(-3px); border-color: rgba(200,255,46,0.4); }
.hero__stat b{
  font-family: var(--f-disp);
  font-size: 26px;
  color: var(--neon);
  line-height: 1;
  font-weight: 800;
}
.hero__stat span{
  font-size: 12px;
  color: rgba(244,247,255,0.65);
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}

/* HERO VISUAL: apenas o phone, sem mascote ao fundo */
.hero__visual{
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.phone{
  position: relative;
  width: 320px;
  background: #0a1530;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 10px 16px;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.65),
    0 0 0 8px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
  animation: phoneSway 7s ease-in-out infinite;
}
.phone:hover{
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-10px) scale(1.06);
  box-shadow:
    0 60px 100px -30px rgba(40,83,255,0.6),
    0 0 0 8px rgba(255,255,255,0.06),
    0 0 60px -10px rgba(200,255,46,0.35);
}
@keyframes phoneSway{
  0%,100%{ transform: rotate(-3deg) translateY(0); }
  50%{ transform: rotate(-1deg) translateY(-8px); }
}
.phone__notch{
  width: 90px; height: 22px;
  background: #050c20;
  border-radius: 14px;
  margin: 0 auto 10px;
}
.phone__screen{
  background: #0b141a;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.wa__topbar{
  display:flex; align-items:center; gap:10px;
  padding: 12px 14px;
  background: #1f2c34;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa__avatar{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2853ff, #5fb3ff);
  display:grid; place-items:center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(40,83,255,0.4);
}
.wa__avatar img{ width: 100%; height: 100%; object-fit: cover; }
.wa__name{ font-weight: 700; font-size: 14px; }
.wa__status{ font-size: 11px; color: var(--green); display:flex; align-items:center; gap:6px; }
.wa__status::before{ content:""; width:6px; height:6px; background: var(--green); border-radius: 50%; }
.wa__msgs{
  padding: 14px 12px 70px;
  min-height: 440px;
  background:
    radial-gradient(800px 400px at 50% 20%, rgba(40,83,255,0.06), transparent),
    #0b141a;
}
.wa__day{
  text-align:center;
  font-size: 10px; padding: 4px 10px;
  background: rgba(31,44,52,0.7);
  color: rgba(255,255,255,0.55);
  width: max-content; margin: 0 auto 14px;
  border-radius: 6px;
}
.wa__msg{
  max-width: 80%;
  padding: 8px 11px 6px;
  margin-bottom: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: msgIn .5s ease both;
}
@keyframes msgIn{ from{ opacity:0; transform: translateY(8px); } }
.wa__msg--me{
  margin-left: auto;
  background: #005c4b;
  border-radius: 10px 0 10px 10px;
  color: #fff;
}
.wa__msg--bot{
  background: #202c33;
  border-radius: 0 10px 10px 10px;
  color: #fff;
}
.wa__msg .time{
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  margin-left: 8px;
  float: right;
  margin-top: 2px;
}
.wa__msg .tick{ color: var(--cyan); margin-left: 2px; }
.wa__msg b.tag{
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  background: var(--neon);
  color: var(--ink);
  border-radius: 4px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.wa__input{
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  display:flex; gap: 8px; align-items:center;
  background: #1f2c34;
  border-radius: 22px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.wa__input .send{
  margin-left:auto; width: 30px; height: 30px;
  background: var(--green); border-radius: 50%;
  display:grid; place-items:center;
  color: #fff;
}
.wa__typing{
  font-size: 11px; color: rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: #202c33;
  border-radius: 8px;
  margin-bottom: 8px;
}
.wa__typing .dots span{
  display:inline-block; width:5px; height:5px; background: var(--paper);
  border-radius:50%; margin:0 1px; animation: bounce 1s infinite;
}
.wa__typing .dots span:nth-child(2){ animation-delay: .15s; }
.wa__typing .dots span:nth-child(3){ animation-delay: .3s; }
@keyframes bounce{ 0%,80%,100%{ transform:translateY(0); opacity:.4; } 40%{ transform:translateY(-4px); opacity:1; } }

/* floating cards around phone */
.float-card{
  position: absolute;
  background: rgba(10,20,60,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.55);
  z-index: 3;
}
.float-card .ic{
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--neon); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
}
.float-card .ic--blue{ background: var(--bg-3); color: #fff; }
.float-card .ic--pink{ background: var(--pink); color: #fff; }
.float-card small{
  display: block; font-size: 10px; font-weight: 500;
  color: rgba(244,247,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.float-card--1{ top: 20px; left: -10px; animation: float 5s ease-in-out infinite; }
.float-card--2{ bottom: 80px; right: -20px; animation: float 6s 1s ease-in-out infinite; }
.float-card--3{ top: 50%; left: -50px; animation: float 7s .5s ease-in-out infinite; }
@media (max-width: 980px){
  .hero__visual{ min-height: 560px; }
  .float-card--1{ left: 0; }
  .float-card--2{ right: 10px; }
  .float-card--3{ left: 10px; top: 80%; }
}

/* ============================================================
   STRIP — marquee
   ============================================================ */
.strip{
  background: rgba(6,18,60,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}
.strip__track{
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.strip__track span{
  display:inline-flex; align-items:center; gap: 24px;
  color: rgba(244,247,255,0.45);
}
.strip__track span:nth-child(odd){ color: var(--neon); }
.strip__track span::after{
  content:""; width:8px; height:8px; background: var(--neon);
  border-radius: 50%;
  display:inline-block;
  box-shadow: 0 0 12px var(--neon);
}
@keyframes scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section{
  padding: 120px 0;
  position: relative;
}
.section--paper{
  background: linear-gradient(180deg, #f4f7ff 0%, #e7eeff 100%);
  color: var(--ink);
}
.section--paper .eyebrow{ color: var(--bg-2); background: rgba(40,83,255,0.08); border-color: rgba(40,83,255,0.22); }
.section--paper .eyebrow::before{ background: var(--bg-2); box-shadow: 0 0 10px var(--bg-2); }

.section__head{
  max-width: 920px;
  margin-bottom: 64px;
}
.section__head .eyebrow{ margin-bottom: 20px; }
.section__title{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.section__title em{
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--neon), var(--neon-soft));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section--paper .section__title em{
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  -webkit-background-clip: text; background-clip: text;
}
.section__lead{
  font-size: 19px;
  max-width: 720px;
  color: rgba(244,247,255,0.7);
  line-height: 1.55;
}
.section--paper .section__lead{ color: rgba(10,25,71,0.7); }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
@media (max-width: 880px){ .compare{ grid-template-columns: 1fr; } }
.compare__col{
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.compare__col:hover{ transform: translateY(-4px); }
.compare__col--bad{
  background: rgba(255,107,122,0.06);
  border: 1px solid rgba(255,107,122,0.18);
}
.compare__col--good{
  background: rgba(200,255,46,0.07);
  border: 1px solid rgba(200,255,46,0.25);
  box-shadow: 0 30px 80px -30px rgba(200,255,46,0.25);
}
.compare__head{
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; gap: 14px;
}
.compare__head .ic{
  width: 38px; height: 38px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-size: 18px;
  font-weight: 800;
}
.compare__col--bad .compare__head .ic{ background: rgba(255,107,122,0.18); color: var(--red); }
.compare__col--good .compare__head .ic{ background: var(--neon); color: var(--ink); }
.compare__row{
  display: grid; grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244,247,255,0.82);
}
.compare__row:last-child{ border-bottom: 0; }
.compare__row .mk{
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.compare__col--bad .mk{ background: rgba(255,107,122,0.15); color: var(--red); }
.compare__col--good .mk{ background: rgba(200,255,46,0.18); color: var(--neon); }

/* ============================================================
   FEATURES
   ============================================================ */
.features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px){ .features{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px){ .features{ grid-template-columns: 1fr; } }

.feat{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s, background .3s;
  overflow: hidden;
}
.feat::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(200,255,46,0.10), transparent 60%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.feat:hover{
  transform: translateY(-6px);
  border-color: rgba(200,255,46,0.35);
  background: rgba(255,255,255,0.08);
}
.feat:hover::before{ opacity: 1; }

.feat__icon{
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1));
  display:grid; place-items:center;
  font-family: var(--f-disp); font-weight: 800;
  font-size: 14px;
  color: var(--neon);
  margin-bottom: 22px;
  box-shadow: 0 10px 30px -10px rgba(40,83,255,0.6), inset 0 0 0 1px rgba(255,255,255,0.12);
  transition: transform .35s;
}
.feat:hover .feat__icon{ transform: rotate(-6deg) scale(1.06); }
.feat:nth-child(2) .feat__icon{ background: linear-gradient(160deg, var(--neon), var(--neon-soft)); color: var(--ink); }
.feat:nth-child(3) .feat__icon{ background: linear-gradient(160deg, var(--cyan), var(--bg-3)); color: #fff; }
.feat:nth-child(5) .feat__icon{ background: linear-gradient(160deg, var(--neon), #87dd2c); color: var(--ink); }
.feat:nth-child(6) .feat__icon{ background: linear-gradient(160deg, var(--cyan), #2872ff); color: #fff; }
.feat:nth-child(8) .feat__icon{ background: linear-gradient(160deg, var(--neon), var(--cyan)); color: var(--ink); }
.feat:nth-child(9) .feat__icon{ background: linear-gradient(160deg, var(--paper), var(--paper-2)); color: var(--ink); }

.feat__num{
  position: absolute; top: 24px; right: 24px;
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(244,247,255,0.3);
  letter-spacing: 0.1em;
}
.feat__title{
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 22px; line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat__desc{ color: rgba(244,247,255,0.65); font-size: 14.5px; line-height: 1.5; }
.feat__example{
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(200,255,46,0.18);
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--neon);
  line-height: 1.4;
}

/* ============================================================
   VERSUS / DIFERENCIAIS — sobre fundo claro
   ============================================================ */
.versus{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px){ .versus{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .versus{ grid-template-columns: 1fr; } }

.vs{
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(40,83,255,0.12);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 10px 30px -20px rgba(40,83,255,0.4);
}
.vs:hover{ transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(40,83,255,0.4); }
.vs--win{
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  color: var(--paper);
  border: 1px solid rgba(200,255,46,0.4);
  box-shadow: 0 30px 60px -20px rgba(40,83,255,0.6), 0 0 0 1px rgba(200,255,46,0.2);
  transform: translateY(-6px);
}
.vs--win:hover{ transform: translateY(-10px); }
.vs__label{
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10,25,71,0.08);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}
.vs--win .vs__label{ background: var(--neon); color: var(--ink); }
.vs__name{ font-family: var(--f-disp); font-weight: 700; font-size: 22px; margin-bottom: 6px; letter-spacing: -0.01em; }
.vs__sub{ font-size: 13.5px; color: rgba(10,25,71,0.6); margin-bottom: 20px; min-height: 42px; line-height: 1.4; }
.vs--win .vs__sub{ color: rgba(244,247,255,0.7); }
.vs__line{
  display:flex; align-items:flex-start; gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(10,25,71,0.12);
  font-size: 14px;
}
.vs--win .vs__line{ border-top-color: rgba(255,255,255,0.1); }
.vs__line .mk{
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
  flex-shrink: 0;
}
.vs__line.no .mk{ background: rgba(255,107,122,0.15); color: var(--red); }
.vs__line.yes .mk{ background: rgba(54,224,141,0.18); color: var(--green); }
.vs--win .vs__line.yes .mk{ background: var(--neon); color: var(--ink); }

/* ============================================================
   COST
   ============================================================ */
.cost{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 880px){ .cost{ grid-template-columns: repeat(2, 1fr); } }
.cost__card{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: transform .35s, border-color .3s;
}
.cost__card:hover{ transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
.cost__lbl{
  font-size: 12px; font-weight: 600;
  color: rgba(244,247,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.cost__val{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
}
.cost__val.good{
  color: var(--neon);
  text-shadow: 0 0 30px rgba(200,255,46,0.4);
}
.cost__desc{
  font-size: 13px; color: rgba(244,247,255,0.6); margin-top: 16px;
  line-height: 1.5;
}
.cost__final{
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,255,46,0.3);
  box-shadow: 0 30px 80px -30px rgba(40,83,255,0.7);
}
.cost__final::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(200,255,46,0.18), transparent 60%);
}
.cost__final h3{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
}
.cost__final h3 em{
  font-style:normal;
  background: linear-gradient(135deg, var(--neon), var(--neon-soft));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ============================================================
   AMBASSADORS / DEPOIMENTOS
   ============================================================ */
.amb{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 880px){ .amb{ grid-template-columns: 1fr; } }
.amb__card{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  transition: transform .3s, border-color .3s;
}
.amb__card:hover{ transform: translateY(-4px); border-color: rgba(200,255,46,0.3); }
.amb__avatar{
  width: 88px; height: 88px;
  border-radius: 50%;
  display:grid; place-items:center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-1));
  color: var(--neon);
  box-shadow: 0 14px 30px -10px rgba(40,83,255,0.6), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.amb__card:nth-child(2) .amb__avatar{ background: linear-gradient(135deg, var(--neon), var(--neon-soft)); color: var(--ink); }
.amb__card:nth-child(3) .amb__avatar{ background: linear-gradient(135deg, var(--cyan), var(--bg-2)); color: #fff; }
.amb__card:nth-child(4) .amb__avatar{ background: linear-gradient(135deg, var(--paper), var(--paper-2)); color: var(--bg-2); }
.amb__name{ font-family: var(--f-disp); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.amb__role{ font-size: 12px; color: var(--neon); margin-top: 4px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.amb__quote{
  margin-top: 14px;
  font-size: 15px; line-height: 1.55;
  color: rgba(244,247,255,0.82);
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(200,255,46,0.4);
}
.amb__meta{
  margin-top: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.amb__tag{
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  color: rgba(244,247,255,0.72);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders{
  display:grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 880px){ .founders{ grid-template-columns: 1fr; } }
.founder{
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 36px;
  overflow: hidden;
  transition: transform .35s, border-color .3s;
}
.founder::after{
  content:""; position: absolute; right:-60px; top:-60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,46,0.15), transparent 70%);
  transition: transform .5s;
}
.founder:hover{ transform: translateY(-6px); border-color: rgba(200,255,46,0.35); }
.founder:hover::after{ transform: scale(1.3); }
.founder:nth-child(2)::after{ background: radial-gradient(circle, rgba(95,179,255,0.18), transparent 70%); }

.founder__top{
  display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center;
}
.founder__avatar{
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-1));
  color: var(--neon);
  display:grid; place-items:center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 30px;
  overflow: hidden;
  box-shadow: 0 14px 30px -10px rgba(40,83,255,0.6), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.founder__avatar--photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.founder:nth-child(2) .founder__avatar{ background: linear-gradient(135deg, var(--neon), var(--neon-soft)); color: var(--ink); }
.founder__name{ font-family: var(--f-disp); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; }
.founder__role{ font-size: 12px; color: var(--neon); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.founder__bio{ margin-top: 22px; color: rgba(244,247,255,0.7); font-size: 15px; line-height: 1.55; }
.founder__nums{
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.founder__num{
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px 12px;
  border-radius: 12px;
}
.founder__num b{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 26px;
  color: var(--neon);
  display: block; line-height: 1;
  letter-spacing: -0.02em;
}
.founder__num span{
  font-size: 11px;
  color: rgba(244,247,255,0.5);
  margin-top: 6px; display:block;
  line-height: 1.3;
}

/* ============================================================
   OBJ
   ============================================================ */
.obj{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 880px){ .obj{ grid-template-columns: 1fr; } }
.obj__card{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.obj__card:hover{ transform: translateY(-3px); border-color: rgba(200,255,46,0.3); }
.obj__q{
  padding: 20px 24px;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--paper);
  display:flex; align-items:flex-start; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.obj__q::before{
  content:"?"; flex: 0 0 28px;
  width:28px; height:28px;
  background: rgba(255,107,122,0.18); color: var(--red);
  display:grid; place-items:center;
  border-radius: 50%;
  font-size: 14px; font-weight: 800;
}
.obj__a{
  padding: 22px 24px;
  font-size: 15px;
  color: rgba(244,247,255,0.78);
  line-height: 1.55;
}
.obj__a strong{ color: var(--neon); font-weight: 600; }

/* ============================================================
   PRICING / CHECKOUT
   ============================================================ */
.price-grid{
  display: grid; grid-template-columns: minmax(0, 640px);
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}
.price-card__ctas{
  display: flex; flex-wrap: wrap; gap: 12px;
}
.price-card__ctas .btn{ flex: 1; justify-content: center; min-width: 200px; }
@media (max-width: 980px){ .price-grid{ grid-template-columns: 1fr; } }

.price-card{
  position: relative;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-1) 60%, var(--bg-0) 100%);
  border: 1px solid rgba(200,255,46,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(40,83,255,0.6), 0 0 0 1px rgba(200,255,46,0.18);
}
.price-card::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(200,255,46,0.18), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(95,179,255,0.16), transparent 60%);
  pointer-events: none;
}
.price-card > *{ position: relative; }
.price-card__ribbon{
  position: absolute; top: 22px; right: 22px;
  background: var(--neon); color: var(--ink);
  font-size: 11px; font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 8px 22px -6px rgba(200,255,46,0.6);
}
.price-card__lbl{ font-size: 13px; color: rgba(244,247,255,0.55); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.price-card__name{ font-family: var(--f-disp); font-weight: 800; font-size: 38px; margin-top: 8px; letter-spacing: -0.02em; }
.price-card__price{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 100px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 20px 0 8px;
  background: linear-gradient(135deg, var(--neon), var(--neon-soft));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.price-card__price .cur{ font-size: 0.4em; vertical-align: top; opacity: 0.8; }
.price-card__price .month{
  font-size: 0.22em;
  -webkit-text-fill-color: rgba(244,247,255,0.5);
  font-weight: 500;
  margin-left: 6px;
}
.price-card__trial{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,255,46,0.15);
  color: var(--neon);
  border: 1px solid rgba(200,255,46,0.4);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.price-card__trial::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background: var(--neon); box-shadow: 0 0 10px var(--neon);
}
.price-card__list{ margin: 8px 0 28px; }
.price-card__list li{
  list-style: none;
  display: grid; grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: rgba(244,247,255,0.85);
}
.price-card__list li:first-child{ border-top: 0; }
.price-card__list .mk{
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(200,255,46,0.18); color: var(--neon);
  display:grid; place-items:center;
  font-size: 11px; font-weight: 800;
}

.price-checkout{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.price-checkout h4{
  font-size: 13px;
  color: var(--neon);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.field{ margin-bottom: 14px; }
.field label{
  display:block;
  font-size: 12px;
  color: rgba(244,247,255,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input{
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--paper);
  padding: 14px 16px;
  font-size: 14.5px;
  outline: none;
  border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.field input:focus{ border-color: var(--neon); background: rgba(200,255,46,0.04); }
.field input::placeholder{ color: rgba(244,247,255,0.3); }
.field--row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pay-methods{
  display:flex; gap: 8px; margin: 22px 0;
  flex-wrap: wrap;
}
.pay-methods span{
  font-size: 11px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(244,247,255,0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.checkout-footer{
  font-size: 12px; color: rgba(244,247,255,0.5);
  margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
  line-height: 1.4;
}

/* full width neon btn used inside checkout */
.btn--full{ display: flex; justify-content: center; width: 100%; }

/* ============================================================
   NEWS
   ============================================================ */
.news{
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(200,255,46,0.3);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(40,83,255,0.5);
}
.news::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(200,255,46,0.16), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(95,179,255,0.18), transparent 60%);
  pointer-events: none;
}
.news > *{ position: relative; }
@media (max-width: 880px){ .news{ grid-template-columns: 1fr; padding: 36px; } }
.news h3{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.news h3 em{
  font-style: normal;
  background: linear-gradient(135deg, var(--neon), var(--neon-soft));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.news p{ color: rgba(244,247,255,0.75); margin-top: 14px; font-size: 16px; line-height: 1.55; }
.news__form{
  display: flex; gap: 12px;
  flex-direction: column;
}
.news__form input{
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--paper);
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s;
}
.news__form input:focus{ border-color: var(--neon); }
.news__form input::placeholder{ color: rgba(244,247,255,0.35); }

/* ============================================================
   BLOG
   ============================================================ */
.blog{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px){ .blog{ grid-template-columns: 1fr; } }
.post{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s, border-color .3s;
  cursor: pointer;
}
.post:hover{
  transform: translateY(-6px);
  border-color: rgba(200,255,46,0.4);
}
.post__cover{
  height: 180px;
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
}
.post__cover img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.post:hover .post__cover img{ transform: scale(1.06); }
.post__cover::after{
  content:""; position: absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(3,19,63,0.7) 100%);
}
.post__cover .tag{
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700;
  background: var(--neon); color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  z-index: 2;
}
.post__body{ padding: 22px; flex: 1; display:flex; flex-direction: column; }
.post__date{
  font-size: 11px;
  color: rgba(244,247,255,0.45);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.post__title{
  font-family: var(--f-disp); font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.post__desc{
  font-size: 14px; color: rgba(244,247,255,0.6);
  flex: 1; line-height: 1.5;
}
.post__more{
  margin-top: 16px;
  font-size: 12px;
  color: var(--neon);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq{ display: flex; flex-direction: column; gap: 12px; max-width: 920px; }
.faq__item{
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  transition: border-color .3s, background .3s;
}
.faq__item:hover{ border-color: rgba(200,255,46,0.3); }
.faq__item[open]{ background: rgba(200,255,46,0.04); border-color: rgba(200,255,46,0.35); }
.faq__item summary{
  padding: 20px 24px;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{
  content: ""; flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-block;
  position: relative;
  transition: background .3s, transform .3s;
}
.faq__item summary::before{
  content: ""; position: absolute; right: 32px;
  width: 12px; height: 2px; background: var(--paper);
  z-index: 1;
}
.faq__item summary{ position: relative; }
.faq__item summary span.plus-v{
  position: absolute; right: 37px;
  width: 2px; height: 12px; background: var(--paper);
  transition: transform .3s, opacity .3s;
}
.faq__item[open] summary span.plus-v{ transform: rotate(90deg); opacity: 0; }
.faq__item[open] summary::after{ background: var(--neon); }
.faq__item[open] summary::before{ background: var(--ink); }
.faq__body{
  padding: 0 24px 24px 24px;
  color: rgba(244,247,255,0.72);
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 18px;
}

/* ============================================================
   FINAL
   ============================================================ */
.final{
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final::before{
  content:""; position: absolute; inset: -20%;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(200,255,46,0.15), transparent 60%),
    radial-gradient(40% 60% at 30% 70%, rgba(40,83,255,0.45), transparent 60%);
  pointer-events: none;
}
.final > *{ position: relative; }
.final h2{
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.final h2 em{
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--neon), var(--neon-soft));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.final p{
  margin: 24px auto 40px;
  max-width: 620px;
  color: rgba(244,247,255,0.7);
  font-size: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background: rgba(3,8,28,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 64px 0 36px;
  font-size: 14px;
  position: relative;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px){ .footer__grid{ grid-template-columns: 1fr 1fr; } }
.footer h5{
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 14px;
  color: var(--neon);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer ul{ list-style: none; }
.footer a, .footer li{
  padding: 4px 0;
  color: rgba(244,247,255,0.55);
  transition: color .2s;
}
.footer a:hover{ color: var(--neon); }
.footer__bottom{
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(244,247,255,0.35);
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   REVEAL / SCROLL
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity: 1; transform: none; }

.reveal-stagger > *{
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in > *{ opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1){ transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: 0.10s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: 0.20s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: 0.30s; }
.reveal-stagger.in > *:nth-child(7){ transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(8){ transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(9){ transition-delay: 0.45s; }

/* ============================================================
   COMPARE CTA — botão sob comparativo
   ============================================================ */
.compare-cta{
  margin-top: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.compare-cta__hint{
  font-size: 13px;
  color: rgba(244,247,255,0.55);
  font-weight: 500;
}

/* ============================================================
   TYPEWRITER cursor
   ============================================================ */
.tw-cursor{
  display: inline-block;
  width: 4px;
  height: 0.85em;
  background: var(--neon);
  vertical-align: text-bottom;
  margin-left: 4px;
  animation: blinkCursor 0.7s steps(2) infinite;
  border-radius: 1px;
  box-shadow: 0 0 12px var(--neon);
}
.tw-cursor.done{ animation: blinkCursor 1s steps(2) infinite; opacity: 0.4; }
@keyframes blinkCursor{ 50%{ opacity: 0; } }

/* ============================================================
   wa__msg fadeOut helper
   ============================================================ */
.wa__msgs{ transition: opacity .6s; }
