@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ═══ PROTEÇÃO DE CONTEÚDO ═══ */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
}

@media print {
  body { display: none !important; }
  html::after {
    content: 'Impressão não permitida.';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 2rem;
    color: #ef4444;
    font-family: sans-serif;
  }
}

/* ═══════════════════════════════════════
   DESIGN SYSTEM PREMIUM — MegaTV
   ═══════════════════════════════════════ */

:root {
  --bg-deep: #030712;
  --bg-primary: #050816;
  --bg-secondary: #0a0f1e;
  --bg-card: #0f1729;
  --bg-card-hover: #141d30;
  --bg-glass: rgba(15, 23, 42, 0.65);
  --bg-glass-strong: rgba(15, 23, 42, 0.85);

  --accent: #00d4ff;
  --accent-rgb: 0, 212, 255;
  --accent2: #8b5cf6;
  --accent2-rgb: 139, 92, 246;
  --accent3: #f5a623;
  --accent3-rgb: 245, 166, 35;

  --gradient-main: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  --gradient-warm: linear-gradient(135deg, #f5a623 0%, #ef4444 100%);
  --gradient-success: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  --gradient-dark: linear-gradient(180deg, #050816 0%, #0a1628 50%, #050816 100%);

  --text-white: #f1f5f9;
  --text: #cbd5e1;
  --text-muted: #64748b;
  --text-dim: #475569;

  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;

  --border: rgba(148, 163, 184, 0.08);
  --border-glow: rgba(0, 212, 255, 0.15);
  --border-accent: rgba(0, 212, 255, 0.3);

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(0, 212, 255, 0.25);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  color: var(--text-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ SCROLL PROGRESS BAR ═══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-main);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

/* ═══ TOP BAR DE URGÊNCIA ═══ */
.top-bar {
  background: var(--gradient-warm);
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  animation: shimmer-bar 3s infinite;
}

@keyframes shimmer-bar {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.top-bar span { color: #fff; position: relative; z-index: 1; }
.top-bar strong { color: #fff; }

.top-bar .timer-inline {
  display: inline-flex;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-left: 8px;
}

/* ═══ NAV ═══ */
nav {
  background: rgba(5, 8, 22, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

nav.scrolled {
  padding: 10px 0;
  background: rgba(5, 8, 22, 0.97);
  box-shadow: var(--shadow-md);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--gradient-main);
  color: #fff;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-nav:hover::before { left: 100%; }

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.35);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(30px);
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

/* ═══ HERO ═══ */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orb-float 20s ease-in-out infinite;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: rgba(var(--accent-rgb), 0.08);
  top: -200px;
  left: -100px;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: rgba(var(--accent2-rgb), 0.08);
  bottom: -200px;
  right: -100px;
  animation-delay: -10s;
  animation-direction: reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 40px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.05); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  padding: 18px 44px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer-btn 3s infinite;
}

@keyframes shimmer-btn {
  0% { left: -100%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(var(--accent-rgb), 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  padding: 18px 40px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.1);
}

/* ═══ HERO STATS ═══ */
.hero-stats {
  display: flex;
  gap: 36px;
}

.stat { text-align: left; }

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ═══ HERO IMAGE ═══ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  animation: float-hero 8s ease-in-out infinite;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(0.5deg); }
}

/* ═══ SOCIAL PROOF BAR ═══ */
.social-proof-bar {
  padding: 36px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.social-proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 10%, transparent 90%, var(--bg-secondary) 100%);
  z-index: 1;
  pointer-events: none;
}

.proof-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.proof-item {
  text-align: center;
  position: relative;
}

.proof-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--border-glow), transparent);
}

/* ═══ SECTIONS GENERAL ═══ */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  background: rgba(var(--accent-rgb), 0.06);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ═══ FEATURES ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ═══ COMPARATIVO DE ECONOMIA ═══ */
.comparison-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.comparison-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(80px);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
}

.comparison-card.old {
  opacity: 0.7;
}

.comparison-card.new {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: var(--shadow-glow);
}

.comparison-card h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-item:last-child { border-bottom: none; }

.comparison-item .service { color: var(--text); }
.comparison-item .price-old { color: var(--danger); font-weight: 600; }
.comparison-item .price-new { color: var(--success); font-weight: 600; }

.comparison-total {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px solid var(--border-glow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
}

.comparison-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vs-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.savings-badge {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--success);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ═══ CHANNELS SHOWCASE ═══ */
.channels-section { background: var(--bg-primary); }

.channels-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.channels-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

.channels-visual:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-strong);
}

.channels-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.channels-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.channel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.channel-list li:hover {
  padding-left: 8px;
  color: var(--text-white);
}

