:root{
  --bg: #020403; /* preto levemente esverdeado */
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: #eef7f2;
  --muted: rgba(238,247,242,.70);
  --line: rgba(255,255,255,.10);

  /* Verde WhatsApp premium */
  --accent: #25D366;   /* WhatsApp oficial */
  --accent2:#1EBE5D;   /* verde escuro */

  --shadow: 0 12px 34px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; background: var(--bg); color: var(--text); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.icon-wa{
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Botão WhatsApp com logo completo */
.btn--wa{
  background: transparent;
  border: 1px solid rgba(37,211,102,.65);
  color: #eafff3;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
}

.btn--wa:hover{
  background: rgba(37,211,102,.08);
}

/* Logo oficial WhatsApp */
.wa-logo{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
}


.container{ width:min(1100px, 92vw); margin:0 auto; }

.topbar{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5,6,7,.65);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px; }

.brand{ display:flex; align-items:center; gap:10px; }
.brand__dot{
  width:12px; height:12px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(20,241,217,.55);
}
.brand__name{ font-weight:800; letter-spacing:.2px; }

.topnav{ display:flex; align-items:center; gap:14px; }
.topnav__link{ color: var(--muted); font-weight:600; }
.topnav__link:hover{ color: var(--text); }

.topbar-cta{
  display:flex;
  align-items:center;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.topbar-cta span{ color: rgba(238,243,247,.92); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  gap:10px;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(20,241,217,.35); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: linear-gradient(
    180deg,
    #1fb557,
    #179a49
  );
  color:#fff;
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(37,211,102,.35), 0 0 40px rgba(20,241,217,.75), 0 0 80px rgba(20,241,217,.45);
}
.btn--primary:hover{ background: linear-gradient(180deg, rgba(20,241,217,1), rgba(20,241,217,.78)); }

.btn--secondary{
  background: rgba(25,195,125,.12);
  border-color: rgba(25,195,125,.35);
}

.btn--ghost{
  background: transparent;
  border-color: rgba(20,241,217,.25);
  color: var(--text);
}
.btn--block{ width:100%; }

.hero{
  padding: 90px 0 40px;
  background:
    radial-gradient(900px 520px at 14% 25%, rgba(20,110,70,.36), rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 85% 35%, rgba(0,140,100,.18), rgba(0,0,0,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.35));
}
.hero__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__right{ order: -1; }
}

.pill{
  display:inline-flex; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,241,217,.28);
  background: rgba(20,241,217,.08);
  color: rgba(238,243,247,.92);
  font-weight:800;
  letter-spacing:.3px;
  text-transform: uppercase;
  font-size: 12px;
}
.pill--small{ font-size: 11px; padding:6px 10px; }

.hero .pill{
  border: 1px solid rgba(46,229,122,.35);
  color: rgba(46,229,122,.9);
  padding: 10px 14px;
  letter-spacing: .12em;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}

.hero__title{
  margin: 18px 0 14px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
  color: #e9f1ee;
  font-weight: 800;
}
.hero__title span{ color: #2ee57a; }

.hero__subtitle{
  color: rgba(233,241,238,.72);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 18px;
}

.hero__checks{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 58ch;
}
.hero__checks li{
  color: rgba(233,241,238,.86);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
}
.hero__checks li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid rgba(46,229,122,.55);
  box-shadow: 0 0 0 3px rgba(46,229,122,.08) inset;
}

.hero__cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.12);
  color: #e9f1ee;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hero .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(46,229,122,.5);
  box-shadow: 0 12px 26px rgba(0,0,0,.35), 0 0 0 4px rgba(46,229,122,.10);
}
.hero .btn--primary{
  background: linear-gradient(180deg, #24cf6a, #18b25b);
  color: #04120b;
  border-color: rgba(46,229,122,.55);
}
.hero .btn--ghost{
  background: rgba(0,0,0,.18);
}

.hero__fineprint{
  margin-top: 10px;
  color: rgba(233,241,238,.55);
  font-size: 12px;
}

.hero__right{
  display: flex;
  justify-content: center;
  align-items: center;
}

.bubbleField{
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.55));
}

