:root {
  --neon: #39ff6a;
  --neon-dim: #1aff4f33;
  --neon-mid: #39ff6a99;
  --bg: #0a0b0d;
  --bg2: #111316;
  --bg3: #161a1f;
  --text: #e8eaed;
  --muted: #7c8590;
  --border: #1e2328;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 16px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── BASE ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
  letter-spacing: .01em;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 6rem);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 6rem);
}

@media (max-width: 575.98px) {
  .container,
  .nav-container {
    padding-inline: 1rem;
  }
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
}

section, nav, footer {
  position: relative;
  z-index: 1;
}

/* ── NAVBAR ────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(10,11,13,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  padding: .9rem 0;
  transition: border-color var(--transition);
}

/* LOGO CORRIGIDA */
.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  text-decoration: none;
  position: relative;
  z-index: 1002;
}

.navbar-brand img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* REMOVE TEXTO ANTIGO */
.navbar-brand span {
  display: none;
}

/* ── MENU ───────────────── */

.nav-desktop {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--muted) !important;
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  padding: .4rem .75rem;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--neon) !important;
}

/* BOTÃO */
.btn-nav {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon) !important;
  border-radius: 8px;
  padding: 0 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: .5rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.btn-nav:hover {
  background: var(--neon-dim);
  box-shadow: 0 0 16px var(--neon-mid);
}

/* ═══════════════════════════════════════
   HAMBURGER PREMIUM
═══════════════════════════════════════ */

.nav-hamburger {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 1002;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all .25s ease;
  padding: 0;
}

.nav-hamburger:hover {
  border-color: rgba(57,255,106,.25);
  box-shadow: 0 0 20px rgba(57,255,106,.08);
}

/* LINHAS */
.hb-bar {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #9aa4af;
  transform: translateX(-50%);
  transition: all .3s ease;
}

.hb-bar:nth-child(1) {
  top: 16px;
}

.hb-bar:nth-child(2) {
  top: 22px;
}

.hb-bar:nth-child(3) {
  top: 28px;
}

/* ABERTO */
.nav-hamburger.is-open .hb-bar:nth-child(1) {
  top: 22px;
  transform:
    translateX(-50%)
    rotate(45deg);
  background: var(--neon);
}

.nav-hamburger.is-open .hb-bar:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open .hb-bar:nth-child(3) {
  top: 22px;
  transform:
    translateX(-50%)
    rotate(-45deg);
  background: var(--neon);
}
.float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
}


/* ── RESPONSIVO ───────────────── */
@media (max-width: 768px) {
  .navbar-brand {
    height: 42px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
}

  .hero {
    padding-bottom: 7rem;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }
}

/* ── DRAWER MOBILE ───────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 9, 11, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* ATIVO */
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

/* MENU */
.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

/* LINKS */
.drawer-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.drawer-link:hover {
  color: var(--neon);
  transform: translateY(-2px);
}

/* CTA */
.drawer-cta {
  margin-top: 1rem;
}

/* SOCIAIS */
.drawer-socials {
  display: flex;
  gap: 1rem;
}

.drawer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all .25s ease;
}

.drawer-socials a:hover {
  color: var(--neon);
  border-color: var(--neon-mid);
  box-shadow: 0 0 12px var(--neon-mid);
}

/* FOOTER DO DRAWER */
.drawer-brand-line {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .05em;
  margin-top: .5rem;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  animation: gridPulse 6s ease-in-out infinite alternate;
}

@keyframes gridPulse {
  from {
    opacity: .4
  }

  to {
    opacity: .15
  }
}

.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #39ff6a18 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes orbFloat {
  from {
    transform: translateX(-50%) translateY(0);
  }

  to {
    transform: translateX(-50%) translateY(40px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--neon-dim);
  border: 1px solid var(--neon-mid);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.4rem;
}

.hero-title .accent {
  color: var(--neon);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--neon);
  color: #080c0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 24px var(--neon-mid);
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 24px var(--neon-mid);
  }

  50% {
    box-shadow: 0 0 44px #39ff6acc;
  }
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px #39ff6acc;
  color: #080c0a;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

/* BOTÃO */
.btn-cta,
.btn-ghost {
  font-size: .95rem;
}

