/* ============================================
   MAX STREAMING — Landing Page
   ============================================ */

:root {
  --bg-dark: #030712;
  --bg-darker: #010409;
  --bg-panel: #0a1424;
  --bg-card: #0d1a2e;
  --blue: #1e90ff;
  --blue-bright: #3b9dff;
  --blue-deep: #0f6fd6;
  --green: #22c55e;
  --green-dark: #16a34a;
  --gold: #f5c518;
  --text: #ffffff;
  --text-muted: #9fb0c4;
  --text-dim: #6b7d94;
  --border: rgba(59, 157, 255, 0.15);
  --radius: 14px;
  --maxw: 1180px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  border: none;
  border-radius: 8px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.35);
}
.btn-primary:hover { background: var(--blue); }

.btn-whatsapp {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-whatsapp:hover { border-color: var(--green); background: rgba(34, 197, 94, 0.1); }
.btn-whatsapp i { color: #25d366; font-size: 1.15rem; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}
.site-header.scrolled { background: rgba(3, 7, 18, 0.97); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; line-height: 1; }
.logo-img { height: 46px; width: auto; }
.footer-logo { height: 56px; }

.nav { display: flex; gap: 26px; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--blue-bright); }

.btn-header { padding: 11px 22px; }
.btn-header.btn-whatsapp {
  background: var(--green);
  border: none;
  color: #fff;
}
.btn-header.btn-whatsapp i { color: #fff; }
.btn-header:hover { background: var(--green-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 130px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.55) 0%, rgba(5, 16, 31, 0.75) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--blue-bright);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.accent { color: var(--blue-bright); }

.hero-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 460px;
  margin-bottom: 26px;
}

.hero-features { margin-bottom: 32px; display: grid; gap: 12px; }
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #dbe6f2;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--blue-deep);
  color: #fff;
  border-radius: 5px;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Hero image ---- */
.hero-image { position: relative; width: min(560px, 100%); margin: 0 auto; }
.hero-img-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(30, 144, 255, 0.12);
  background: linear-gradient(145deg, #0c1b30, #060d18);
  min-height: 300px;
}

/* ============ SECTION SHARED ============ */
.section-eyebrow {
  text-align: center;
  color: var(--blue-bright);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.title-underline {
  width: 60px; height: 3px;
  background: var(--blue);
  margin: 0 auto 44px;
  border-radius: 2px;
}

/* ============ PLANOS ============ */
.planos {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(5, 16, 31, 0.85) 0%, rgba(3, 10, 21, 0.85) 100%);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.plano-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.plano-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, #0e1f38, #0a1526);
  box-shadow: 0 0 40px rgba(30, 144, 255, 0.2);
}

.ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.plano-icon {
  font-size: 2.1rem;
  text-align: center;
  color: var(--blue-bright);
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.plano-icon-num { display: inline-flex; justify-content: center; width: 100%; position: relative; }
.icon-num {
  position: absolute;
  top: 58%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--blue-bright);
}

.plano-name {
  text-align: center;
  color: var(--blue-bright);
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
}
.plano-access {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.plano-old-price {
  text-align: center;
  color: #e05a5a;
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.plano-price {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}
.plano-price .currency { font-size: 0.95rem; font-weight: 600; align-self: flex-start; margin-top: 6px; }
.plano-price .value { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.plano-price .cents { font-size: 1.3rem; font-weight: 800; }
.plano-price .period { font-size: 0.8rem; color: var(--text-muted); width: 100%; margin-top: 2px; }

.plano-tag {
  background: var(--blue-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.plano-tag.tag-save { background: var(--gold); color: #1a1a1a; }

.plano-features { display: grid; gap: 11px; margin-bottom: 22px; flex-grow: 1; }
.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #cdd9e6;
}
.plano-features li i { color: var(--blue-bright); font-size: 0.95rem; flex-shrink: 0; }

.btn-plan {
  width: 100%;
  background: var(--blue-deep);
  color: #fff;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: auto;
}
.btn-plan:hover { background: var(--blue); transform: translateY(-2px); }
.btn-plan-featured { box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4); }

/* Payment bar */
.payment-bar {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  background: rgba(13, 26, 46, 0.5);
}
.payment-title {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.payment-item small { color: var(--text-dim); font-weight: 500; font-size: 0.68rem; }
.payment-item i { color: var(--blue-bright); font-size: 1.25rem; }
.payment-item .fa-pix { color: #32bcad; }
.payment-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* ============ VANTAGENS ============ */
.vantagens {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(3, 10, 21, 0.85), rgba(4, 16, 30, 0.85));
}
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.vantagem { text-align: center; }
.vant-icon {
  font-size: 2.6rem;
  color: var(--blue-bright);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(30,144,255,0.4));
}
.vantagem h4 {
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 8px;
}
.vantagem p { color: var(--text-muted); font-size: 0.85rem; }

/* ============ DISPOSITIVOS ============ */
.dispositivos {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(4, 16, 30, 0.85), rgba(5, 16, 31, 0.85));
}
.dispositivos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 44px 0;
}
.dispositivo {
  text-align: center;
  padding: 16px 10px;
}
.dispositivo img {
  width: 100%;
  max-width: 130px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.dispositivo span { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

.secure-badge {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 26px;
  background: rgba(13, 26, 46, 0.5);
}
.secure-ic { font-size: 1.9rem; color: var(--blue-bright); }
.support-ic i, .secure-ic i { display: block; }
.secure-badge strong { font-size: 0.9rem; font-weight: 700; display: block; }
.secure-badge p { color: var(--text-muted); font-size: 0.82rem; }

/* ============ CTA ============ */
.cta {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(5, 16, 31, 0.88), rgba(3, 10, 21, 0.92));
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 30px;
  align-items: center;
}
.cta-text h2 {
  font-size: 1.9rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-text p { color: var(--text-muted); font-size: 0.9rem; }

.cta-support {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.support-ic { font-size: 2.2rem; color: var(--blue-bright); }
.cta-support strong { color: var(--blue-bright); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.cta-support p { color: var(--text-muted); font-size: 0.82rem; }

.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s;
}
.cta-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(34, 197, 94, 0.5); }
.cta-whatsapp > i { font-size: 2.6rem; color: #fff; }
.cta-whatsapp strong { display: block; font-size: 1.05rem; font-weight: 800; color: #fff; }
.cta-whatsapp span { font-size: 0.82rem; color: rgba(255,255,255,0.9); }

/* ============ FOOTER ============ */
.site-footer {
  background: rgba(1, 4, 9, 0.92);
  padding-top: 54px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 16px 0 18px;
  max-width: 300px;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: 0.2s;
}
.social a:hover { background: var(--blue-deep); color: #fff; }

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue-bright);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-bright); }
.footer-col p i { color: var(--blue-bright); width: 18px; text-align: center; margin-right: 4px; }

.footer-pay { display: grid; gap: 8px; margin-bottom: 16px; }
.footer-pay span { color: var(--text-muted); font-size: 0.84rem; }
.footer-pay span i { color: var(--blue-bright); width: 18px; text-align: center; margin-right: 4px; }
.footer-pay .fa-pix { color: #32bcad; }
.footer-pay small { color: var(--text-dim); font-size: 0.7rem; }

.footer-secure { display: flex; gap: 16px; flex-wrap: wrap; }
.fs-badge {
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
}
.fs-badge i { margin-right: 4px; }
.fs-badge small { display: block; color: var(--text-dim); font-weight: 500; font-size: 0.66rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-bright); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
  z-index: 90;
  animation: pulse 2.2s infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float i { font-size: 2rem; color: #fff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
  .vantagens-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .dispositivos-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-support, .cta-whatsapp { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(3, 7, 18, 0.98);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .nav.open { transform: translateY(0); }
  .menu-toggle { display: flex; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .btn-header { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-features { display: inline-grid; text-align: left; }
  .hero-buttons { justify-content: center; }
  .hero-image { order: -1; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 560px) {
  .planos-grid { grid-template-columns: 1fr; }
  .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
  .dispositivos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.55rem; }
  .payment-methods { gap: 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* ============================================
   TECH / IMERSIVO + ANIMAÇÕES (Jogador Nº1)
   ============================================ */

/* ---- Barra de progresso de rolagem ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright), #7cc4ff);
  box-shadow: 0 0 12px rgba(59, 157, 255, 0.8);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ---- Canvas de partículas (fundo global) ---- */
.tech-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ---- Grade neon animada (fundo global) ---- */
.tech-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(59, 157, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 157, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 10%, transparent 72%);
  animation: gridDrift 24s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 46px 46px, 46px 46px; }
}

/* Garante que o conteúdo fique acima do fundo (header/float mantêm suas camadas) */
.hero, .planos, .vantagens, .dispositivos,
.cta, .site-footer { position: relative; z-index: 1; }

/* ---- Orbes de brilho no hero ---- */
.hero-orbs { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(30,144,255,0.55), transparent 70%);
  top: -80px; right: -60px;
  animation: floatOrb 12s ease-in-out infinite;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,196,255,0.35), transparent 70%);
  bottom: -80px; left: -40px;
  animation: floatOrb 15s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -30px); }
}
.hero-inner { position: relative; z-index: 2; }

/* ---- Brilho pulsante no título ---- */
.hero-title .accent {
  text-shadow: 0 0 24px rgba(59, 157, 255, 0.45);
  animation: neonPulse 3.5s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 22px rgba(59,157,255,0.35); }
  50% { text-shadow: 0 0 34px rgba(59,157,255,0.7); }
}

/* ---- Hero image flutuando suavemente + moldura tech ---- */
.hero-img-main {
  animation: floatY 6s ease-in-out infinite;
  border: 1px solid rgba(59, 157, 255, 0.25);
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Brilho ao passar o mouse nos botões (shine sweep) ---- */
.btn-primary, .btn-plan, .cta-whatsapp, .btn-header {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-plan::after, .cta-whatsapp::after, .btn-header::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after, .btn-plan:hover::after,
.cta-whatsapp:hover::after, .btn-header:hover::after { left: 130%; }

/* ---- Underline do título anima largura ---- */
.title-underline { animation: growLine 1s ease forwards; transform-origin: center; }
@keyframes growLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---- Borda animada no plano em destaque ---- */
.plano-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(130deg, var(--blue), transparent 40%, transparent 60%, var(--blue-bright));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 6s ease infinite;
  pointer-events: none;
}
@keyframes borderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Ícones de vantagem: leve brilho ao aparecer ---- */
.vantagem:hover .vant-icon { transform: translateY(-4px) scale(1.06); transition: transform 0.3s ease; }
.vant-icon { transition: transform 0.3s ease; }

/* ---- Dispositivos: leve elevação ---- */
.dispositivo { transition: transform 0.25s ease; border-radius: 12px; }
.dispositivo:hover { transform: translateY(-6px); }
.dispositivo:hover img { filter: drop-shadow(0 8px 18px rgba(59,157,255,0.35)); transition: filter 0.25s ease; }

/* ---- Reveal com deslocamento suave (stagger via JS inline delay) ---- */
.reveal { will-change: opacity, transform; }

/* ============ MODAIS ============ */
.link-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.link-btn:hover { color: var(--blue-bright); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(2, 6, 14, 0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1a2e, #081221);
  border: 1px solid rgba(59, 157, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(30,144,255,0.15);
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.modal-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(30,144,255,0.12);
  color: var(--blue-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.modal-head h3 { font-size: 1.35rem; font-weight: 800; font-style: italic; }

.modal-body {
  padding: 22px 28px 28px;
  overflow-y: auto;
}
.modal-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.modal-body strong { color: #dbe6f2; }
.modal-body h4 {
  color: var(--blue-bright);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 20px 0 8px;
}
.modal-body::-webkit-scrollbar { width: 8px; }
.modal-body::-webkit-scrollbar-thumb { background: rgba(59,157,255,0.3); border-radius: 8px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(255,80,80,0.15); color: #ff6b6b; transform: rotate(90deg); }

/* ============================================
   CYBERPUNK — LEDs, neon, glitch, scanlines, HUD
   ============================================ */

/* ---- Entrada animada do HERO (no load) ---- */
@keyframes introUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes introLeft {
  from { opacity: 0; transform: translateX(-22px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes introRight {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-eyebrow { animation: introUp 0.7s ease 0.15s both; }
.hero-title   { animation: introUp 0.8s ease 0.30s both; }
.hero-desc    { animation: introUp 0.8s ease 0.48s both; }
.hero-features li { animation: introLeft 0.6s ease both; }
.hero-features li:nth-child(1) { animation-delay: 0.62s; }
.hero-features li:nth-child(2) { animation-delay: 0.74s; }
.hero-features li:nth-child(3) { animation-delay: 0.86s; }
.hero-features li:nth-child(4) { animation-delay: 0.98s; }
.hero-buttons { animation: introUp 0.8s ease 1.12s both; }
.hero-image   { animation: introRight 0.9s ease 0.55s both; }

/* ---- Boot sweep (power-on) no hero ---- */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(59,157,255,0.28), transparent 14%);
  transform: translateY(-100%);
  animation: bootSweep 1.5s ease-out 0.1s 1 both;
}
@keyframes bootSweep {
  0% { transform: translateY(-100%); opacity: 0.9; }
  100% { transform: translateY(130%); opacity: 0; }
}

/* ---- LED piscante ---- */
.led {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue-bright);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--blue-bright), 0 0 16px var(--blue-bright);
  animation: ledBlink 1.4s ease-in-out infinite;
}
.led-red { background: #ff4155; box-shadow: 0 0 8px #ff4155, 0 0 16px #ff4155; }
@keyframes ledBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; box-shadow: 0 0 3px currentColor; }
}

/* ---- Glitch no texto em destaque ---- */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.85;
}
.glitch::before, .glitch::after { opacity: 0.6; }
.glitch::before {
  color: #7cc4ff;
  z-index: -1;
  animation: glitchA 7s infinite steps(1);
}
.glitch::after {
  color: #1560bd;
  z-index: -1;
  animation: glitchB 7s infinite steps(1);
}
@keyframes glitchA {
  0%, 88%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); opacity: 0; }
  90% { transform: translate(-3px, -2px); clip-path: inset(0 0 62% 0); opacity: 0.8; }
  93% { transform: translate(3px, 1px); clip-path: inset(30% 0 40% 0); opacity: 0.8; }
  96% { transform: translate(-2px, 2px); clip-path: inset(58% 0 8% 0); opacity: 0.8; }
}
@keyframes glitchB {
  0%, 88%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); opacity: 0; }
  91% { transform: translate(3px, 2px); clip-path: inset(12% 0 55% 0); opacity: 0.7; }
  94% { transform: translate(-3px, -1px); clip-path: inset(45% 0 22% 0); opacity: 0.7; }
  97% { transform: translate(2px, -2px); clip-path: inset(70% 0 5% 0); opacity: 0.7; }
}

/* ---- Scanlines CRT + varredura ---- */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0 2px,
    rgba(3, 12, 26, 0.06) 2px 3px
  );
}
.scanlines::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 140px;
  top: -140px;
  background: linear-gradient(to bottom, transparent, rgba(59, 157, 255, 0.07), transparent);
  animation: scanSweep 8s linear infinite;
}
@keyframes scanSweep {
  0% { top: -140px; }
  100% { top: 100%; }
}

/* ---- Moldura HUD (cantos + tag) ---- */
.hud-frame { position: relative; }
.hud-frame::before, .hud-frame::after {
  content: "";
  position: absolute;
  width: 36px; height: 36px;
  z-index: 3;
  pointer-events: none;
  border: 2px solid var(--blue-bright);
  filter: drop-shadow(0 0 6px rgba(59, 157, 255, 0.8));
}
.hud-frame::before { top: -7px; left: -7px; border-right: none; border-bottom: none; }
.hud-frame::after { bottom: -7px; right: -7px; border-left: none; border-top: none; }

.hud-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #eaf4ff;
  background: rgba(3, 12, 24, 0.72);
  border: 1px solid rgba(59, 157, 255, 0.5);
  padding: 5px 11px;
  border-radius: 5px;
  box-shadow: 0 0 14px rgba(59, 157, 255, 0.35);
  backdrop-filter: blur(4px);
}
.hud-tag .led { width: 7px; height: 7px; }