.channel-list li:last-child { border-bottom: none; }

.channel-list li .check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* ═══ URGENCY / COUNTDOWN ═══ */
.urgency-section {
  background: linear-gradient(180deg, #0d0117 0%, #0a0f1e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.urgency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.06) 0%, transparent 60%);
}

.urgency-section h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.urgency-section > .container > p {
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.countdown-item {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  min-width: 90px;
  transition: var(--transition);
}

.countdown-item:hover {
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.countdown-item .number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ef4444;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-item .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

/* Vagas progress bar */
.vagas-progress {
  max-width: 400px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.vagas-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vagas-label strong { color: var(--danger); }

.progress-bar {
  height: 8px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  border-radius: var(--radius-full);
  transition: width 1s ease;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: progress-glow 1.5s infinite;
}

@keyframes progress-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ═══ PRICING ═══ */
.pricing-section {
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-grid.single-plan {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg, transparent 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: var(--transition-slow);
  opacity: 0;
}

.price-card:hover::before {
  background: var(--gradient-main);
  opacity: 0.5;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

/* POPULAR CARD */
.price-card.popular {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06) 0%, var(--bg-glass) 40%);
  transform: scale(1.05);
  z-index: 2;
}

.price-card.popular::before {
  background: var(--gradient-main);
  opacity: 0.3;
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.2);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  padding: 8px 28px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-weight: 700;
  margin-top: 12px;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.price-original {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.1;
}

.price-value small {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-economy {
  color: var(--success);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.04);
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-price {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-price.primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.25);
}

.btn-price.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer-btn 3s infinite;
}

.btn-price.secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(var(--accent-rgb), 0.3);
}

.btn-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--accent-rgb), 0.3);
}

.btn-price.secondary:hover {
  background: rgba(var(--accent-rgb), 0.06);
  border-color: var(--accent);
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-badge .icon {
  font-size: 1rem;
}

/* ═══ GUARANTEE ═══ */
.guarantee-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.guarantee-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-shield {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
  border: 2px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 28px;
  animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.1); transform: scale(1); }
  50% { box-shadow: 0 0 50px rgba(34, 197, 94, 0.25); transform: scale(1.05); }
}

.guarantee-section h2 {
  font-size: 2rem;
  color: var(--success);
  margin-bottom: 16px;
}

.guarantee-section p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.guarantee-highlight {
  color: var(--success);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: 'Outfit', serif;
  color: rgba(var(--accent-rgb), 0.08);
  line-height: 1;
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.15);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 16px;
  background: rgba(34, 197, 94, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══ HOW IT WORKS ═══ */
.how-section { background: var(--bg-primary); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 16%;
  width: 68%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-glow), var(--border-glow), transparent);
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 2px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* ═══ FAQ ═══ */
.faq-section { background: var(--bg-primary); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
}

.faq-item.active {
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover { color: var(--accent); }

.faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  background: linear-gradient(180deg, #050816 0%, #0d0a2e 50%, #050816 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.final-cta::before {
  width: 400px;
  height: 400px;
  background: rgba(var(--accent-rgb), 0.06);
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.final-cta::after {
  width: 350px;
  height: 350px;
  background: rgba(var(--accent2-rgb), 0.06);
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta p {
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.cta-trust span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--bg-deep);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer .logo {
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

footer p {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-bottom: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  color: var(--text-white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(8px);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══ ONLINE COUNTER ═══ */
.online-counter {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.online-counter:hover {
  border-color: rgba(34, 197, 94, 0.2);
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: blink-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* ═══ ANIMATIONS ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-visual img { max-width: 450px; }
  .hero h1 { font-size: 2.8rem; }
  .section-header h2 { font-size: 2.2rem; }
  .channels-showcase { grid-template-columns: 1fr; text-align: center; }
  .channels-info h2 { font-size: 2rem; }
  .channel-list { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav.desktop { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-visual img { max-width: 340px; }

  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { flex-direction: row; }
  .proof-divider { display: none; }
  .proof-items { gap: 24px; }

  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-8px); }

  .countdown { flex-wrap: wrap; }
  .countdown-item { min-width: 75px; padding: 16px 18px; }
  .countdown-item .number { font-size: 2.2rem; }

  section { padding: 70px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.95rem; }

  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 2rem; }

  .btn-primary { padding: 16px 32px; font-size: 0.95rem; }
  .btn-secondary { padding: 16px 32px; font-size: 0.95rem; }

  .steps-grid::before { display: none; }

  .whatsapp-float .tooltip { display: none; }
  .online-counter { bottom: 16px; left: 16px; padding: 8px 14px; font-size: 0.72rem; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .container { padding: 0 16px; }
}