.btn-ghost:hover {
  border-color: var(--neon-mid);
  color: var(--neon);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .75rem;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.hero-trust i {
  color: var(--neon);
  font-size: .85rem;
}

.hero-wave {
  margin: 4rem auto 0;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 60px;
}

.hero-wave .bar {
  width: 4px;
  background: var(--neon);
  border-radius: 4px;
  animation: wave var(--d, 1s) ease-in-out infinite alternate;
  opacity: .7;
}

@keyframes wave {
  from {
    height: 8px;
  }

  to {
    height: var(--h, 40px);
  }
}

/* ── SECTION BASE ──────────────────────────────────────── */
.section {
  padding: 8rem 0;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
  font-size: .97rem;
  line-height: 1.75;
}

/* ── DOR SECTION ───────────────────────────────────────── */

.dor-bg {
  background: var(--bg2);
}

/* CARD */
.dor-card {
  height: 100%;
  padding: 1.5rem;
  background: linear-gradient(145deg, #11151a, #0d1115);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.dor-card:hover {
  border-color: rgba(255, 77, 77, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 77, 77, 0.1);
}

/* ÍCONE */
.dor-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.25);
  color: #ff6b6b;
  font-size: 1.1rem;
}

/* TÍTULO */
.dor-title {
  font-size: .95rem;
  font-weight: 600;
  margin: 0;
}

/* DESCRIÇÃO */
.dor-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FEATURES ──────────────────────────────────────────── */
.features-bg {
  background: var(--bg);
}

.feat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 30% 20%, var(--neon-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-mid);
  box-shadow: 0 8px 40px #39ff6a22;
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--neon-dim);
  border: 1px solid var(--neon-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--neon);
  margin-bottom: 1.2rem;
  transition: box-shadow var(--transition);
}

.feat-card:hover .feat-icon {
  box-shadow: 0 0 20px var(--neon-mid);
}

.feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: .55rem;
  letter-spacing: -.02em;
}

.feat-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how-bg {
  background: var(--bg2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--neon-dim);
  line-height: 1;
  margin-bottom: .6rem;
  letter-spacing: -.05em;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.step-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--neon);
  opacity: 1;
  text-shadow: 0 0 10px rgba(57, 255, 106, .6), 0 0 20px rgba(57, 255, 106, .4), 0 0 40px rgba(57, 255, 106, .2);
}

/* ── COMPARISON ────────────────────────────────────────── */
.comp-bg {
  background: var(--bg);
}

.comp-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
}

.comp-card.comp-depois {
  border-color: var(--neon-mid);
  background: linear-gradient(135deg, #0d1a10 0%, var(--bg3) 100%);
  box-shadow: 0 4px 40px #39ff6a18;
}

.comp-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.comp-label.antes {
  color: #ff6b6b;
}

.comp-label.depois {
  color: var(--neon);
}

.comp-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--muted);
}

.comp-list li:last-child {
  border-bottom: none;
}

.comp-list li i {
  font-size: 1rem;
  flex-shrink: 0;
}

.comp-list.antes i {
  color: #ff6b6b;
}

.comp-list.depois i {
  color: var(--neon);
}

.comp-list.depois li {
  color: var(--text);
  font-weight: 500;
}

/* ── IA SECTION ────────────────────────────────────────── */

.ia-bg {
  background: var(--bg2);
}

/* CONTAINER DOS CARDS */
.ia-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* CARD */
.ia-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem;
  background: linear-gradient(145deg, #11151a, #0d1115);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
}

.ia-benefit:hover {
  border-color: var(--neon-mid);
  box-shadow: 0 6px 30px rgba(57, 255, 106, .15);
  transform: translateY(-2px);
}

/* ÍCONE */
.ia-benefit-icon {
  min-width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 106, .08);
  border: 1px solid rgba(57, 255, 106, .35);
  color: var(--neon);
  font-size: 1.2rem;
}

/* TÍTULO */
.ia-benefit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .25rem;
}

/* DESCRIÇÃO */
.ia-benefit-desc {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}

/* ── PROVA SOCIAL ──────────────────────────────────────── */
.prova-bg {
  background: var(--bg3);
}

.prova-stat {
  text-align: center;
  padding: 1.2rem 0;
}

.prova-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
  margin-bottom: .3rem;
}

.prova-label {
  color: var(--muted);
  font-size: .85rem;
}

/* LOGOS */

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}

