/* ==========================================================================
   TONYAUTOSALES555 - GUIA DIGITAL DE FINANCIAMIENTO - STYLE.CSS
   Estilo Ultra-Premium con Temática Carbono, Neón Rojo y Efectos 3D
   ========================================================================== */

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

/* --- Variables y Configuración --- */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  --bg-dark: #060607;
  --bg-dark-secondary: #0a0a0c;
  --bg-card: rgba(16, 16, 18, 0.75);
  --bg-card-hover: rgba(22, 22, 26, 0.85);
  --bg-nav: rgba(6, 6, 7, 0.85);
  
  --neon-red: #ff0e19;
  --neon-red-glow: 0 0 10px rgba(255, 14, 25, 0.4), 0 0 20px rgba(255, 14, 25, 0.2);
  --neon-red-glow-bright: 0 0 15px rgba(255, 14, 25, 0.75), 0 0 30px rgba(255, 14, 25, 0.4), 0 0 45px rgba(255, 14, 25, 0.2);
  
  --chrome-light: #f8fafc;
  --chrome-dark: #64748b;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(255, 255, 255, 0.15);
  --border-neon: rgba(255, 14, 25, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 800px; /* Ancho optimizado para lectura en embudos tipo landing mobile-first */
}

/* --- Reseteo de Estilos --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  
  /* Textura de Fibra de Carbono CSS */
  background-image: 
    linear-gradient(45deg, #0e0e10 25%, transparent 25%), 
    linear-gradient(-45deg, #0e0e10 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #0e0e10 75%), 
    linear-gradient(-45deg, transparent 75%, #0e0e10 75%),
    radial-gradient(circle at center, rgba(14, 14, 16, 0.9) 0%, var(--bg-dark) 100%);
  background-size: 32px 32px, 32px 32px, 32px 32px, 32px 32px, 100% 100%;
  background-position: 0 0, 0 16px, 16px -16px, -16px 0px, 0 0;
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1f1f23;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-red);
  box-shadow: var(--neon-red-glow);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Componentes Reutilizables --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  width: 100%;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-red) 0%, #b80009 100%);
  color: var(--text-primary);
  box-shadow: var(--neon-red-glow), 0 4px 15px rgba(255, 14, 25, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-red-glow-bright), 0 6px 20px rgba(255, 14, 25, 0.5);
  background: linear-gradient(135deg, #ff232d 0%, #d1000b 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 14, 25, 0.1);
  border: 1px solid var(--border-neon);
  color: var(--neon-red);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-shadow: var(--neon-red-glow);
  box-shadow: inset 0 0 10px rgba(255, 14, 25, 0.05);
}

.neon-text {
  color: var(--text-primary);
  text-shadow: var(--neon-red-glow);
}

.neon-text-red {
  color: var(--neon-red);
  text-shadow: var(--neon-red-glow);
}

/* --- Pantalla de Carga (Loading Screen) --- */
#loading-screen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: #030304;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
  padding: 20px;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Animación del carro SVG en el loading */
.loading-car-wrapper {
  width: 100%;
  height: 60px;
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.loading-car {
  width: 60px;
  height: auto;
  position: absolute;
  left: -60px;
  bottom: 5px;
  animation: driveCar 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.loading-car svg {
  fill: var(--neon-red);
  filter: drop-shadow(0 0 8px var(--neon-red));
}

/* Estela de luz del carro */
.loading-trail {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-red));
  bottom: 12px;
  left: 0;
  width: 0;
  filter: drop-shadow(0 0 4px var(--neon-red));
  animation: drawTrail 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.loading-road {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 12px;
  left: 0;
}

.loading-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.loading-bar-bg {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-red), #ff6b72);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-red);
  animation: fillBar 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes driveCar {
  0% { left: -60px; }
  10% { left: 0%; }
  50% { left: 45%; }
  85% { left: 75%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

@keyframes drawTrail {
  0% { width: 0; }
  10% { width: 10%; }
  50% { width: 50%; }
  85% { width: 80%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

@keyframes fillBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* --- Header / Navbar --- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img-nav {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--neon-red);
  box-shadow: var(--neon-red-glow);
  object-fit: cover;
}

.logo-text-nav {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text-nav span {
  color: var(--neon-red);
  -webkit-text-fill-color: var(--neon-red);
  text-shadow: var(--neon-red-glow);
}

/* --- Hero Section --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: var(--glow-y, 30%);
  left: var(--glow-x, 50%);
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 14, 25, 0.08) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  transition: top 0.1s ease-out, left 0.1s ease-out;
}

.hero-bg-dots {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff 40%, #e4e4e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  display: block;
  font-size: 2.6rem;
  color: var(--neon-red);
  -webkit-text-fill-color: var(--neon-red);
  text-shadow: var(--neon-red-glow);
  font-style: italic;
  font-weight: 950;
  margin-top: 4px;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  max-width: 600px;
}

.hero-secondary-line {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  border-left: 2px solid var(--neon-red);
  padding-left: 12px;
  text-align: left;
  max-width: 580px;
  margin-bottom: 28px;
  background: rgba(255, 14, 25, 0.02);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 12px;
  border-radius: 0 6px 6px 0;
}

.hero-cta-group {
  width: 100%;
  max-width: 360px;
  margin-bottom: 35px;
}

.trust-micro-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.trust-micro-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-micro-item svg {
  color: var(--neon-red);
  width: 12px;
  height: 12px;
}

/* Imagen del Carro Deportiva en Hero */
.hero-visual {
  width: 100%;
  max-width: 560px;
  position: relative;
  perspective: 1000px;
}

.hero-car-img {
  width: 100%;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease-out;
}

.hero-car-shadow-glow {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 80%;
  height: 20px;
  background: rgba(255, 14, 25, 0.35);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

/* --- Section Global Layout --- */
.section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

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

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--neon-red);
  text-shadow: var(--neon-red-glow);
  font-style: italic;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 550px;
  margin: 0 auto;
}

/* --- Problem Section --- */
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.problem-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.problem-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-neon);
  box-shadow: 0 8px 24px rgba(255, 14, 25, 0.05);
}

.problem-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 14, 25, 0.08);
  border: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon-red);
  box-shadow: inset 0 0 10px rgba(255, 14, 25, 0.05);
}