.bubble{
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(120% 120% at 30% 20%,
      rgba(255,255,255,.10),
      rgba(255,255,255,.03) 42%,
      rgba(0,0,0,.14) 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 0 4px rgba(0,0,0,.18) inset;
  transform: translateZ(0);
}

.bubble.empty{
  opacity: .55;
  background:
    radial-gradient(120% 120% at 30% 20%,
      rgba(255,255,255,.08),
      rgba(255,255,255,.02) 45%,
      rgba(0,0,0,.16) 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.40);
}

.bubble.logo{
  opacity: 1;
  border-color: rgba(46,229,122,.16);
  box-shadow:
    0 18px 46px rgba(0,0,0,.52),
    0 0 0 5px rgba(46,229,122,.06) inset;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bubble.logo:hover{
  transform: scale(1.06);
  border-color: rgba(46,229,122,.45);
  box-shadow:
    0 22px 60px rgba(0,0,0,.60),
    0 0 0 6px rgba(46,229,122,.10) inset,
    0 0 34px rgba(46,229,122,.22);
}

.bubble.logo img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 18%;
  object-fit: contain;
  image-rendering: auto;
  filter: none;
  opacity: 1;
}

/* ========= POSIÇÕES (igual vibe do exemplo) ========= */
.L1{ width: 92px; height: 92px; left: 86px; top: 78px; }
.L2{ width: 86px; height: 86px; left: 312px; top: 110px; }
.L3{ width: 64px; height: 64px; left: 248px; top: 60px; opacity: .95; }
.L4{ width: 116px; height: 116px; left: 150px; top: 280px; }
.L5{ width: 70px; height: 70px; left: 108px; top: 196px; }
.L6{ width: 62px; height: 62px; left: 292px; top: 250px; }
.L7{ width: 58px; height: 58px; left: 356px; top: 282px; }

.b1{ width: 22px; height: 22px; left: 48px; top: 98px; opacity:.35; }
.b2{ width: 14px; height: 14px; left: 60px; top: 210px; opacity:.25; }
.b3{ width: 18px; height: 18px; left: 220px; top: 40px; opacity:.28; }
.b4{ width: 26px; height: 26px; left: 392px; top: 86px; opacity:.30; }
.b5{ width: 34px; height: 34px; left: 420px; top: 188px; opacity:.26; }
.b6{ width: 20px; height: 20px; left: 408px; top: 318px; opacity:.30; }
.b7{ width: 28px; height: 28px; left: 44px; top: 314px; opacity:.22; }
.b8{ width: 16px; height: 16px; left: 230px; top: 188px; opacity:.20; }
.b9{ width: 12px; height: 12px; left: 268px; top: 156px; opacity:.18; }
.b10{ width: 18px; height: 18px; left: 320px; top: 218px; opacity:.18; }
.b11{ width: 10px; height: 10px; left: 132px; top: 168px; opacity:.16; }
.b12{ width: 24px; height: 24px; left: 214px; top: 386px; opacity:.16; }

.bubble{
  animation: floaty 6.5s ease-in-out infinite;
}
.L2{ animation-delay: .2s; }
.L4{ animation-delay: .35s; }
.L6{ animation-delay: .15s; }
.b3{ animation-delay: .5s; }
.b6{ animation-delay: .7s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -.8px;
}
.u{
  position: relative;
  display:inline-block;
}
.u:after{
  content:"";
  position:absolute; left:0; right:0; bottom: 6px; height: 10px;
  background: rgba(20,241,217,.22);
  border-radius: 999px;
  z-index:-1;
}

.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.checks{ margin: 0 0 18px; padding: 0; list-style:none; }
.checks li{
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
  color: rgba(238,243,247,.86);
}
.checks li:before{
  content:"";
  position:absolute; left:0; top:6px;
  width:14px; height:14px; border-radius:4px;
  background: rgba(20,241,217,.18);
  border: 1px solid rgba(20,241,217,.35);
  box-shadow: 0 0 18px rgba(20,241,217,.12);
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 8px; justify-content:center; }
.micro{ color: rgba(238,243,247,.58); font-size: 12px; line-height:1.4; }

.hero__visual{ position:relative; min-height: 360px; display:flex; align-items:center; justify-content:center; }
.orb{ position:absolute; border-radius:999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.orb--big{ width: 260px; height: 260px; right: 40px; top: 20px; }
.orb--mid{ width: 170px; height: 170px; left: 40px; top: 90px; }
.orb--small{ width: 110px; height: 110px; right: 120px; bottom: 40px; }

.mock{
  width: min(420px, 92%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.mock__title{ font-weight:900; letter-spacing:.3px; }
.mock__line{ height:10px; border-radius:999px; background: rgba(255,255,255,.08); margin: 12px 0; }
.mock__line--short{ width: 62%; }
.mock__card{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0;
}
.mock__card-title{ font-weight:900; margin-top: 6px; }
.mock__card-sub{ color: rgba(238,243,247,.68); font-size: 13px; margin-top: 2px; }
.mock__foot{ margin-top: 8px; color: rgba(238,243,247,.55); font-size: 12px; }

.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight:900;
  font-size: 11px;
  letter-spacing:.3px;
}
.tag--good{ background: rgba(20,241,217,.14); border: 1px solid rgba(20,241,217,.35); }
.tag--hot{ background: rgba(25,195,125,.14); border: 1px solid rgba(25,195,125,.35); }

.strip{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.strip__grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 14px 0; }
.strip__item{
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,241,217,.18);
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  color: rgba(238,243,247,.84);
  font-weight:800;
}
.icon{ opacity:.9; }
@media (max-width: 900px){
  .strip__grid{ grid-template-columns: 1fr 1fr; }
}

.section{ padding: 56px 0; }
.h2{ font-size: clamp(26px, 3vw, 40px); margin: 0 0 12px; letter-spacing: -.6px; }
.center{ text-align:center; }
.sub{ color: var(--muted); max-width: 780px; margin: 0 auto 26px; line-height:1.6; }
.accent{
  color: var(--accent);
  font-weight: 900;
}

.neon-title{
  color: #1dff6f;
  text-shadow:
    0 0 10px rgba(29,255,111,.55),
    0 0 24px rgba(29,255,111,.45),
    0 0 40px rgba(29,255,111,.35);
}

.neon-emph{
  color: #1dff6f;
  text-shadow:
    0 0 8px rgba(29,255,111,.5),
    0 0 18px rgba(29,255,111,.35);
}

.logo-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0 26px;
}
.logo-card{
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 24px;
  display:flex; align-items:center; justify-content:center;
  transition: all .3s ease;
  border: 1px solid rgba(20,241,217,.18);
  box-shadow: 0 10px 30px rgba(20,241,217,.10);
}
.logo-card img{
  max-width: 320px;
  max-height: 160px;
  filter: none;
  opacity: 1;
  transition: all .3s ease;
}
.logo-card:hover{
  transform: translateY(-6px);
  border-color: #1aff64;
  box-shadow: 0 20px 40px rgba(26,255,100,.15);
}
.logo-card:hover img{
  filter: none;
  transform: scale(1.05);
}

.callout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
  margin-top: 8px;
}
@media (max-width: 900px){
  .callout{ grid-template-columns: 1fr; }
}
.callout__left{
  border-radius: var(--radius);
  border: 1px solid rgba(20,241,217,.18);
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(20,241,217,.10);
}
.callout__left h3{ margin:0 0 8px; font-size: 22px; }
.callout__left p{ margin:0; color: var(--muted); line-height:1.6; }
.badge{
  border-radius: var(--radius);
  border: 1px solid rgba(20,241,217,.18);
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(20,241,217,.10);
}
.badge__top{ color: #fff; font-weight:800; margin-left: -6px; text-shadow: none; }
.badge__big{ margin-top: 8px; font-weight: 1000; font-size: 26px; color: #1dff6f; text-shadow: 0 0 10px rgba(29,255,111,.55), 0 0 24px rgba(29,255,111,.45); }
.badge__sub{ margin-top: 10px; color: var(--muted); line-height:1.6; }

.cta-center{ display:flex; justify-content:center; gap: 12px; flex-wrap:wrap; margin-top: 22px; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr; } }
.step{
  border-radius: var(--radius);
  border: 1px solid rgba(20,241,217,.18);
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(20,241,217,.10);
}
.step__n{
  width:34px; height:34px; border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(20,241,217,.12);
  border: 1px solid rgba(20,241,217,.22);
  font-weight: 1000;
}
.step__t{ margin-top: 10px; font-weight: 1000; }
.step__p{ margin-top: 6px; color: var(--muted); line-height:1.6; }

.proof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
  align-items:center;
}
@media (max-width: 900px){ .proof{ grid-template-columns: 1fr; } }
.proof__img{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  transform: scale(0.8);
  transform-origin: center;
  box-shadow:
    0 0 18px rgba(20,241,217,.55),
    0 0 50px rgba(20,241,217,.35),
    0 0 90px rgba(20,241,217,.25);
}
.proof__copy h3{ margin: 0 0 8px; font-size: 22px; }
.proof__copy p{ margin: 0 0 12px; color: var(--muted); line-height:1.6; }