.logo-placeholder {
  padding: .55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--bg2);
  transition: all .2s ease;
}

.logo-placeholder:hover {
  border-color: var(--neon-mid);
  color: var(--text);
}

/* TESTEMUNHOS */

.testemunho-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testemunho-stars {
  color: #facc15;
  font-size: .9rem;
  margin-bottom: .8rem;
}

.testemunho-text {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  flex-grow: 1;
}

.testemunho-autor {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
}

.testemunho-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--neon-dim);
  border: 1px solid var(--neon-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.testemunho-nome {
  font-weight: 600;
  font-size: .85rem;
}

.testemunho-cargo {
  color: var(--muted);
  font-size: .75rem;
}

/* ── PRICING ───────────────────────────────────────────── */
.pricing-bg {
  background: var(--bg2)
}

.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition)
}

.price-card:hover {
  transform: translateY(-4px)
}

.price-card.featured {
  border-color: var(--neon-mid);
  background: linear-gradient(135deg, #0d1a10 0%, var(--bg3) 100%);
  box-shadow: 0 8px 60px #39ff6a20
}

.price-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--neon);
  color: #080c0a;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
  font-family: var(--font-display)
}

.price-plan {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: .5rem
}

.price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .25rem
}

.price-value span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted)
}

.price-period {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 1.5rem
}

.price-desc {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 1.75rem;
  line-height: 1.55
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem
}

.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--muted)
}

.price-includes li:last-child {
  border-bottom: none
}

.price-includes li i {
  color: var(--neon);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .15rem
}

.price-includes li.included {
  color: var(--text)
}

.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-bg {
  background: var(--bg)
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
  transition: border-color var(--transition)
}

.faq-item.open {
  border-color: var(--neon-mid)
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--bg3);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .95rem;
  gap: 1rem;
  user-select: none;
  transition: background var(--transition)
}

.faq-question:hover {
  background: var(--bg2)
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--neon-dim);
  border: 1px solid var(--neon-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  font-size: .9rem;
  transition: transform var(--transition)
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-answer {
  background: var(--bg2);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.23, 1, .32, 1), padding .3s ease;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65
}

.faq-answer.open {
  max-height: 500px;
  padding: 1.25rem 1.5rem
}

.faq-wrapper {
  max-width: 720px;
  margin: 0 auto
}

/* ── CTA FINAL ─────────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--bg)
}

.cta-final-inner {
  background: linear-gradient(135deg, #0d1a10 0%, #0a0b0d 60%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-final-inner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #39ff6a14, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none
}

.cta-final-inner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--neon-mid);
  bottom: -120px;
  right: -60px;
  pointer-events: none;
  opacity: .3
}

.cta-final .section-title {
  font-size: clamp(1.8rem, 4vw, 3rem)
}

.cta-highlight {
  color: var(--neon)
}

.cta-desc {
  color: var(--muted);
  max-width: 480px;
  margin: .8rem auto 2rem;
  font-weight: 300
}

.btn-cta-large {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  max-width: 380px;
  width: 100%;
  justify-content: center;
  display: inline-flex
}

.cta-info {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 1.2rem
}

@media(max-width:575.98px) {
  .cta-final-inner {
    padding: 3rem 1.25rem
  }

  .btn-cta-large {
    padding: .9rem 1.5rem;
    font-size: .95rem
  }
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.footer-brand span {
  color: var(--neon);
}

.footer-brand img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  color: var(--muted);
  font-size: .85rem;
  margin-top: .4rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: var(--muted);
  font-size: .875rem;
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--text);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: .6rem;
}

.footer-contact-item i {
  color: var(--neon);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: var(--muted);
  font-size: .8rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.social-link:hover {
  border-color: var(--neon-mid);
  color: var(--neon);
  box-shadow: 0 0 12px var(--neon-mid);
}

/* ── FLOATING BUTTONS ──────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform .3s cubic-bezier(.23, 1, .32, 1), box-shadow .3s ease;
}

.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .3rem .75rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateY(-50%) translateX(6px);
}

.float-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px #25d36655;
}

.float-btn-wa:hover {
  box-shadow: 0 6px 30px #25d36688;
  color: #fff;
}

.float-btn-ig {
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 4px 20px #cc274355;
}

.float-btn-ig:hover {
  box-shadow: 0 6px 30px #cc274388;
  color: #fff;
}

/* Pulse ring animation */
.float-btn-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: floatPulse 2.5s ease-out infinite;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

