/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
  /* Cores */
  --bg: #06080c;
  --ink: #eaf3ff;
  --mut: #a7b3c4;
  --blue: #00aeef;
  --blue2: #0a84ff;
  --cyan: #39d0ff;
  --gold: #ffcc66;
  --green: #2ecc71;
  --gold-dark: #1a1400;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --price-highlight: var(--cyan);
  
  /* Efeitos */
  --glass: blur(12px);
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 174, 239, 0.16);
  
  /* Layout */
  --max: 1200px;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Fontes */
  --font-primary: Poppins, Inter, sans-serif;
  --font-secondary: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   RESET E BASE
   ============================================ */
html {
  background-color: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at -10% 10%, rgba(0, 174, 239, 0.12), transparent 60%),
    radial-gradient(900px 500px at 110% -10%, rgba(10, 132, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #070a10, #020409 60%) fixed;
  color: var(--ink);
  font: 400 16px/1.65 var(--font-secondary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Garantir que o conteúdo fique acima do efeito */
main,
footer {
  position: relative;
  z-index: 1;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-primary);
  margin: 0 0 0.6rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.15;
  background: linear-gradient(135deg, var(--ink) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--mut);
}

/* Melhorar contraste para legibilidade */
p strong {
  color: var(--ink);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--mut);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   ACESSIBILIDADE - FOCUS STATES
   ============================================ */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
.faq-q:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 5px var(--cyan);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max);
  padding: 0 20px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

section {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.divider {
  width: 96px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 999px;
}


/* Skip Link para Acessibilidade */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: #001018;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   VÍDEO SECTION
   ============================================ */
.video-section {
  padding: 60px 0;
  position: relative;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: var(--glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 174, 239, 0.2);
  border-color: rgba(57, 208, 255, 0.35);
}

.video-wrapper iframe {
  border-radius: var(--radius);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 86px 0 48px;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  width: 100%;
  min-height: 300px;
}

.hero__image .hero-img {
  width: auto;
  height: auto;
  min-width: 300px;
  max-width: 450px;
  max-height: 600px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  visibility: visible;
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.hero__image:hover .hero-img {
  transform: scale(1.01);
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #001018;
  box-shadow: 0 0 0 1px rgba(57, 208, 255, 0.25), 0 12px 40px rgba(0, 174, 239, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  contain: layout style paint;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
}

.btn:active {
  transform: translateY(0);
  filter: saturate(0.95) brightness(0.98);
}

.btn:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 5px var(--cyan), 0 12px 40px rgba(0, 174, 239, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(57, 208, 255, 0.45);
  text-shadow: none;
  box-shadow: none;
  animation: none;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(57, 208, 255, 0.3);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(57, 208, 255, 0.2);
}

.btn-ghost:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 5px var(--cyan), 0 0 15px rgba(57, 208, 255, 0.3);
}

.btn-mini {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-blackfriday {
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
  color: #001018;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(57, 208, 255, 0.4), 0 0 20px rgba(10, 132, 255, 0.45), 0 10px 30px rgba(0, 174, 239, 0.35), inset 0 0 20px rgba(255, 255, 255, 0.15);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 20px 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transform: scale(1) translateZ(0);
  transition: all 0.2s ease;
  contain: layout style paint;
}

.btn-blackfriday:hover {
  transform: scale(1.02) translateY(-2px) translateZ(0);
  box-shadow: 0 0 0 3px rgba(57, 208, 255, 0.55), 0 0 30px rgba(10, 132, 255, 0.6), 0 15px 40px rgba(0, 174, 239, 0.45), inset 0 0 25px rgba(255, 255, 255, 0.25);
  filter: brightness(1.05);
}

.btn-blackfriday:active {
  transform: scale(0.98) translateY(0) translateZ(0);
  filter: brightness(0.95);
}

.btn-blackfriday:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 7px var(--cyan), 0 0 30px rgba(10, 132, 255, 0.6), 0 15px 40px rgba(0, 174, 239, 0.45);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: var(--glass);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  contain: layout style paint;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(57, 208, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 132, 255, 0.15);
}

.card:focus-within {
  border-color: rgba(57, 208, 255, 0.45);
  box-shadow: 0 20px 60px rgba(10, 132, 255, 0.2);
}

.card--highlight {
  position: relative;
  border-color: rgba(57, 208, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(57, 208, 255, 0.15), 0 30px 90px rgba(10, 132, 255, 0.25);
}

/* ============================================
   BADGES E KICKERS
   ============================================ */
.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 6px 10px;
  border: 1px solid rgba(57, 208, 255, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}

.kicker-hero {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.2);
}

.kicker-blackfriday {
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
  color: #001018;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(57, 208, 255, 0.45), 0 0 40px rgba(10, 132, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  display: inline-block;
  width: auto;
  contain: layout style paint;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), #86e6ff);
  position: relative;
}

.badge--gold {
  background: linear-gradient(135deg, var(--gold), #ffe6a6);
  color: var(--gold-dark);
  font-weight: 900;
}

/* ============================================
   ÍCONES
   ============================================ */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(10, 132, 255, 0.18));
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.03);
}

