/* =========================
   Project Apollo - Styles
   Tech / Neon / Circuit vibe
   ========================= */

:root{
  --bg-0:#040812;
  --bg-1:#060d1e;
  --panel:#071226cc;
  --panel-solid:#071226;
  --stroke:#0c2a4a;
  --text:#eaf2ff;
  --muted:#b7c7e6;
  --muted2:#89a3cf;

  --cyan:#33d6ff;
  --cyan2:#00b7ff;
  --blue:#2b6bff;
  --glow: 0 0 18px rgba(51,214,255,.35), 0 0 40px rgba(0,183,255,.18);
  --shadow: 0 12px 50px rgba(0,0,0,.55);

  --radius: 18px;
  --radius-sm: 12px;

  --max: 1120px;
  --pad: clamp(18px, 3.6vw, 34px);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(51,214,255,.14), transparent 60%),
              radial-gradient(900px 700px at 90% 20%, rgba(43,107,255,.12), transparent 55%),
              radial-gradient(700px 600px at 50% 110%, rgba(0,183,255,.10), transparent 60%),
              linear-gradient(180deg, var(--bg-0), var(--bg-1));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 2*var(--pad)));
  margin-inline:auto;
}

::selection{ background: rgba(51,214,255,.25); }

/* =========================
   Subtle animated grid/circuit
   ========================= */
.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.55;
  z-index:-1;
  background-image:
    linear-gradient(to right, rgba(51,214,255,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(51,214,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(closest-side at 50% 30%, black 0%, transparent 72%);
  transform: translateZ(0);
}

.bg-noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.045;
  z-index:-1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.bg-orb{
  position:fixed;
  width:820px;
  height:820px;
  border-radius:999px;
  filter: blur(55px);
  opacity:.22;
  z-index:-1;
  background: radial-gradient(circle at 30% 25%, rgba(51,214,255,.75), rgba(0,183,255,.12) 55%, transparent 70%);
  top:-260px;
  left:-260px;
  animation: floatOrb 10s ease-in-out infinite;
}
.bg-orb.orb-2{
  width:740px; height:740px;
  top:auto; bottom:-320px;
  left:auto; right:-280px;
  opacity:.18;
  background: radial-gradient(circle at 60% 50%, rgba(43,107,255,.7), rgba(0,183,255,.08) 60%, transparent 72%);
  animation-delay:-3s;
}
@keyframes floatOrb{
  0%,100%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(24px, 18px, 0); }
}

/* =========================
   Top bar
   ========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5,10,20,.85), rgba(5,10,20,.35));
  border-bottom: 1px solid rgba(51,214,255,.12);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-badge{
  width:40px;height:40px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(51,214,255,.35), transparent 55%),
    linear-gradient(180deg, rgba(10,30,52,.8), rgba(7,18,38,.9));
  border: 1px solid rgba(51,214,255,.22);
  box-shadow: var(--glow);
  display:grid;
  place-items:center;
}
.brand-badge svg{ width:22px;height:22px; opacity:.95; }
.brand-title{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand-title strong{
  letter-spacing:.8px;
}
.brand-title span{
  font-size:12px;
  color: var(--muted2);
}

.topbar-cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.pill{
  font-size:12px;
  color: rgba(234,242,255,.9);
  border: 1px solid rgba(51,214,255,.2);
  background: rgba(7,18,38,.55);
  padding: 8px 10px;
  border-radius: 999px;
  white-space:nowrap;
}

/* =========================
   Hero
   ========================= */
.hero{
  padding: 38px 0 18px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(51,214,255,.18);
  background: rgba(7,18,38,.55);
  color: var(--muted);
  font-size: 13px;
  letter-spacing:.2px;
  width: fit-content;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.kicker i{
  width:10px;height:10px;
  border-radius:99px;
  background: var(--cyan);
  box-shadow: var(--glow);
}

.h1{
  margin: 16px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}
.h1 .accent{
  background: linear-gradient(90deg, var(--cyan), #a8f0ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 0 25px rgba(51,214,255,.15);
}

.subhead{
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height:1.55;
  max-width: 62ch;
}

.hero-card{
  border-radius: var(--radius);
  border: 1px solid rgba(51,214,255,.16);
  background: linear-gradient(180deg, rgba(7,18,38,.72), rgba(7,18,38,.48));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.hero-card::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(600px 220px at 20% 10%, rgba(51,214,255,.14), transparent 55%),
    radial-gradient(420px 240px at 85% 0%, rgba(43,107,255,.12), transparent 55%);
  pointer-events:none;
}

.hero-card-inner{
  position:relative;
  padding: 18px;
}

.mockup{
  border-radius: 14px;
  border: 1px solid rgba(51,214,255,.12);
  box-shadow: 0 0 28px rgba(0,183,255,.12);
  overflow:hidden;
  background: rgba(0,0,0,.2);
}

.mockup img{
  width:100%;
  height:auto;
}

.stack{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.stack .row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height:1.45;
}
.stack .dot{
  width:10px;height:10px;
  margin-top:5px;
  border-radius:99px;
  background: rgba(51,214,255,.85);
  box-shadow: var(--glow);
  flex:0 0 auto;
}

/* =========================
   Sections / Panels
   ========================= */
.section{
  padding: 22px 0;
}

.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(51,214,255,.14);
  background: linear-gradient(180deg, rgba(7,18,38,.68), rgba(7,18,38,.42));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.panel::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 18% 10%, rgba(51,214,255,.12), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(43,107,255,.10), transparent 38%);
  pointer-events:none;
}

.panel-inner{
  position:relative;
  padding: 22px;
}

.h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.3px;
}
.h2 .accent{
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(51,214,255,.15);
}
.p{
  margin: 10px 0;
  color: var(--muted);
  line-height:1.7;
  font-size: 16px;
}