.news-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

/* Neon na imagem de reportagens (Novo Projeto (1)) */
.report-image{
  display:flex;
  justify-content:center;
  margin: 10px auto 14px;
}
.report-image img{
  width: min(1100px, 100%);
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 0 8px rgba(20,241,217,.6))
    drop-shadow(0 0 24px rgba(20,241,217,.38))
    drop-shadow(0 0 60px rgba(20,241,217,.22));
}

.report-collage{
  position: relative;
  width: min(1100px, 100%);
  height: 560px;
  margin: 26px auto 10px;
}

.report-card{
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(20,241,217,.18);
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  box-shadow: 0 14px 30px rgba(20,241,217,.15), 0 10px 30px rgba(0,0,0,.35);
  overflow: hidden;
}

.report-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* tamanhos */
.report-card--center{ width: 260px; height: 260px; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; }
.report-card--top1{ width: 170px; height: 170px; left: 18%; top: 8%; z-index: 2; }
.report-card--top2{ width: 180px; height: 180px; left: 50%; top: 4%; transform: translateX(-50%); z-index: 2; }
.report-card--top3{ width: 170px; height: 170px; right: 16%; top: 10%; z-index: 2; }
.report-card--bottom1{ width: 170px; height: 170px; left: 20%; bottom: 6%; z-index: 2; }
.report-card--bottom2{ width: 180px; height: 180px; left: 50%; bottom: 2%; transform: translateX(-50%); z-index: 2; }
.report-card--bottom3{ width: 170px; height: 170px; right: 18%; bottom: 6%; z-index: 2; }
.report-card--side-left{ width: 150px; height: 150px; left: 4%; top: 48%; transform: translateY(-50%); z-index: 1; }
.report-card--side-right{ width: 160px; height: 160px; right: 4%; top: 50%; transform: translateY(-50%); z-index: 1; }
.report-card--tall{ width: 170px; height: 250px; }