.card:hover .icon svg {
  transform: scale(1.05);
}

/* ============================================
   ART E BANNER
   ============================================ */
.art {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: var(--glass);
  box-shadow: var(--shadow);
  padding: 14px;
  contain: layout style paint;
}

.art-margin-top {
  margin-top: 22px;
}

.art:has(.banner-img) {
  border: none;
  background: transparent;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.art:has(.banner-img) .ph {
  aspect-ratio: auto;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.ph {
  aspect-ratio: 16/9;
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 12px, rgba(255, 255, 255, 0.03) 12px 24px);
  display: grid;
  place-items: center;
  color: #c6d5ea;
  font-weight: 700;
  background-size: cover;
  background-position: center;
}

.art .ph .banner-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.banner-img:hover {
  transform: scale(1.01);
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.6));
}

/* ============================================
   GARANTIA
   ============================================ */
.guarantee {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
}

.shield {
  display: grid;
  place-items: center;
  border-radius: 20px;
  padding: 12px;
  background:
    radial-gradient(circle at 40% 40%, rgba(57, 208, 255, 0.85), rgba(10, 132, 255, 0.45) 60%, rgba(0, 0, 0, 0) 61%),
    linear-gradient(160deg, rgba(0, 174, 239, 0.35), rgba(10, 132, 255, 0.2));
  box-shadow: 0 18px 50px rgba(0, 174, 239, 0.25);
}

.num7 {
  font: 900 56px/1 var(--font-primary);
  color: #001018;
  text-shadow: 0 0 26px rgba(57, 208, 255, 0.6);
}

.stars {
  margin-top: 6px;
  display: flex;
  gap: 6px;
}

.star {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(255, 200, 120, 0.5));
  opacity: 1;
}

/* ============================================
   PREÇOS
   ============================================ */
#preco {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.pricing-grid .lead {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(57, 208, 255, 0.35), 0 4px 10px rgba(10, 132, 255, 0.25);
  letter-spacing: 0.5px;
}

.pricing-grid p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pricing-card {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(10, 132, 255, 0.08));
  border: 3px solid rgba(57, 208, 255, 0.5);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: var(--glass);
  box-shadow: 
    var(--shadow), 
    0 0 40px rgba(57, 208, 255, 0.25), 
    0 0 80px rgba(10, 132, 255, 0.2),
    inset 0 0 40px rgba(57, 208, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(57, 208, 255, 0.7);
  box-shadow: 
    var(--shadow), 
    0 0 50px rgba(57, 208, 255, 0.35), 
    0 0 100px rgba(10, 132, 255, 0.25),
    inset 0 0 50px rgba(57, 208, 255, 0.15);
  transform: translateY(-2px);
}

