/* ==========================================================================
   AGÊNCIA IDEALIZZE - LANDING PAGE DE ALTA CONVERSÃO (DESIGN SYSTEM)
   ==========================================================================
   Cores Principais:
   - #000000 (Fundo Preto Absoluto)
   - #54ef00 (Verde Neon / Electric Lime Accent)
   - #ffffff (Texto Branco Puro)
   - #828a94 (Cinza Slate / Texto Secundário & Bordas Glassmorphic)
   ========================================================================== */

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

:root {
  /* Colors */
  --bg-dark: #000000;
  --bg-surface: #07090e;
  --bg-card: rgba(12, 16, 22, 0.78);
  --bg-card-hover: rgba(20, 27, 36, 0.92);
  --bg-card-solid: #0b0f14;
  
  --accent-lime: #54ef00;
  --accent-lime-hover: #44c600;
  --accent-lime-glow: rgba(84, 239, 0, 0.35);
  --accent-lime-subtle: rgba(84, 239, 0, 0.08);
  --accent-lime-border: rgba(84, 239, 0, 0.25);
  
  --text-main: #ffffff;
  --text-muted: #828a94;
  --text-sub: #b0b8c2;
  --text-dark: #040608;

  --border-light: rgba(130, 138, 148, 0.18);
  --border-glow: rgba(84, 239, 0, 0.5);

  --danger-red: #ff4757;
  --danger-bg: rgba(255, 71, 87, 0.1);
  --danger-border: rgba(255, 71, 87, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;

  /* Layout & Shadows */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glass: 0 12px 40px 0 rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(84, 239, 0, 0.28);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(84, 239, 0, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(84, 239, 0, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(130, 138, 148, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  padding-bottom: 70px; /* Space for mobile sticky cta */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #182029;
  border-radius: 5px;
  border: 2px solid #000000;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-lime);
}

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

/* Headings & Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-lime {
  color: var(--accent-lime) !important;
}

.lime-gradient, .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-lime) 55%, #3ebd00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(84, 239, 0, 0.08);
  border: 1px solid var(--accent-lime-border);
  color: var(--accent-lime);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-sub);
  font-size: 1.125rem;
}

/* ================= TOP ANNOUNCEMENT BAR ================= */
.top-bar {
  background: linear-gradient(90deg, #091206 0%, #152d0a 50%, #091206 100%);
  border-bottom: 1px solid var(--accent-lime-border);
  padding: 10px 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.live-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-lime);
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 16px var(--accent-lime); }
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-bulb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--accent-lime-glow));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-lime);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-lime);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-lime);
  color: var(--text-dark);
  box-shadow: 0 0 20px rgba(84, 239, 0, 0.35);
}

.btn-primary:hover {
  background: var(--accent-lime-hover);
  box-shadow: 0 0 35px rgba(84, 239, 0, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-lime-border);
  color: var(--accent-lime);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #000000;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 20px 42px;
  font-size: 1.18rem;
  font-weight: 800;
  border-radius: 100px;
}

/* Cards & Glassmorphic Container */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(84, 239, 0, 0.35);
  background: var(--bg-card-hover);
}

/* ================= HERO SECTION ================= */
.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(84, 239, 0, 0.16) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-container-centered {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(84, 239, 0, 0.1);
  border: 1px solid var(--accent-lime-border);
  color: var(--accent-lime);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(84, 239, 0, 0.15);
}