@media (max-width: 900px){
  .report-collage{ height: 520px; }
  .report-card--center{ width: 220px; height: 220px; }
  .report-card--tall{ width: 140px; height: 210px; }
}
@media (max-width: 680px){
  .report-collage{ height: 460px; }
  .report-card--center{ width: 200px; height: 200px; }
}
@media (max-width: 900px){ .news-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .news-grid{ grid-template-columns: 1fr;} }
.news-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px;
  min-height: 120px;
}
.news-card__title{ font-weight:900; line-height:1.35; }
.news-card__src{ margin-top: 10px; color: rgba(238,243,247,.55); font-size: 12px; }

.price-wrap{ display:flex; justify-content:center; margin-top: 26px; }
.price-card{
  width: min(420px, 100%);
  min-height: 560px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(45,45,45,.98), rgba(32,32,32,.98));
  padding: 28px 26px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(46,229,122,.28),
    0 0 60px rgba(46,229,122,.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.price-top{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 0; text-align:center; }
.strike{ color: rgba(238,243,247,.70); font-weight:800; text-decoration: none; font-size: 1.3em; }
.strike-amount{ text-decoration: line-through; text-decoration-thickness: 2px; }
.price-mid{ text-align:center; margin-top: -12px; }
.price-label{ color: var(--accent); font-weight:900; letter-spacing:.6px; text-transform: uppercase; font-size: 39px; line-height: 1; }
.price{
  display:flex; align-items:baseline; justify-content:center;
  gap: 8px;
  margin-top: 10px;
  font-family: "Impact", "Arial Black", "Segoe UI", system-ui, sans-serif;
  position: relative;
}
.price__currency{
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
}
.price__big{ font-weight: 900; font-size: 158px; line-height: .9; letter-spacing: -2px; color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,.45); }
.price__rest{ font-weight: 900; font-size: 43px; color: rgba(238,243,247,.98); }
.price__per{ font-weight: 900; font-size: 23px; color: #fff; }
.price__stack{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.price__stack .price__rest{
  line-height: 1;
}
.price__stack .price__per{
  line-height: 1;
  margin-top: 2px;
}
.price-sub{ margin-top: 8px; color: rgba(238,243,247,.65); font-size: 13px; }

.price-list{
  margin: 16px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
  display:grid;
  gap: 10px;
  color: rgba(238,243,247,.84);
  font-weight: 800;
}

.faq{
  display:grid;
  grid-template-columns: .4fr .6fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 900px){ .faq{ grid-template-columns: 1fr; } }
.faq__title{
  font-size: 72px;
  font-weight: 1100;
  letter-spacing: -2px;
  color: #1dff6f;
  text-shadow:
    0 0 10px rgba(29,255,111,.55),
    0 0 24px rgba(29,255,111,.45),
    0 0 40px rgba(29,255,111,.35);
  text-transform: uppercase;
}
.acc{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.acc summary{
  cursor:pointer;
  font-weight: 1000;
  color: rgba(238,243,247,.90);
  list-style:none;
}
.acc summary::-webkit-details-marker{ display:none; }
.acc__body{ margin-top: 10px; color: var(--muted); line-height:1.6; }

.footer{ padding-bottom: 60px; }
.top-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.top-footer span{ color: rgba(238,243,247,.92); }
.top-footer--sticky{
  position: sticky;
  top: 0;
  z-index: 60;
  margin: 10px auto 0;
  width: min(1100px, 92vw);
  backdrop-filter: blur(8px);
}
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,.45);
  color: #eafff3;
  font-weight: 800;
  background: transparent;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-outline:hover{
  transform: translateY(-1px);
  background: rgba(37,211,102,.08);
  border-color: rgba(37,211,102,.7);
}
.footer__row{
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer__links a{ color: rgba(238,243,247,.62); margin-left: 12px; }
.footer__links a:hover{ color: var(--text); }

@media (max-width: 900px){
  .top-footer{ flex-direction: column; text-align:center; }
}

/* WhatsApp flutuante — SOMENTE LOGO */
.wa-float-icon{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: transparent;

  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .15s ease, box-shadow .15s ease;
}

.wa-float-icon img{
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Hover premium */
.wa-float-icon:hover{
  transform: scale(1.06);
  box-shadow: 0 14px 34px rgba(37,211,102,.65);
}

@media (max-width: 900px) {
  .topbar__inner { gap: 10px; }
  .topbar-cta{
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    font-size: 12px;
  }
}

/* ===== Trust / Garantia section ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
  border-radius: var(--radius);
  border: 1px solid rgba(20,241,217,.18);
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(20,241,217,.10);
}
.trust-title {
  font-weight: 1000;
  margin-bottom: 6px;
}
.trust-text {
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Animação leve de entrada (sutil) ===== */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UX: scroll suave + âncoras com folga do topbar ===== */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 86px; }

/* ===== Mobile Sticky CTA Bar ===== */
.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .footer { padding-bottom: 120px; } /* espaço p/ barra fixa */
  .wa-float-icon { bottom: 86px; }   /* não brigar com a barra fixa */

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
  }

  .mobile-cta .btn {
    flex: 1;
    padding: 14px 14px;
    font-size: 14px;
  }

}

/* ===== Micro animação de destaque CTA (sutil) ===== */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(20,241,217,.18); }
  50%      { box-shadow: 0 10px 36px rgba(20,241,217,.30); }
}
.btn--primary {
  animation: pulseGlow 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary { animation: none; }
  html { scroll-behavior: auto; }
}