/* ---- Neon nos botões e cards ---- */
.btn-primary {
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.35), inset 0 0 0 1px rgba(124, 196, 255, 0.35);
  animation: btnNeon 2.8s ease-in-out infinite;
}
@keyframes btnNeon {
  0%, 100% { box-shadow: 0 6px 20px rgba(30,144,255,0.35), inset 0 0 0 1px rgba(124,196,255,0.3); }
  50% { box-shadow: 0 6px 26px rgba(30,144,255,0.6), inset 0 0 0 1px rgba(124,196,255,0.6); }
}

.plano-card { border-top: 2px solid rgba(59, 157, 255, 0.28); }
.plano-card:hover {
  border-color: rgba(59, 157, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 26px rgba(59, 157, 255, 0.28);
}

/* Divisor com brilho neon */
.title-underline { box-shadow: 0 0 12px rgba(59, 157, 255, 0.8); }

/* Ícones das vantagens com pulso neon */
.vant-icon i { animation: iconGlow 3s ease-in-out infinite; }
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(59,157,255,0.4)); }
  50% { filter: drop-shadow(0 0 14px rgba(59,157,255,0.9)); }
}

/* ============ ACESSIBILIDADE: reduz movimento ============ */
@media (prefers-reduced-motion: reduce) {
  .tech-grid, .orb, .hero-title .accent, .hero-img-main,
  .plano-card.featured::before, .whatsapp-float,
  .led, .glitch::before, .glitch::after, .scanlines::after,
  .btn-primary, .vant-icon i,
  .hero-eyebrow, .hero-title, .hero-desc, .hero-features li,
  .hero-buttons, .hero-image { animation: none !important; }
  .hero::after { display: none; }
  .tech-canvas { display: none; }
  .glitch::before, .glitch::after { opacity: 0; }
  .reveal { transition: opacity 0.3s ease; transform: none; }
}

