/* ═══════════════════════════════════════════════════
   LKTV — Landing Page CSS
   Design System baseado no projeto original
═══════════════════════════════════════════════════ */

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

:root {
  --bg:       #0d0f14;
  --card:     #13161d;
  --card2:    #1a1e28;
  --border:   #252a38;
  --accent:   #7c3aed;
  --accent2:  #a855f7;
  --gradient: linear-gradient(135deg, #7c3aed, #a855f7, #06b6d4);
  --gradient-r: linear-gradient(135deg, #06b6d4, #a855f7, #7c3aed);
  --green:    #10b981;
  --text:     #f1f5f9;
  --muted:    #94a3b8;
  --danger:   #ef4444;
  --cyan:     #06b6d4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── UTILITÁRIOS ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(13, 15, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(13, 15, 20, 0.95);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

.nav-logo-fallback {
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124,58,237,.5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

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

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.nav-mobile-link:hover { color: var(--text); }

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

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.2) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(168,85,247,.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--accent2);
  font-weight: 500;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-subtitle strong { color: var(--text); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(124,58,237,.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(124,58,237,.55);
}

.btn-primary:hover::before { opacity: 1; }

.btn-badge {
  background: rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  transition: all .25s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 40px; font-size: 17px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item i { color: var(--accent2); }

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* TV MOCKUP */
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.tv-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatUp 5s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.tv-screen {
  width: 420px;
  max-width: 100%;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    0 0 0 8px #0d0f14,
    0 0 0 10px var(--border),
    0 32px 80px rgba(124,58,237,.25),
    0 0 120px rgba(124,58,237,.1);
  position: relative;
  overflow: hidden;
}

.tv-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(124,58,237,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(6,182,212,.08) 0%, transparent 60%);
  pointer-events: none;
}

.tv-stat-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tv-stat-card {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
}

.tv-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.tv-stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.tv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tv-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent2);
  font-weight: 500;
}

.tv-tag.cyan {
  background: rgba(6,182,212,.1);
  border-color: rgba(6,182,212,.25);
  color: var(--cyan);
}

.tv-tag.purple {
  background: rgba(168,85,247,.1);
  border-color: rgba(168,85,247,.25);
  color: #c084fc;
}

.tv-tag.green {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.25);
  color: var(--green);
}

.tv-stand-neck {
  width: 40px;
  height: 24px;
  background: linear-gradient(to bottom, var(--border), #1a1e28);
  margin: 0 auto;
}

.tv-stand-base {
  width: 120px;
  height: 10px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  border-radius: 100px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 18px;
  animation: bounceDown 2s ease-in-out infinite;
  cursor: pointer;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124,58,237,.15);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-item > div {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════════════════════════
   DISCLAIMER
══════════════════════════════════════ */
.disclaimer-section {
  padding: 20px 24px;
  background: rgba(6,182,212,.06);
  border-bottom: 1px solid rgba(6,182,212,.15);
}

.disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.disclaimer-icon {
  color: var(--cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.disclaimer-text strong { color: var(--text); }

.highlight-text {
  color: var(--cyan);
  font-weight: 700;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent2);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 560px;
}

/* ══════════════════════════════════════
   STEPS
══════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}

.step-card {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.step-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124,58,237,.15);
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(124,58,237,.15);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(124,58,237,.12);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

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

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--border);
  font-size: 20px;
  flex-shrink: 0;
}

/* TRIAL HIGHLIGHT */
.trial-highlight {
  background: var(--card2);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,.08) 0%, transparent 70%);
  pointer-events: none;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trial-highlight h3 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.trial-highlight > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}

.trial-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trial-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--muted);
}

.trial-step strong { color: var(--text); }

.trial-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trial-step-arrow {
  color: var(--border);
  font-size: 14px;
}

/* ══════════════════════════════════════
   PLANOS
══════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(124,58,237,.15);
}

.plan-card.plan-popular {
  border-color: var(--accent2);
  background: rgba(124,58,237,.06);
  box-shadow: 0 0 0 1px var(--accent2), 0 24px 64px rgba(124,58,237,.2);
}

.plan-card.plan-annual {
  border-color: rgba(6,182,212,.4);
}

.plan-badge-popular {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.plan-save-tag {
  display: inline-block;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.plan-save-tag.annual {
  background: rgba(6,182,212,.1);
  border-color: rgba(6,182,212,.3);
  color: var(--cyan);
}

.plan-header { margin-bottom: 24px; }

.plan-period {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.plan-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-right: 2px;
}

.plan-value {
  font-size: 52px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.plan-cents {
  font-size: 26px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-per {
  font-size: 13px;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.plan-features li i {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  transition: all .25s;
}

.btn-plan:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-plan-primary {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 24px rgba(124,58,237,.4);
}

.btn-plan-primary:hover {
  box-shadow: 0 10px 36px rgba(124,58,237,.55);
  border-color: transparent;
}

.btn-plan-cyan {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 24px rgba(6,182,212,.3);
}

.btn-plan-cyan:hover {
  box-shadow: 0 10px 36px rgba(6,182,212,.5);
  border-color: transparent;
}

.plans-footer {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card2);
}

.plans-footer i { margin-right: 4px; }
.plans-footer strong { color: var(--text); }

/* ══════════════════════════════════════
   DISPOSITIVOS
══════════════════════════════════════ */
.devices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
  justify-content: center;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 110px;
  transition: all .25s;
  cursor: default;
}