.problem-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.problem-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.problem-card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- What You Will Learn Section --- */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.learn-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 22px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.learn-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.learn-check-icon {
  color: #10b981; /* Verde esmeralda de confianza */
  flex-shrink: 0;
  margin-top: 2px;
}

.learn-check-icon svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.3));
}

.learn-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* --- Who This Is For Section --- */
.who-list {
  background-color: rgba(10, 10, 12, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.who-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--neon-red);
  box-shadow: var(--neon-red-glow);
  margin-top: 8px;
  flex-shrink: 0;
}

.who-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* --- Authority Section --- */
.authority-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.authority-glow {
  position: absolute;
  top: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 14, 25, 0.12) 0%, transparent 70%);
  filter: blur(30px);
}

.authority-avatar-wrap {
  position: relative;
  margin-bottom: 20px;
}

.authority-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--neon-red);
  box-shadow: var(--neon-red-glow-bright);
  object-fit: cover;
}

.authority-badge-small {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--neon-red);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
  box-shadow: var(--neon-red-glow);
}

.authority-badge-small svg {
  width: 14px;
  height: 14px;
}

.authority-name {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.authority-handle {
  font-size: 0.85rem;
  color: var(--neon-red);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-shadow: var(--neon-red-glow);
}

.authority-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 20px;
}

.authority-trust-line {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  width: 100%;
}

/* --- Offer Section (Caja de Compra $9) --- */
.offer-box {
  background: linear-gradient(180deg, rgba(22, 22, 26, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
  border: 2px solid var(--border-neon);
  box-shadow: 0 15px 35px rgba(255, 14, 25, 0.06), 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 35px 24px;
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
}

.offer-header {
  text-align: center;
  margin-bottom: 28px;
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 14, 25, 0.15);
  border: 1px solid var(--neon-red);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.offer-title {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.offer-price-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}

.offer-price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.offer-price-current {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: var(--neon-red-glow);
}

.offer-price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-red);
  align-self: flex-start;
  margin-top: 10px;
}

.offer-includes-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 8px;
}

.offer-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.offer-item-bullet {
  color: var(--neon-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-item-bullet svg {
  width: 18px;
  height: 18px;
}

.offer-action {
  margin-bottom: 16px;
}

.offer-security-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.offer-security-info svg {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* --- FAQ Section (Acordeón) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover, .faq-item.active {
  border-color: var(--border-glass-bright);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: transform var(--transition-normal), color var(--transition-fast);
}

.faq-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(45deg);
  color: var(--neon-red);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 20px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 15px;
}

/* --- Final CTA Section --- */
.final-cta {
  background: radial-gradient(circle at bottom, rgba(255, 14, 25, 0.07) 0%, transparent 60%);
  text-align: center;
}

.final-cta .hero-cta-group {
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  background-color: #030304;
  padding: 40px 0 100px 0; /* Espacio extra abajo para que el sticky CTA de móvil no tape contenido */
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-disclaimers {
  max-width: 600px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-support {
  margin-bottom: 20px;
}

.footer-support a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
}

.footer-support a:hover {
  color: var(--neon-red);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 20px;
  color: var(--text-muted);
}

/* --- Sticky Bottom CTA (Mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glass-bright);
  padding: 12px 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.sticky-cta-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-red);
  text-shadow: var(--neon-red-glow);
}

.sticky-cta .btn {
  padding: 12px 24px;
  width: auto;
  font-size: 0.85rem;
}

/* --- Animaciones de Entrada (Scroll Reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Media Queries responsivas (Desktop / Tablets) --- */
@media (min-width: 600px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-title span {
    font-size: 3.4rem;
  }
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2.2rem;
  }
  .sticky-cta {
    display: none; /* Ocultar el sticky bar en tabletas/computadoras y forzar el uso del layout tradicional */
  }
  .footer {
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  /* En pantallas muy grandes limitamos el ancho para enfocar la lectura del embudo */
  body {
    background-size: 40px 40px, 40px 40px, 40px 40px, 40px 40px, 100% 100%;
  }
}
