/* ============================================
   CANAL HISTORY IPTV — CSS Principal
   ============================================ */

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

/* ---- Variáveis ---- */
:root {
  --bg-primary: #07070e;
  --bg-secondary: #0f0f1a;
  --bg-card: #13131f;
  --bg-card-hover: #1a1a2e;
  --border: rgba(124, 58, 237, 0.2);
  --border-hover: rgba(124, 58, 237, 0.6);
  --accent-purple: #7c3aed;
  --accent-blue: #3b82f6;
  --accent-pink: #ec4899;
  --gradient: linear-gradient(135deg, #7c3aed, #3b82f6);
  --gradient-warm: linear-gradient(135deg, #7c3aed, #ec4899);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-purple: 0 8px 32px rgba(124, 58, 237, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ---- Utilitários ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  color: #a78bfa;
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-success {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.4);
  color: #34d399;
}
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ---- Botões ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: rgba(124,58,237,0.1);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-success {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
}
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ---- Seções ---- */
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-header { margin-bottom: 60px; }
.section-header .badge { margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto; }

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(7,7,14,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: -4px; -webkit-text-fill-color: var(--text-muted); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
}
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 72px 0 0;
  background: rgba(7,7,14,0.98); backdrop-filter: blur(20px);
  padding: 24px; z-index: 999;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
  border-color: var(--border);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59,130,246,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}
.hero-content { position: relative; z-index: 1; }
.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { display: block; }
.hero-desc {
  font-size: 1.1rem; color: var(--text-secondary);
  margin-bottom: 36px; line-height: 1.7; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-item {}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-device {
  width: 100%; max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-purple);
  position: relative;
}
.device-screen {
  background: #000; border-radius: 10px;
  aspect-ratio: 16/9; overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.screen-content {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.screen-play {
  width: 64px; height: 64px;
  background: rgba(124,58,237,0.3);
  border: 2px solid rgba(124,58,237,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.screen-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #a78bfa;
  margin-left: 4px;
}
.screen-bars { display: flex; gap: 4px; align-items: flex-end; height: 30px; }
.screen-bar {
  width: 4px; background: var(--accent-purple); border-radius: 2px;
  animation: barPulse 1.5s ease-in-out infinite;
}
.screen-bar:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.screen-bar:nth-child(3) { animation-delay: 0.4s; height: 80%; }
.screen-bar:nth-child(4) { animation-delay: 0.6s; height: 40%; }
.screen-bar:nth-child(5) { animation-delay: 0.8s; height: 100%; }
.screen-bar:nth-child(6) { animation-delay: 0.4s; height: 70%; }
.screen-bar:nth-child(7) { animation-delay: 0.2s; height: 50%; }
@keyframes barPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.device-label { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.device-quality {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.quality-tag {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 6px;
  letter-spacing: 0.05em;
}
.hero-float-1, .hero-float-2, .hero-float-3 {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.8rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.hero-float-1 { top: -20px; left: -20px; animation: floatAnim 3s ease-in-out infinite; }
.hero-float-2 { bottom: 40px; right: -20px; animation: floatAnim 3s ease-in-out infinite 1s; }
.hero-float-3 { bottom: -20px; left: 20px; animation: floatAnim 3s ease-in-out infinite 2s; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 1.1rem; }
.float-text strong { display: block; font-size: 0.85rem; color: var(--text-primary); }
.float-text span { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--bg-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: var(--radius-lg);
  background: var(--gradient);
  opacity: 0; transition: var(--transition);
  z-index: 0;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}
.feature-card:hover::before { opacity: 0.04; }
.feature-card > * { position: relative; z-index: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
}
.feature-icon.blue { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.3); }
.feature-icon.pink { background: rgba(236,72,153,0.15); border-color: rgba(236,72,153,0.3); }
.feature-icon.green { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3); }
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   PLANOS / PREÇOS
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.plan-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}
.plan-card.featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(59,130,246,0.1));
  border-color: var(--accent-purple);
  transform: scale(1.03);
  box-shadow: var(--shadow-purple);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-popular {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.plan-name { font-size: 1rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-currency { font-size: 1.1rem; font-weight: 700; color: var(--text-secondary); }
.plan-amount { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--text-primary); }
.plan-period { font-size: 0.85rem; color: var(--text-muted); }
.plan-save {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399; font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 24px;
}
.plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.plan-feature .check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #34d399;
}
.plan-feature .check::after { content: '✓'; font-weight: 700; }
.plan-feature.disabled { opacity: 0.4; }
.plan-feature.disabled .check {
  background: rgba(100,116,139,0.15);
  border-color: rgba(100,116,139,0.3);
  color: var(--text-muted);
}
.plan-feature.disabled .check::after { content: '✕'; }

/* ============================================
   COMO FUNCIONA
   ============================================ */
.steps { background: var(--bg-secondary); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: var(--transition); position: relative;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
}
.step-connector {
  display: none;
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--text-secondary); }

/* ============================================
   DISPOSITIVOS
   ============================================ */
.devices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
  transition: var(--transition);
}
.device-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.device-ico { font-size: 2.5rem; margin-bottom: 12px; }
.device-name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.device-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-city { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--accent-purple); }
.faq-question {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  text-align: left; color: var(--text-primary);
  font-size: 0.95rem; font-weight: 600;
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: #a78bfa;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--accent-purple); border-color: var(--accent-purple); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(59,130,246,0.15));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  padding: 60px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.1), transparent);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-desc { color: var(--text-secondary); margin-bottom: 32px; font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FORMULÁRIOS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary); font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ============================================
   PÁGINA INTERNA — HERO
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124,58,237,0.12) 0%, transparent 70%);
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-hero .badge { margin-bottom: 16px; display: inline-flex; }
.page-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
.page-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.82rem; color: var(--text-muted); margin-top: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent-purple); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(124,58,237,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { background: rgba(124,58,237,0.2); border-color: var(--accent-purple); color: #a78bfa; }
.footer-heading { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent-purple); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer; transition: var(--transition);
  border: none;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ============================================
   COMPARATIVO / TABELA
   ============================================ */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 16px 20px; text-align: center;
  background: var(--bg-card); font-size: 0.9rem; font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text-secondary);
}
.compare-table th.highlight { background: rgba(124,58,237,0.15); color: #a78bfa; }
.compare-table td {
  padding: 14px 20px; text-align: center; font-size: 0.88rem;
  border-bottom: 1px solid var(--border); color: var(--text-secondary);
}
.compare-table td.highlight { background: rgba(124,58,237,0.05); color: var(--text-primary); font-weight: 600; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text-primary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(124,58,237,0.03); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }

/* ============================================
   INFO CARDS
   ============================================ */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-card-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   SOBRE — STATS COUNTER
   ============================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.stat-box:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.stat-number { font-size: 2.6rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   ANIMAÇÕES SCROLL
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