.lp-hero-sites{
  padding: 80px 0;
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(0,255,153,.16), transparent 60%),
    radial-gradient(800px 520px at 95% 30%, rgba(0,200,140,.10), transparent 60%),
    #070a0a;
}

.lp-wrap{ width:min(1100px, 92vw); margin:0 auto; }

.lp-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items:start;
}

.lp-eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(255,255,255,.75);
  border:1px solid rgba(0,255,153,.25);
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:18px;
}

.lp-title{
  font-size: clamp(40px, 4.6vw, 64px);
  line-height:1.08;
  margin:0 0 14px;
  color:#fff;
  font-weight: 900;
}

.lp-accent{ color:#25D366; }

.lp-subtitle{
  margin:0 0 18px;
  color: rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.6;
  max-width: 52ch;
}

.lp-bullets{
  list-style:none;
  margin: 0 0 22px;
  padding:0;
  display:grid;
  gap: 12px;
}

.lp-bullets li{
  position:relative;
  padding-left: 26px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
}

.lp-bullets li::before{
  content:"";
  position:absolute;
  left:0; top:7px;
  width:14px; height:14px;
  border-radius:4px;
  border:1px solid rgba(37,211,102,.55);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}

.lp-cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 6px;
}

.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration:none;
  transition: transform .12s ease, filter .12s ease;
  white-space:nowrap;
}

