/* =============================================
   EASY ANALYTICS – CSS CLONE
   Cores reais: dark navy + gold (#f5c518 range)
   ============================================= */

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

:root {
  /* Tema real extraído do site */
  --bg:          hsl(240, 10%, 8%);    /* #111318 */
  --bg-card:     hsl(240, 8%, 12%);    /* #181c25 */
  --bg-elevated: hsl(240, 6%, 16%);   /* #1e2230 */
  --border:      hsl(240, 6%, 20%);   /* #282e3d */
  --primary:     hsl(45, 93%, 58%);   /* gold #f5c518 */
  --primary-dark:hsl(45, 80%, 45%);   /* gold-dark */
  --primary-light:hsl(45, 100%, 65%); /* gold-light */
  --foreground:  hsl(0, 0%, 98%);     /* #fafafa */
  --muted:       hsl(0, 0%, 65%);     /* #a6a6a6 */
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

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

/* ── TYPOGRAPHY ── */
.highlight-gold {
  color: var(--primary);
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-family: inherit;
  border: none; cursor: pointer; text-decoration: none;
  border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap; font-size: 15px;
}
.btn-primary {
  background: var(--primary);
  color: hsl(240, 10%, 8%);
  box-shadow: 0 0 24px rgba(245, 197, 24, 0.25);
}
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 0 40px rgba(245,197,24,0.45); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: hsl(240,10%,8%); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--foreground); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-lg  { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; padding: 15px 20px; }

.pulse { animation: goldPulse 2.5s infinite; }
@keyframes goldPulse {
  0%,100% { box-shadow: 0 0 24px rgba(245,197,24,0.25); }
  50%      { box-shadow: 0 0 48px rgba(245,197,24,0.55); }
}