.device-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(124,58,237,.12);
}

.device-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(124,58,237,.12);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.device-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* APPS */
.apps-section {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.apps-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apps-title i { color: var(--accent2); }

.apps-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.apps-disclaimer i { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .2s;
}

.app-card:hover {
  border-color: rgba(124,58,237,.3);
  background: rgba(124,58,237,.04);
}

.app-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(124,58,237,.12);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.app-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-info strong {
  font-size: 14px;
  color: var(--text);
}

.app-info span {
  font-size: 12px;
  color: var(--muted);
}

.app-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(124,58,237,.12);
  color: var(--accent2);
  white-space: nowrap;
}

.app-badge.recommended {
  background: rgba(16,185,129,.12);
  color: var(--green);
}

.app-badge.free {
  background: rgba(16,185,129,.12);
  color: var(--green);
  border: 1px solid rgba(16,185,129,.25);
}

/* APPS GROUP LABEL */
.apps-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin: 20px 0 12px;
}

.apps-group-label i { font-size: 13px; }

.apps-group-label.premium {
  color: #f59e0b;
  margin-top: 28px;
}

/* APP PREMIUM (BobPlayer) */
.app-card-premium {
  background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(124,58,237,.06));
  border-color: rgba(245,158,11,.35) !important;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(245,158,11,.08);
  align-items: flex-start;
}

.app-card-premium:hover {
  border-color: rgba(245,158,11,.6) !important;
  box-shadow: 0 8px 32px rgba(245,158,11,.15) !important;
}

.app-icon-premium {
  background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(124,58,237,.2)) !important;
  color: #f59e0b !important;
  box-shadow: 0 4px 16px rgba(245,158,11,.2);
  flex-shrink: 0;
}

.app-premium-desc {
  display: block;
  font-size: 12px !important;
  color: var(--muted) !important;
  margin-top: 4px;
  line-height: 1.5;
  max-width: 380px;
}

.app-price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.08));
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 80px;
  margin-left: auto;
  flex-shrink: 0;
}

.app-price-value {
  font-size: 20px;
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
}

.app-price-period {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(124,58,237,.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: color .2s;
}

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

.faq-icon {
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent2); }

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

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer strong { color: var(--text); }

/* ══════════════════════════════════════
   CTA FINAL
══════════════════════════════════════ */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-logo-fallback {
  font-size: 28px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all .2s;
}

.social-btn.whatsapp {
  background: rgba(37,211,102,.12);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.2);
}

.social-btn.whatsapp:hover {
  background: #25d366;
  color: white;
  transform: translateY(-2px);
}

.social-btn.instagram {
  background: rgba(225,48,108,.12);
  color: #e1306c;
  border: 1px solid rgba(225,48,108,.2);
}

.social-btn.instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-group a:hover { color: var(--text); }

.footer-pix-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}

.footer-pix-info i { color: var(--accent2); }
.footer-pix-info strong { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 12px !important;
  opacity: .7;
}

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

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 16px 48px rgba(37,211,102,.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle { max-width: 100%; }

  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .hero-visual {
    padding: 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow { transform: rotate(90deg); }

  .trial-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .trial-step-arrow { transform: rotate(90deg); text-align: center; }

  .stat-sep { display: none; }
  .stat-item { padding: 12px 16px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: auto; }

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

  .tv-screen { width: 320px; }

  .tv-stat-num { font-size: 16px; }
}

@media (max-width: 540px) {
  .hero-title { letter-spacing: -1px; }

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

  .trial-highlight { padding: 32px 24px; }
  .trial-highlight h3 { font-size: 28px; }

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

  .cta-buttons { flex-direction: column; align-items: center; }

  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .stat-item { flex-basis: 45%; }

  .devices-grid { gap: 10px; }
  .device-card { min-width: 90px; padding: 18px 14px; }
}