.lp-btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.lp-btn-primary{
  background: #25D366;
  color:#06110a;
}

.lp-btn-ghost{
  border:1px solid rgba(37,211,102,.35);
  color:#fff;
  background: rgba(0,0,0,.25);
}

.lp-note{
  margin-top: 10px;
  font-size:12px;
  color: rgba(255,255,255,.55);
}

/* Bubbles */
.lp-hero-bubbles{
  position:relative;
  min-height: 420px;
  border-radius: 18px;
}

.site-bubble{
  position:absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #0f1f18;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.site-bubble img{
  max-width: 68%;
  max-height: 68%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.site-bubble img.logo-big{
  max-width: 75%;
}

.site-bubble:hover{
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 28px rgba(0,255,160,0.35);
}

/* posições (ajuste fino se quiser) */
.b1{ top: 18px;  left: 110px; width: 98px; height: 98px; }
.b2{ top: 90px;  right: 40px; }
.b3{ top: 170px; left: 60px; }
.b4{ top: 235px; right: 120px; width: 92px; height: 92px; }
.b5{ top: 310px; left: 135px; }
.b6{ top: 270px; right: 25px; }
.b7{ top: 25px;  right: 140px; width: 76px; height: 76px; opacity:.9; }

/* decor dots */
.dot{
  position:absolute;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}
.d1{ width: 18px; height:18px; top: 70px; left: 30px; }
.d2{ width: 26px; height:26px; top: 140px; right: 10px; }
.d3{ width: 14px; height:14px; top: 210px; left: 12px; }
.d4{ width: 30px; height:30px; bottom: 40px; right: 90px; }
.d5{ width: 20px; height:20px; bottom: 120px; left: 40px; }

@media (max-width: 980px){
  .lp-hero-grid{ grid-template-columns: 1fr; }
  .lp-hero-bubbles{ min-height: 380px; }
  .lp-title{ font-size: 40px; }
}

/* ====== Companhias aéreas (logos) ====== */
.airlines-wrap{
  padding: 72px 0;
}

.airlines-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

.airlines-title{
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 8px;
  text-align: center;
}

.airlines-subtitle{
  margin: 0 0 28px;
  opacity: .85;
  line-height: 1.45;
  text-align: center;
}

.airlines-block{
  margin: 26px 0 34px;
}

.airlines-region{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  opacity: .95;
  text-align: center;
}

.airlines-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0px;
  row-gap: 16px;
  justify-items: center;
}