.pricing-card:focus-within {
  border-color: rgba(57, 208, 255, 0.8);
  box-shadow: 
    var(--shadow), 
    0 0 60px rgba(57, 208, 255, 0.4), 
    0 0 120px rgba(10, 132, 255, 0.3),
    inset 0 0 60px rgba(57, 208, 255, 0.2);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(57, 208, 255, 0.55), rgba(10, 132, 255, 0.45), rgba(57, 208, 255, 0.55));
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-card:hover::after {
  opacity: 0.5;
}

/* Badge de Oferta Especial */
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(57, 208, 255, 0.9), rgba(10, 132, 255, 0.8));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 4px 15px rgba(57, 208, 255, 0.4),
    0 0 20px rgba(57, 208, 255, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 
      0 4px 15px rgba(57, 208, 255, 0.4),
      0 0 20px rgba(57, 208, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(57, 208, 255, 0.6),
      0 0 30px rgba(57, 208, 255, 0.5);
  }
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pricing-card .price-value {
  text-align: center;
  margin: 2rem 0 1.5rem;
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  border: 2px solid rgba(57, 208, 255, 0.4);
  box-shadow: 
    inset 0 0 30px rgba(57, 208, 255, 0.1),
    0 0 30px rgba(57, 208, 255, 0.2);
}

.price-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.price-old {
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: line-through;
  margin-bottom: 12px;
  opacity: 1;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
  position: relative;
  display: inline-block;
}

.price-main {
  font: 900 clamp(2rem, 4vw, 3rem)/1.2 var(--font-primary);
  color: var(--cyan);
  text-shadow: 0 0 25px rgba(57, 208, 255, 0.55), 0 0 50px rgba(10, 132, 255, 0.4), 0 4px 15px rgba(134, 230, 255, 0.45);
  margin: 12px 0;
  contain: layout style paint;
  transform: translateZ(0);
}

.price-vista {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #86e6ff;
  margin-top: 12px;
  text-shadow: 0 0 15px rgba(134, 230, 255, 0.55), 0 4px 12px rgba(57, 208, 255, 0.35);
}

.price-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(57, 208, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.pricing-card .btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.15rem;
  margin: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-pulse {
  animation: pulse-button 2s ease-in-out infinite;
}

.btn-pulse svg {
  transition: transform 0.3s ease;
}

.btn-pulse:hover svg {
  transform: translateX(4px);
}

@keyframes pulse-button {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(57, 208, 255, 0.4),
      0 0 40px rgba(10, 132, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(57, 208, 255, 0.6),
      0 0 60px rgba(10, 132, 255, 0.5);
  }
}

.payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(57, 208, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.payment-security svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.pricing-list {
  text-align: left;
  max-width: 380px;
  margin: 1rem auto;
}

.text-price-highlight {
  color: var(--price-highlight);
}

/* ============================================
   BÔNUS - PREÇOS COM CORTES
   ============================================ */
.bonus-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.bonus-price .price-old {
  font-size: 1rem;
  color: var(--mut);
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 500;
  text-shadow: none;
}

.bonus-price .price-free {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.1));
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  white-space: nowrap;
}

.card--highlight .bonus-price .price-free {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 204, 102, 0.2), rgba(255, 204, 102, 0.1));
  border-color: rgba(255, 204, 102, 0.3);
}

/* ============================================
   LISTA DE CHECK
   ============================================ */
ul.check {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

ul.check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0.8rem 0;
  color: var(--ink);
}

ul.check li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 2px;
}

ul.check li strong {
  color: var(--cyan);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  border-radius: 22px;
  padding: 38px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(10, 132, 255, 0.14));
  border: 1px solid rgba(57, 208, 255, 0.22);
  box-shadow: var(--shadow);
}

.cta-left {
  text-align: left;
}

.cta-grid {
  margin-top: 2rem;
  gap: 28px;
  align-items: flex-start;
}