/* ============================================
   NOVAS SEÇÕES (conversão + vitrine)
   ============================================ */

/* ---- Prova social ---- */
.social-proof {
  background: rgba(3, 10, 21, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  position: relative;
  z-index: 1;
}
.social-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.sp-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sp-num { font-size: 1.95rem; font-weight: 900; font-style: italic; color: #fff; line-height: 1; }
.sp-stars { color: var(--gold); }
.sp-small { font-size: 1.1rem; }
.sp-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.sp-sep { width: 1px; height: 46px; background: rgba(255, 255, 255, 0.1); }

/* ---- Vitrine / marquee ---- */
.vitrine { padding: 60px 0; position: relative; z-index: 1; }
.marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 16px;
  padding: 6px 8px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(13, 26, 46, 0.6);
  color: #dbe6f2;
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-chip:hover { border-color: rgba(59, 157, 255, 0.5); box-shadow: 0 0 18px rgba(59, 157, 255, 0.2); }
.brand-chip i { color: var(--blue-bright); }
.vitrine-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 22px; }

/* ---- Contador de oferta ---- */
.offer-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 42px;
  padding: 18px 24px;
  border: 1px solid rgba(59, 157, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.12), rgba(13, 26, 46, 0.5));
  box-shadow: 0 0 30px rgba(30, 144, 255, 0.15);
}
.offer-timer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-bright);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.timer-blocks { display: flex; align-items: center; gap: 10px; }
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 66px;
  padding: 8px 12px;
  border: 1px solid rgba(59, 157, 255, 0.25);
  border-radius: 8px;
  background: rgba(3, 10, 21, 0.7);
}
.timer-block span {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.timer-block small { font-size: 0.58rem; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; }
.timer-colon { font-size: 1.5rem; font-weight: 900; color: var(--blue-bright); }

/* ---- Equivalente mensal ---- */
.plano-equiv { text-align: center; color: #7fe0a0; font-size: 0.82rem; margin: -8px 0 14px; }
.plano-equiv strong { color: #fff; }

/* ---- Garantia ---- */
.guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 22px auto 0;
  padding: 18px 26px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.06);
}
.guarantee-ic { font-size: 2rem; color: var(--green); flex-shrink: 0; }
.guarantee-text strong { display: block; font-size: 1rem; }
.guarantee-text p { color: var(--text-muted); font-size: 0.85rem; }

/* ---- Logos de pagamento ---- */
.payment-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.9rem;
  color: #c7d3e0;
}
.payment-brands .fa-pix { color: #32bcad; }

/* ---- Comparativo ---- */
.comparativo {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(4, 16, 30, 0.85), rgba(3, 10, 21, 0.85));
  position: relative;
  z-index: 1;
}
.compare-table {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(13, 26, 46, 0.4);
}
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
}
.compare-head { background: rgba(3, 10, 21, 0.6); }
.compare-row { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.compare-feature { padding: 16px 22px; font-weight: 600; font-size: 0.9rem; color: #cdd9e6; }
.compare-col { padding: 16px 12px; text-align: center; font-size: 0.87rem; }
.compare-head .compare-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 18px 12px;
}
.compare-logo { height: 30px; width: auto; }
.compare-them i { font-size: 1.4rem; color: var(--text-dim); }
.compare-us { background: rgba(30, 144, 255, 0.08); color: #eaf4ff; font-weight: 600; }
.compare-us .fa-check { color: var(--green); margin-right: 5px; }
.compare-them { color: var(--text-muted); }
.compare-them .fa-xmark { color: #e05a5a; margin-right: 5px; }

/* ---- Depoimentos ---- */
.depoimentos { padding: 72px 0; position: relative; z-index: 1; }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.depo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.depo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 22px rgba(59, 157, 255, 0.15);
}
.depo-stars { color: var(--gold); display: flex; gap: 3px; font-size: 0.85rem; }
.depo-text { color: #dbe6f2; font-size: 0.92rem; font-style: italic; line-height: 1.6; flex-grow: 1; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 0.9rem; }
.depo-author small { color: var(--green); font-size: 0.72rem; }

/* ---- FAQ ---- */
.faq {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(3, 10, 21, 0.85), rgba(5, 16, 31, 0.85));
  position: relative;
  z-index: 1;
}
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13, 26, 46, 0.5);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(59, 157, 255, 0.5); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.faq-question i { color: var(--blue-bright); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.faq-cta { text-align: center; margin-top: 32px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 12px; }
.faq-cta .btn { margin: 0 auto; }

/* ---- Barra de CTA fixa (mobile) ---- */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mcta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}
.mcta-plans { background: var(--blue-deep); }
.mcta-wa { background: var(--green); }

/* ---- Responsivo das novas seções ---- */
@media (max-width: 900px) {
  .depo-grid { grid-template-columns: 1fr; }
  .sp-sep { display: none; }
  .social-grid { gap: 26px 40px; }
}
@media (max-width: 860px) {
  .mobile-cta { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 72px; }
}
@media (max-width: 640px) {
  .compare-head, .compare-row { grid-template-columns: 1.3fr 1fr 1fr; }
  .compare-feature { padding: 14px; font-size: 0.82rem; }
  .compare-col { font-size: 0.78rem; padding: 14px 8px; }
  .compare-head .compare-col span { font-size: 0.72rem; }
  .timer-block { min-width: 56px; padding: 8px; }
  .timer-block span { font-size: 1.5rem; }
}

/* ---- Reduz movimento nas novas animações ---- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}