.hero-title-giant {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-subtitle-large {
  font-size: 1.35rem;
  color: #cbd5e1;
  margin: 0 auto 42px;
  max-width: 880px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-subtitle-large strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats-bar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 24px;
  background: rgba(10, 14, 20, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mascot-halo {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 239, 0, 0.28) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.mascot-main-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
  cursor: pointer;
  transition: transform 0.4s ease;
}

.mascot-main-img:hover {
  transform: scale(1.04) rotate(2deg);
}

.mascot-bubble {
  position: relative;
  z-index: 3;
  background: rgba(14, 20, 28, 0.95);
  border: 1px solid var(--accent-lime);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow);
  max-width: 320px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  animation: floatBubble 4s ease-in-out infinite;
}

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

/* ================= QUALIFICATION FILTER (PARA QUEM É VS NÃO É) ================= */
.qualify-section {
  padding: 80px 0;
  position: relative;
}

.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.qualify-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.qualify-card.not-for-you {
  background: rgba(20, 10, 12, 0.6);
  border: 1px solid var(--danger-border);
}

.qualify-card.for-you {
  background: rgba(8, 22, 10, 0.6);
  border: 1px solid var(--accent-lime-border);
  box-shadow: 0 0 40px rgba(84, 239, 0, 0.08);
}

.qualify-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.qualify-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.not-for-you .qualify-icon-badge {
  background: var(--danger-bg);
  color: var(--danger-red);
}

.for-you .qualify-icon-badge {
  background: var(--accent-lime-subtle);
  color: var(--accent-lime);
}

.qualify-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

.qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.not-for-you .qualify-list li {
  color: #d2a4a8;
}

.for-you .qualify-list li {
  color: #e0e8f0;
}

.qualify-list i {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ================= 5 PILARES DA OPERAÇÃO ================= */
.pilares-section {
  padding: 80px 0;
}

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

.pilar-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pilar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-lime-subtle);
  border: 1px solid var(--accent-lime-border);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pilar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pilar-card p {
  color: var(--text-sub);
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.pilar-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= INTERACTIVE PRICING / ROI SIMULATOR ================= */
.pricing-section {
  padding: 90px 0;
  position: relative;
}

.pricing-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.plan-tab {
  padding: 14px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-sub);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.plan-tab:hover, .plan-tab.active {
  background: rgba(84, 239, 0, 0.12);
  border-color: var(--accent-lime);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(84, 239, 0, 0.2);
}

.plan-tab.recommended {
  position: relative;
  border-color: var(--accent-lime);
}

.plan-tab.recommended::after {
  content: 'MAIS VENDIDO';
  position: absolute;
  top: -12px;
  right: 12px;
  background: var(--accent-lime);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 10px;
}

.pricing-display {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid var(--accent-lime-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-glass);
}

.plan-summary-box h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.plan-tagline {
  color: var(--accent-lime);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.price-breakdown {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.95rem;
}

.price-row:last-child {
  border-bottom: none;
  padding-top: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
}

.plan-deliverables h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.deliverables-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.deliverables-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-sub);
}

.deliverables-grid i {
  color: var(--accent-lime);
  flex-shrink: 0;
}

/* ================= COMPARISON TABLE ================= */
.comparison-section {
  padding: 80px 0;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: rgba(0, 0, 0, 0.8);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.comparison-table th.highlight-col {
  background: rgba(84, 239, 0, 0.12);
  color: var(--accent-lime);
  border-left: 1px solid var(--accent-lime-border);
  border-right: 1px solid var(--accent-lime-border);
}

.comparison-table td.highlight-col {
  background: rgba(84, 239, 0, 0.04);
  font-weight: 700;
  color: #ffffff;
  border-left: 1px solid var(--accent-lime-border);
  border-right: 1px solid var(--accent-lime-border);
}

.check-icon { color: var(--accent-lime); font-size: 1.2rem; }
.cross-icon { color: var(--danger-red); font-size: 1.2rem; }

/* ================= PROVA SOCIAL / METRICAS ================= */
.proof-section {
  padding: 80px 0;
}

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

.proof-card {
  text-align: center;
  padding: 36px 28px;
}

.proof-metric {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-lime);
  margin-bottom: 8px;
}

.proof-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.proof-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-sub);
  font-size: 1rem;
  display: none;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent-lime-border);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
}

/* ================= MODAL FAST-TRACK DIAGNÓSTICO ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0b0e14;
  border: 1px solid var(--accent-lime-border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 50px rgba(84, 239, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-lime);
  box-shadow: 0 0 12px rgba(84, 239, 0, 0.25);
}

/* ================= STICKY MOBILE CTA BAR ================= */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 8, 12, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--accent-lime-border);
  padding: 12px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-text {
  font-size: 0.85rem;
  font-weight: 700;
}

.sticky-text span {
  color: var(--accent-lime);
  display: block;
  font-size: 0.75rem;
}

/* ================= RESPONSIVITY ================= */
@media (max-width: 992px) {
  .hero-title-giant {
    font-size: 2.6rem;
  }
  .hero-subtitle-large {
    font-size: 1.1rem;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .qualify-grid {
    grid-template-columns: 1fr;
  }
  .pilares-grid {
    grid-template-columns: 1fr;
  }
  .pricing-display {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-title-giant {
    font-size: 2.1rem;
  }
  .btn-xl {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 993px) {
  .mobile-sticky-cta {
    display: none;
  }
}