.cta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cta-icon {
  color: var(--cyan);
  margin-top: 4px;
  flex-shrink: 0;
}

.cta-title-small {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos-fullscreen {
  padding: 0;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}

.scroller-wrap {
  position: relative;
  overflow: hidden;
  width: calc(3 * 280px + 2 * 16px);
  max-width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  contain: layout style paint;
  transform: translateZ(0);
}

.scroller {
  display: flex;
  gap: 16px;
  overflow-x: visible;
  will-change: transform;
  align-items: center;
  height: 100%;
  position: relative;
  contain: layout style paint;
  transform: translateZ(0);
}

.scroller::-webkit-scrollbar {
  display: none;
}

.scroller {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.phone {
  flex: 0 0 280px;
  width: 280px;
  height: 500px;
  max-height: 80vh;
  flex-shrink: 0;
  border-radius: 28px;
  border: 1px solid rgba(57, 208, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 70px rgba(0, 174, 239, 0.18);
  position: relative;
  overflow: hidden;
  contain: layout style paint;
  transform: translateZ(0);
}

.phone::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 120px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.phone__inner {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.phone__shot {
  flex: 1;
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 12px, rgba(255, 255, 255, 0.02) 12px 24px);
  display: grid;
  place-items: center;
  color: #c6d5ea;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}

.phone__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--stroke);
  transition: background 0.2s ease, border-radius 0.2s ease, padding 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.faq-item:hover {
  background: rgba(57, 208, 255, 0.03);
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.faq-q {
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-q:hover {
  color: var(--cyan);
}

.faq-q:focus-visible {
  color: var(--cyan);
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq-item.active .faq-q {
  color: var(--cyan);
}


.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease, visibility 0.2s ease;
  opacity: 0;
  color: var(--mut);
  line-height: 1.7;
  padding: 0;
  margin-top: 0;
  visibility: hidden;
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding-bottom: 1rem;
  padding-top: 0.5rem;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

#faq .faq-item,
#faq .faq-q {
  opacity: 1;
  transform: none;
}

#faq .faq-a {
  transform: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 20px 2rem;
  border-top: 1px solid var(--stroke);
  color: var(--mut);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 1.5rem auto 0;
  opacity: 0.7;
}

/* ============================================
   TOASTS
   ============================================ */
.toast-wrap {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  contain: layout style paint;
  pointer-events: none;
}

.toast {
  min-width: 280px;
  max-width: 340px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 14, 22, 0.85);
  border: 1px solid rgba(57, 208, 255, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0, 174, 239, 0.18);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  contain: layout style paint;
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.dot {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.small {
  font-size: 0.9rem;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.d-flex {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-cyan {
  color: var(--cyan);
}

.fw-700 {
  font-weight: 700;
}

.mt-1 {
  margin-top: 0.6rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-small {
  margin-top: 0.4rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 9999;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(57, 208, 255, 0.5);
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #001018;
  border: 2px solid rgba(57, 208, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.3), 0 0 0 0 rgba(57, 208, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  font-size: 0;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.4), 0 0 0 4px rgba(57, 208, 255, 0.2);
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
}

.back-to-top:active {
  transform: translateY(-2px) scale(1.02);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.3), 0 0 0 2px var(--bg), 0 0 0 5px var(--cyan);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   LAZY LOADING
   ============================================ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

body.loaded {
  opacity: 1;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__grid .hero__image {
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
  }

  .hero__image .hero-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .d-flex {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroller-wrap {
    width: calc(2 * 280px + 1 * 16px);
  }
}

@media (max-width: 768px) {

  .bonus-price {
    gap: 10px;
  }

  .bonus-price .price-free {
    font-size: 0.72rem;
    padding: 3px 7px;
  }

  .hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    aspect-ratio: auto;
  }

.hero__image .hero-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  #preco {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 48px 0;
  }

  #preco .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    padding: 0;
  }

  .pricing-grid > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }

  .pricing-grid > div:first-child {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .pricing-grid > div:first-child > * {
    text-align: center;
    width: 100%;
    display: block;
  }

  .kicker-blackfriday {
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
    width: fit-content;
    max-width: 100%;
  }

  .pricing-grid .lead {
    text-align: center;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    margin: 0 auto 1.5rem;
    width: 100%;
    display: block;
  }

  .pricing-grid p {
    text-align: center;
    margin: 0 auto 1rem;
    max-width: 100%;
    width: 100%;
    display: block;
  }

.pricing-card {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .pricing-card h3 {
    text-align: center;
    width: 100%;
    margin: 0 auto 1rem;
  }

  .pricing-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 1rem;
  }

  .price-value {
    text-align: center;
    margin: 1.5rem auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
  }

  .price-guarantee {
    font-size: 0.85rem;
    margin-top: 12px;
    padding-top: 12px;
  }

  .payment-security {
    font-size: 0.8rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
  }

  .btn-pulse {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .price-main {
    text-align: center;
    margin: 0.5rem auto;
    width: 100%;
    display: block;
  }

  .price-old {
    text-align: center;
    margin: 0 auto 0.5rem;
    width: 100%;
    display: block;
  }

  .price-vista {
    text-align: center;
    margin: 0.5rem auto 0;
    width: 100%;
    display: block;
  }

  .btn-blackfriday {
    display: block;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  ul.check {
    text-align: left;
    max-width: 100%;
    margin: 1rem auto;
    display: block;
    width: 100%;
    padding-left: 0;
  }

  .pricing-card .check,
  .pricing-list {
    text-align: left;
    max-width: 100%;
    margin: 1rem auto;
    display: block;
    padding: 0;
    width: 100%;
  }

  .pricing-card .check li,
  .pricing-list li {
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
    padding-left: 0;
  }

  .pricing-grid > div:first-child ul.check {
    text-align: left;
    width: 100%;
    margin: 1rem auto;
    padding-left: 0;
    display: block;
  }

  .pricing-list {
    text-align: left;
    max-width: 100%;
    margin: 1rem auto;
    width: 100%;
  }

  .scroller-wrap {
    width: 280px;
  }

  .video-section {
    padding: 40px 0;
  }

  .video-wrapper {
    margin: 0 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .cta-left {
    text-align: center;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .bonus-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bonus-price .price-free {
    font-size: 0.7rem;
    padding: 2px 6px;
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    aspect-ratio: auto;
  }

  .hero__image .hero-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  #preco .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .pricing-grid {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .pricing-grid > div {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .kicker-blackfriday {
    font-size: 0.95rem;
    padding: 12px 20px;
    letter-spacing: 1px;
    margin: 0 auto 1.5rem;
  }

  .pricing-grid .lead {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    text-align: center;
    margin: 0 auto 1.5rem;
  }

  .pricing-grid p {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto 1rem;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    margin: 0 auto;
  }

  .price-main {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    text-align: center;
    margin: 0.5rem auto;
  }

  .price-old {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto 0.5rem;
  }

  .price-vista {
    font-size: 1.1rem;
    text-align: center;
    margin: 0.5rem auto 0;
  }

  .btn-blackfriday {
    font-size: 1rem;
    padding: 18px 24px;
    margin: 1.5rem auto 0;
    width: 100%;
  }

  .pricing-card__logo {
    width: auto;
    margin: 0 auto 1rem;
  }

  .pricing-card__logo img {
    width: auto;
    height: auto;
    margin: 0 auto;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .back-to-top {
    transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.1s ease !important;
  }
}

/* ============================================
   LOADING STATES E FEEDBACK
   ============================================ */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(0, 16, 24, 0.3);
  border-top-color: #001018;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Indicador de scroll suave */
html {
  scroll-padding-top: 80px;
}

/* Melhorar contraste de links no footer */
.footer a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.footer a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 2px;
}