.hr{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(51,214,255,.18), transparent);
  margin: 16px 0;
}

/* =========================
   VSL / Video placeholder
   ========================= */
.video-wrap{
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 1px solid rgba(51,214,255,.14);
  background:
    radial-gradient(circle at 50% 40%, rgba(51,214,255,.12), transparent 55%),
    linear-gradient(180deg, rgba(3,8,18,.75), rgba(3,8,18,.92));
  box-shadow: 0 0 28px rgba(0,183,255,.10);
  overflow:hidden;
  position:relative;
}

.video-wrap iframe,
.video-wrap video{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.video-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 18px;
  color: var(--muted);
  position:relative;
}

.play{
  width:76px;height:76px;
  border-radius:99px;
  border: 1px solid rgba(51,214,255,.28);
  background: rgba(7,18,38,.65);
  box-shadow: var(--glow);
  display:grid;
  place-items:center;
  margin: 0 auto 10px;
}
.play:before{
  content:"";
  width:0;height:0;
  border-left: 18px solid rgba(234,242,255,.95);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left:4px;
  opacity:.9;
}

.small{
  font-size: 13px;
  color: var(--muted2);
}

/* =========================
   Feature grid
   ========================= */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns:1fr; }
}

.card{
  border-radius: var(--radius-sm);
  border: 1px solid rgba(51,214,255,.12);
  background: rgba(7,18,38,.48);
  padding: 16px;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(420px 160px at 10% 0%, rgba(51,214,255,.10), transparent 55%);
  pointer-events:none;
}

.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.2px;
}
.card p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  font-size: 14.5px;
}

/* =========================
   Pricing
   ========================= */
.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .pricing{ grid-template-columns:1fr; }
}

.price-card{
  border-radius: var(--radius);
  border: 1px solid rgba(51,214,255,.14);
  background: linear-gradient(180deg, rgba(7,18,38,.70), rgba(7,18,38,.42));
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}

.price-card.featured{
  border-color: rgba(51,214,255,.28);
  box-shadow: 0 0 0 1px rgba(51,214,255,.18), var(--shadow), var(--glow);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(51,214,255,.22);
  background: rgba(7,18,38,.65);
  color: rgba(234,242,255,.92);
  font-size: 12px;
  letter-spacing:.2px;
}

.badge i{
  width:8px;height:8px;
  border-radius:99px;
  background: var(--cyan);
  box-shadow: var(--glow);
}

.price-title{
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing:-.2px;
}

.price{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin: 10px 0 12px;
}
.price strong{
  font-size: 40px;
  letter-spacing:-1px;
}
.price span{
  color: var(--muted2);
  font-size: 13px;
  padding-bottom: 6px;
}