/* ── SECTION SHARED ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: rgba(245,197,24,0.1);
  color: var(--primary);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 5px 16px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(17,19,24,0.95);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 8px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 36px; width: auto; }
.nav-links {
  display: flex; gap: 24px; margin-left: auto;
  margin-right: 16px;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--foreground); }
.nav-entrar { margin-right: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--foreground); border-radius: 2px; transition: var(--transition); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh; padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero .container { max-width: 1280px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.12;
}
.glow-1 { width: 700px; height: 500px; background: var(--primary); top: -120px; left: -200px; }
.glow-2 { width: 400px; height: 400px; background: hsl(45,80%,50%); bottom: -50px; right: -100px; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Layout lado a lado */
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-left {
  flex: 0 0 44%;
  text-align: left;
}
.hero-right {
  flex: 0 0 56%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -1.5px;
}
.hero-subtitle {
  color: var(--muted); font-size: clamp(15px, 1.6vw, 18px);
  max-width: 520px; margin: 0 0 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Stats */
.hero-stats {
  display: inline-flex; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 24px; gap: 0;
  flex-wrap: wrap; row-gap: 12px;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 28px; position: relative; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label  { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 4px; white-space: nowrap; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.stat-number-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stat-live-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* =============================================
   IMAC MOCKUP
   ============================================= */
.imac-wrap {
  position: relative;
  width: 100%;
  max-width: 660px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.7)) drop-shadow(0 0 50px rgba(245,197,24,0.08));
  animation: floatMac 4s ease-in-out infinite;
}
@keyframes floatMac {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Display panel */
.imac-display {
  position: relative;
  background: #0f0f14;
  border-radius: 16px;
  border: 1.5px solid #3a3a48;
  padding: 14px 8px 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 0 0 1px rgba(0,0,0,0.6),
    0 24px 48px rgba(0,0,0,0.5);
}

/* Camera dot */
.imac-display::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: #3a3a4a;
  border-radius: 50%;
  z-index: 10;
}

/* Screen area */
.imac-screen {
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
  background: #000;
}

.imac-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Thin neck – trapezoid shape */
.imac-neck {
  width: 11%;
  height: 52px;
  background: linear-gradient(to right, #232330, #2e2e3e, #232330);
  margin: 0 auto;
  clip-path: polygon(28% 0%, 72% 0%, 88% 100%, 12% 100%);
}

/* Oval base */
.imac-base {
  width: 42%;
  height: 13px;
  background: linear-gradient(to bottom, #2e2e3e, #1a1a26);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* =============================================
   PARTNERS
   ============================================= */
.partners {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.partners-label {
  text-align: center; font-size: 11px; color: var(--muted);
  letter-spacing: 2.5px; font-weight: 700; margin-bottom: 28px;
}
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.partner-logo {
  height: 28px;
  width: 100px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}
.partner-logo:hover { opacity: 1; }

/* Tamanho individual — ajuste os px manualmente */
.partner-bet365 { height: 170px; width: 100px; }
.partner-kiron  { height: 48px; width: 100px; }
.partner-betano { height: 28px; width: 100px; }

.partner-sep { width: 1px; height: 28px; background: var(--border); }
.partner-more {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  color: var(--primary);
  animation: blink-gold 1.2s ease-in-out infinite;
}
@keyframes blink-gold {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* =============================================
   FEATURES – novo layout
   ============================================= */
.features { padding: 100px 0; }

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

/* Card base */
.feat-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  overflow: hidden;
}
.feat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-item:hover {
  border-color: rgba(245,197,24,0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.feat-item:hover::before { opacity: 1; }

/* Destaque dourado */
.feat-highlight {
  border-color: rgba(245,197,24,0.25);
  background: linear-gradient(135deg, rgba(245,197,24,0.06), var(--bg-card) 70%);
}
.feat-highlight::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Número */
.feat-num {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(245,197,24,0.2);
  letter-spacing: 1px;
}

/* Ícone */
.feat-icon-wrap {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}

/* Texto */
.feat-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--foreground);
}
.feat-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Badge exclusivo */
.feat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: hsl(240,10%,8%);
  background: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* Ícone dourado sólido */
.feat-icon-gold {
  background: rgba(245,197,24,0.2);
  border-color: rgba(245,197,24,0.5);
  box-shadow: 0 0 20px rgba(245,197,24,0.2);
}

/* Card com glow extra */
.feat-star {
  box-shadow: 0 0 0 1px rgba(245,197,24,0.4), 0 8px 32px rgba(245,197,24,0.1);
}
.feat-star:hover {
  box-shadow: 0 0 0 1px rgba(245,197,24,0.6), 0 16px 48px rgba(245,197,24,0.2);
}

/* Card "E muito mais" */
.feat-more {
  background: transparent;
  border: 2px dashed rgba(245,197,24,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.feat-more:hover {
  border-color: var(--primary);
  background: rgba(245,197,24,0.04);
}
.feat-more-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.feat-more-icon {
  font-size: 22px;
  color: var(--primary);
  animation: blink-gold 1.4s ease-in-out infinite;
}
.feat-more-text {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.feat-more-inner > p {
  font-size: 12px;
  color: var(--muted);
  max-width: 180px;
}

/* =============================================
   SHOWCASE DE FERRAMENTAS
   ============================================= */
.showcase { padding: 100px 0; }

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

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(245,197,24,0.1);
  border: 1.5px solid rgba(245,197,24,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.showcase-item:hover .showcase-icon-wrap {
  background: rgba(245,197,24,0.15);
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 0 24px rgba(245,197,24,0.2);
  transform: translateY(-3px);
}

.showcase-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--foreground);
}

.browser-mockup {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.showcase-item:hover .browser-mockup {
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 20px 64px rgba(245,197,24,0.15);
}

.browser-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.browser-screen {
  background: #000;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 100px 0; background: var(--bg-card); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.testimonial-card.highlight { border-color: rgba(245,197,24,0.3); }
.testimonial-card:hover { transform: translateY(-3px); }
.stars { color: var(--primary); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p {
  color: var(--muted); font-size: 14px; line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  color: hsl(240,10%,8%); flex-shrink: 0;
}
.t-info strong { display: block; font-size: 14px; font-weight: 700; }
.t-info span   { font-size: 12px; color: var(--muted); }

/* =============================================
   PRICING
   ============================================= */
.pricing { padding: 100px 0; }

/* Toggle Mensal / Trimestral */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-toggle {
  display: flex;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(245,197,24,0.24);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.toggle-btn {
  padding: 12px 32px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  font-family: inherit;
}

.toggle-btn.active {
  background: rgba(245,197,24,0.08);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(245,197,24,0.4), 0 8px 18px rgba(245,197,24,0.08);
}

.toggle-btn:hover {
  color: var(--foreground);
}

/* Grid e visibilidade */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-period-monthly,
.pricing-period-quarterly {
  display: none;
}

.pricing-period-monthly.active,
.pricing-period-quarterly.active {
  display: grid;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 48px rgba(245,197,24,0.12);
}

.pricing-card:hover:not(.popular) {
  border-color: rgba(245,197,24,0.25);
  transform: translateY(-3px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: hsl(240,10%,8%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

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

.plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-savings {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.plan-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}

.plan-amount {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: var(--foreground);
}

.plan-period {
  font-size: 16px;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card .btn {
  margin-top: auto;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-note svg {
  color: var(--primary);
}

/* =============================================
   FAQ
   ============================================= */
.faq { padding: 100px 0; background: var(--bg-card); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,197,24,0.3); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 18px 22px;
  background: var(--bg-elevated); border: none;
  color: var(--foreground); font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: left; gap: 16px;
  font-family: inherit; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-card); }
.faq-icon {
  font-size: 22px; color: var(--primary); flex-shrink: 0;
  font-weight: 300; transition: transform 0.3s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; background: var(--bg-elevated); }
.faq-answer.show { display: block; }
.faq-answer p { color: var(--muted); font-size: 14px; line-height: 1.75; }

/* =============================================
   CTA / CONTACT
   ============================================= */
.contact-cta { padding: 100px 0; }
.cta-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.12), transparent);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-box > p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; margin-bottom: 20px; }
.cta-note { color: var(--muted); font-size: 13px; position: relative; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { height: 32px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border: 1px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--muted); text-decoration: none; transition: var(--transition);
}
.social-btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--foreground);
  margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 14px; padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.telegram-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #229ED9; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,158,217,0.5);
  transition: var(--transition);
}
.telegram-float:hover { background: #1a8bbf; transform: scale(1.08); }

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .feat-grid          { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(17,19,24,0.98); padding: 24px;
    gap: 12px; border-bottom: 1px solid var(--border);
    backdrop-filter: blur(24px);
  }
  .nav-links.open { display: flex; }
  .nav-entrar, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero empilha no mobile */
  .hero-inner { flex-direction: column; gap: 48px; }
  .hero-left  { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { width: 100%; }
  .imac-wrap { max-width: 420px; animation: none; }

  .hero-title { letter-spacing: -0.5px; }
  .stat-item  { padding: 0 12px; }
  .stat-number { font-size: 20px; }

  .feat-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.popular { margin-top: 16px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 40px 24px; }

  .pricing-toggle {
    flex-direction: column;
    width: min(100%, 320px);
    gap: 8px;
    padding: 8px;
    border-radius: 28px;
    background: transparent;
    border-color: rgba(245,197,24,0.28);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    margin-left: auto;
    margin-right: auto;
  }

  .toggle-btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid transparent;
  }

  .toggle-btn.active {
    background: rgba(245,197,24,0.08);
    border-color: rgba(245,197,24,0.45);
    box-shadow: 0 8px 20px rgba(245,197,24,0.12);
  }

  .toggle-btn:not(.active) {
    background: transparent;
  }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .partners-logos { gap: 24px; }
  .partner-sep { display: none; }
}