.airlines-grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airlines-grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.airlines-grid img{
  width: 100%;
  max-width: 256px;
  height: 98px;
  object-fit: contain;
  border-radius: 10px;
  padding: 8px 10px;

  /* “card” bonito */
  background: radial-gradient(circle at 30% 20%, rgba(20,241,217,.14), transparent 55%),
              rgba(255,255,255,.03);
  border: 1px solid rgba(20,241,217,.18);
  box-shadow: 0 10px 30px rgba(20,241,217,.10);

  /* efeito premium (sempre colorido) */
  filter: none;
  opacity: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: default;
}

.airlines-grid img:hover{
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 2px rgba(34,197,94,.12) inset;
}

/* Responsivo */
@media (max-width: 980px){
  .airlines-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .airlines-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .airlines-grid img{ height: 88px; }
}

/* ===== BOLHAS (restaurado) ===== */
.bubbles-wrap{
  position: relative;
  width: min(520px, 44vw);
  aspect-ratio: 1 / 1;
  margin-left: auto;
}

.bubbles-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== ÍCONES NO HERO ===== */
.sites-icons{
  width: min(560px, 46vw);
  margin-left: auto;
}

.sites-icons__title{
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  margin: 0 0 18px;
  text-align: center;
}

.logo-grid--compact{
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 20px;
  margin: 0;
}

.logo-grid--compact .logo-card{
  padding: 24px;
  border-radius: 16px;
  min-height: 160px;
}

.logo-grid--compact .logo-card img{
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: contain;
}

.logo-grid--compact .logo-123{
  width: 144px;
  height: 144px;
}

@media (max-width: 900px){
  .sites-icons{ width: min(520px, 92vw); margin: 24px auto 0; }
  .logo-grid--compact{ grid-template-columns: repeat(2, minmax(160px, 1fr)); }
}
/* ===== /ÍCONES NO HERO ===== */

.bubbles-field{
  position: relative;
  width: 100%;
  height: 100%;
}

/* bolha base */
.bubble{
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(10, 18, 16, .55);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 18px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

/* bolhas vazias */
.bubble--ghost{
  background: rgba(255,255,255,.035);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 18px 40px rgba(0,0,0,.25);
  opacity: .9;
}

/* bolhas com logo */
.bubble--logo{
  display: grid;
  place-items: center;
}

.bubble--logo img{
  width: 68%;
  height: 68%;
  object-fit: contain;
  display: block;
  filter: none !important;
}

/* hover bonito (opcional) */
.bubble--logo:hover{
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(0,255,170,.28),
    0 22px 55px rgba(0,0,0,.45);
}

/* responsivo */
@media (max-width: 900px){
  .bubbles-wrap{
    width: min(460px, 88vw);
    margin: 24px auto 0;
  }
}
/* ===== /BOLHAS ===== */