.ul{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.65;
  font-size: 14.5px;
}
.ul li{ margin: 7px 0; }

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(51,214,255,.22);
  background:
    radial-gradient(circle at 30% 20%, rgba(51,214,255,.32), rgba(0,183,255,.12) 35%, rgba(7,18,38,.68) 70%),
    linear-gradient(180deg, rgba(10,32,58,.85), rgba(7,18,38,.85));
  color: rgba(234,242,255,.98);
  box-shadow: var(--glow);
  font-weight: 700;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
  user-select:none;
  width:100%;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(51,214,255,.36);
}

.btn:active{ transform: translateY(0px); }

.btn.secondary{
  background: rgba(7,18,38,.55);
  box-shadow:none;
  border-color: rgba(51,214,255,.14);
  font-weight: 650;
}

/* =========================
   Footer
   ========================= */
.footer{
  padding: 28px 0 40px;
  color: var(--muted2);
  font-size: 12.5px;
}

.footer a{
  color: rgba(51,214,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.center{ text-align:center; }
.mt-8{ margin-top:8px; }
.mt-12{ margin-top:12px; }
.mt-16{ margin-top:16px; }
.mt-22{ margin-top:22px; }
.mt-28{ margin-top:28px; }

/* =========================
   Accessibility helpers
   ========================= */
.visually-hidden{
  position:absolute !important;
  height:1px; width:1px;
  overflow:hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space:nowrap;
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Login link */
.topbar-login {
  font-size: 14px;
  color: rgba(234, 242, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
}

.topbar-login strong {
  color: #ffffff;
  font-weight: 600;
}

.topbar-login:hover {
  text-decoration: underline;
}

/* CTA Button */
.topbar-btn {
  padding: 10px 20px; /* menor que o botão principal */
  border-radius: 12px;
  background: linear-gradient(180deg, #0bbcff, #0564ff);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 0.25s ease;
}

.topbar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 188, 255, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .brand {
    align-self: flex-start;
  }

  .topbar-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .topbar-btn {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    box-sizing: border-box;
  }

  .topbar-login {
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
  }
}

/* ===== PRICING COMPACT REWORK ===== */

.pricing-single.compact {
  max-width: 720px;          /* caixa menor */
  margin: 0 auto;
}

.pricing-single .panel-inner {
  padding: 32px 28px;        /* reduz padding geral */
  text-align: center;
}

/* Guarantee */
.pricing-guarantee {
  font-size: 13px;
  font-weight: 600;
  color: #9be7ff;
  margin-bottom: 14px;
}

/* Title */
.pricing-single h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.pricing-single .muted {
  font-size: 14px;
  opacity: 0.85;
}

/* Mockup */
.pricing-mockup {
  margin: 18px auto 8px;
}

.pricing-mockup img {
  max-width: 140px;          /* bem menor */
  opacity: 0.9;
}

/* Price block */
.pricing-price {
  margin: 18px 0 16px;
}

.price-old {
  font-size: 16px;
  text-decoration: line-through;
  color: #ff5a5a;     /* vermelho */
  opacity: 0.9;
}

.price-current {
  font-size: 56px;    /* destaque forte */
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
  color: #3cff8f;     /* verde */
}

.price-note {
  font-size: 14px;
  color: #3cff8f;
}


/* Features */
.pricing-features {
  max-width: 420px;
  margin: 16px auto 0;
}

.pricing-features li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* CTA */
.pricing-single .btn-large {
  margin-top: 22px;
  padding: 14px 22px;
  font-size: 16px;
  max-width: 420px;
  width: 100%;
}

/* Payments */
.payment-icons {
  margin-top: 16px;
}

.payment-icons img {
  max-width: 260px;
  opacity: 0.85;
}

/* Footer note */
.pricing-single .tiny {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-single.compact {
    max-width: 100%;
  }

  .pricing-single .panel-inner {
    padding: 26px 18px;
  }

  .price-current {
    font-size: 48px;
  }

  .pricing-mockup img {
    max-width: 120px;
  }
}
.payment-icons {
  display: flex;
  justify-content: center;
}

.payment-bubble {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.payment-bubble img {
  max-width: 260px;
  width: 100%;
  height: aut

}

.topbar-btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.topbar-btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;

  /* remove brilho do botão ativo */
  box-shadow: none;
  filter: grayscale(40%) brightness(0.9);

  /* deixa o fundo mais neutro */
  background: rgba(7,18,38,.45);
  border-color: rgba(51,214,255,.08);
}

.btn-disabled:hover {
  transform: none;
  filter: grayscale(40%) brightness(0.9);
}