/* BACKDROP */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}


/* ── RESPONSIVE ────────────────────────────────────────── */
@media (min-width: 992px) {
  .nav-hamburger {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .nav-desktop {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 100svh;
    padding: 5.5rem 0 3.5rem;
    align-items: flex-start;
  }

  .hero-orb {
    width: 340px;
    height: 340px;
    top: -80px;
  }

  .hero-title {
    letter-spacing: -.02em;
  }

  .hero-sub {
    font-size: .97rem;
    padding: 0 .5rem;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    font-size: .95rem;
    padding: .9rem 1.5rem;
  }

  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-wave {
    margin-top: 2.5rem;
    gap: 3px;
  }

  .hero-wave .bar {
    width: 4px;
    background: var(--neon);
    border-radius: 4px;
    animation: wave var(--d, 1s) ease-in-out infinite alternate;
    opacity: 0.7;
  }
  .section {
    padding: 5rem 0;
  }

  .section-title {
    text-align: center !important;
  }

  .section-sub {
    text-align: center;
  }

  .why-bg .col-lg-5 {
    text-align: center;
  }

  .cta-final-inner {
    padding: 3rem 1.25rem;
    border-radius: 16px;
  }

  .cta-final .btn-cta {
    width: 100%;
    justify-content: center;
    font-size: .95rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-badge {
    font-size: .7rem;
    padding: .28rem .85rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-wave {
    max-width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .feat-card {
    padding: 1.5rem 1.25rem;
  }

  .why-card {
    padding: 1.1rem 1rem;
    gap: .75rem;
  }

  .why-icon {
    font-size: 1.25rem;
  }

  .cta-final-inner {
    padding: 2.5rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .payment-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 399.98px) {
  .hero-title {
    font-size: clamp(1.7rem, 10vw, 2.2rem);
  }
}

@media (max-width: 767.98px) {
  footer {
    padding: 3rem 0 1.75rem;
  }

  footer .col-12.col-lg-4 {
    text-align: center;
  }

  footer .social-links {
    justify-content: center;
  }
}

@media (max-width:767.98px) {
  footer .row>div {
    text-align: center
  }

  .footer-contact-item {
    justify-content: center;
    flex-direction: column;
    gap: 4px
  }

  .footer-link {
    text-align: center
  }

  footer .social-links {
    justify-content: center
  }
}

@media (hover: none) {
  .feat-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
  }

  .feat-card:hover::before {
    opacity: 0;
  }

  .why-card:hover {
    border-color: var(--border);
    box-shadow: none;
  }
}

/* ═══════════════════════════════════════
   COMPONENTE RADIOAI — TEMA NEON
═══════════════════════════════════════ */

/* ── BACKDROP ── */
.wa-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.wa-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── FLOAT BUTTONS ── */
.wa-fab,
.ig-fab {
  position: fixed;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 1100;
  transition: all .3s cubic-bezier(.23,1,.32,1);
}

/* WhatsApp */
.wa-fab {
  bottom: 1.5rem;
  background: linear-gradient(145deg, #11151a, #0d1115);
  color: var(--neon);
  box-shadow: 0 0 24px rgba(57,255,106,.18);
}

.wa-fab:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--neon-mid);
  box-shadow: 0 0 34px rgba(57,255,106,.35);
  color: var(--neon);
}

/* Instagram */
.ig-fab {
  bottom: 6.3rem;
  background: linear-gradient(145deg, #11151a, #0d1115);
  color: #ff4fd8;
  box-shadow: 0 0 24px rgba(255,79,216,.16);
}

.ig-fab:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255,79,216,.35);
  box-shadow: 0 0 34px rgba(255,79,216,.35);
  color: #ff4fd8;
}

/* Pulse */
.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid var(--neon);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* ── WIDGET ── */
.wa-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  width: 340px;
  background: linear-gradient(145deg, #11151a, #0d1115);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  z-index: 1110;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(.96);
  transition: all .35s cubic-bezier(.23,1,.32,1);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.wa-widget.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* HEADER */
.wa-header {
  background: rgba(57,255,106,.08);
  border-bottom: 1px solid rgba(57,255,106,.15);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(57,255,106,.12);
  border: 1px solid rgba(57,255,106,.25);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.wa-title {
  color: var(--text);
  font-weight: 700;
  font-size: .95rem;
}

.wa-status {
  color: var(--muted);
  font-size: .75rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: waDot 1.8s ease-in-out infinite;
}

@keyframes waDot {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.wa-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.wa-close:hover {
  border-color: var(--neon-mid);
  color: var(--neon);
}

/* MESSAGE */
.wa-msg {
  margin: 1rem;
  background: rgba(57,255,106,.06);
  border: 1px solid rgba(57,255,106,.12);
  color: var(--text);
  border-radius: 14px;
  padding: .85rem 1rem;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  line-height: 1.5;
  font-size: .82rem;
}

.wa-msg i {
  color: var(--neon);
  margin-top: .1rem;
}

/* FORM */
.wa-form {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.wa-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.wa-field i {
  position: absolute;
  top: 50%;
  left: .95rem;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .85rem;
}

.wa-field input {
  width: 100%;
  background: #0c0f13;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: .9rem 1rem .9rem 2.7rem;
  outline: none;
  transition: all .25s ease;
  font-size: .88rem;
}

.wa-field input:focus {
  border-color: var(--neon-mid);
  box-shadow: 0 0 0 4px rgba(57,255,106,.08);
}

.wa-field input.is-error {
  border-color: #ff4d4d;
}

.wa-field-error {
  font-size: .72rem;
  color: #ff4d4d;
  min-height: .9rem;
  padding-left: .2rem;
}

/* SUBMIT */
.wa-submit {
  margin-top: .25rem;
  width: 100%;
  background: var(--neon);
  color: #08110a;
  border: none;
  border-radius: 14px;
  padding: .95rem 1rem;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  cursor: pointer;
  transition: all .25s ease;
}

.wa-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(57,255,106,.35);
}

.wa-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* ── MODAL ── */
.tg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.tg-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.tg-modal {
  background: linear-gradient(145deg, #11151a, #0d1115);
  border: 1px solid var(--border);
  border-radius: 28px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(.97);
  transition: transform .35s cubic-bezier(.23,1,.32,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.tg-overlay.is-open .tg-modal {
  transform: translateY(0) scale(1);
}

/* HEADER */
.tg-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.tg-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.tg-close:hover {
  border-color: var(--neon-mid);
  color: var(--neon);
}

.tg-header-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(57,255,106,.08);
  border: 1px solid rgba(57,255,106,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.7rem;
  color: var(--neon);
}

.tg-title {
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.tg-subtitle {
  color: var(--muted);
  font-size: .9rem;
}

/* BODY */
.tg-body {
  padding: 2rem;
}

.tg-success {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text);
}

.tg-success i {
  font-size: 3rem;
  color: var(--neon);
  display: block;
  margin-bottom: .75rem;
}

/* FORM GRID */
.tg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tg-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.tg-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
}

.tg-group input,
.tg-group select {
  width: 100%;
  background: #0c0f13;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: .9rem 1rem;
  outline: none;
  transition: all .25s ease;
  font-size: .88rem;
}

.tg-group input:focus,
.tg-group select:focus {
  border-color: var(--neon-mid);
  box-shadow: 0 0 0 4px rgba(57,255,106,.08);
}

.tg-group input.is-error,
.tg-group select.is-error {
  border-color: #ff4d4d;
}

.tg-error {
  font-size: .72rem;
  color: #ff4d4d;
  min-height: .9rem;
}

/* ACTIONS */
.tg-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  align-items: center;
  justify-content: flex-end;
}

.tg-btn-cancel {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .9rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .25s ease;
}

.tg-btn-cancel:hover {
  border-color: var(--neon-mid);
  color: var(--neon);
}

.tg-btn-submit {
  flex: 1;
  background: var(--neon);
  color: #08110a;
  border: none;
  border-radius: 14px;
  padding: .95rem 1.5rem;
  font-size: .92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  cursor: pointer;
  transition: all .25s ease;
}

.tg-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(57,255,106,.35);
}

.tg-btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* ── RESPONSIVO ── */
@media (max-width: 768px) {

  .wa-widget {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 5.8rem;
  }

  .wa-fab,
  .ig-fab {
    width: 52px;
    height: 52px;
  }

  .ig-fab {
    bottom: 5.8rem;
  }

  .tg-row {
    grid-template-columns: 1fr;
  }

  .tg-body,
  .tg-header {
    padding: 1.3rem;
  }

  .tg-actions {
    flex-direction: column;
  }

  .tg-btn-cancel,
  .tg-btn-submit {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 11rem;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #11151a, #0d1115);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity .3s ease,
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  border-color: var(--neon-mid);
  box-shadow:
    0 0 24px rgba(57,255,106,.25),
    0 0 44px rgba(57,255,106,.12);
}

.back-to-top i {
  pointer-events: none;
}

@media (max-width: 768px) {

  .back-to-top {
    width: 48px;
    height: 48px;
    right: 1rem;
    bottom: 10rem;
    border-radius: 16px;
  }

}

/* ═══════════════════════════════════════
   AURORA PREMIUM HERO
═══════════════════════════════════════ */

.hero {
  isolation: isolate;
}

/* Aurora base */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: .55;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* Aurora verde principal */
.hero::before {
  width: 520px;
  height: 520px;

  top: -140px;
  left: -120px;

  background:
    radial-gradient(
      circle,
      rgba(57,255,106,.18) 0%,
      rgba(57,255,106,.08) 35%,
      transparent 72%
    );

  animation: auroraMove1 9s infinite;
}

/* Aurora secundária */
.hero::after {
  width: 620px;
  height: 620px;

  right: -180px;
  top: 80px;

  background:
    radial-gradient(
      circle,
      rgba(57,255,106,.14) 0%,
      rgba(57,255,106,.05) 40%,
      transparent 74%
    );

  animation: auroraMove2 12s infinite;
}

/* Orb melhorada */
.hero-orb {
  width: 820px;
  height: 820px;

  background:
    radial-gradient(
      circle,
      rgba(57,255,106,.14) 0%,
      rgba(57,255,106,.06) 32%,
      transparent 72%
    );

  filter: blur(20px);

  animation:
    orbFloat 10s ease-in-out infinite alternate,
    orbPulse 6s ease-in-out infinite;
}

/* Grid mais premium */
.hero-grid {
  opacity: .45;

  background-image:
    linear-gradient(rgba(30,35,40,.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,35,40,.65) 1px, transparent 1px);

  background-size: 58px 58px;
}

/* Glow no conteúdo */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: "";

  position: absolute;
  inset: -80px;

  background:
    radial-gradient(
      circle at center,
      rgba(57,255,106,.05),
      transparent 72%
    );

  z-index: -1;
  pointer-events: none;
}

/* Badge premium */
.hero-badge {
  backdrop-filter: blur(14px);

  box-shadow:
    0 0 18px rgba(57,255,106,.12),
    inset 0 0 12px rgba(57,255,106,.05);
}

/* Título com glow suave */
.hero-title .accent {
  color: var(--neon);

  text-shadow:
    0 0 14px rgba(57,255,106,.45),
    0 0 28px rgba(57,255,106,.18);
}

/* CTA mais viva */
.btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,.22),
      transparent
    );

  transition: .8s;
}

.btn-cta:hover::before {
  left: 120%;
}

/* HERO WAVE MELHORADA */
.hero-wave .bar {
  background:
    linear-gradient(
      to top,
      rgba(57,255,106,.25),
      var(--neon)
    );

  box-shadow:
    0 0 10px rgba(57,255,106,.45),
    0 0 20px rgba(57,255,106,.18);

  opacity: .95;
}

/* ANIMAÇÕES */
@keyframes auroraMove1 {

  0% {
    transform:
      translate3d(0,0,0)
      scale(1);
  }

  100% {
    transform:
      translate3d(60px,40px,0)
      scale(1.12);
  }

}

@keyframes auroraMove2 {

  0% {
    transform:
      translate3d(0,0,0)
      scale(1);
  }

  100% {
    transform:
      translate3d(-70px,-30px,0)
      scale(1.08);
  }

}

@keyframes orbPulse {

  0%,100% {
    opacity: .65;
  }

  50% {
    opacity: .95;
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .hero::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: -80px;
  }

  .hero::after {
    width: 340px;
    height: 340px;
    right: -140px;
    top: 140px;
  }

  .hero-orb {
    width: 480px;
    height: 480px;
  }

}