/* ==========================================================================
   DROPSHIPPING VALENCIA - ESTILOS PRINCIPALES
   Estrategia: Producto + Movimiento | Paleta Oficial: Naranja (#fd5000), Morado (#50007f) y Blanco (#ffffff)
   ========================================================================== */

@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&display=swap');

:root {
  /* Paleta Oficial Naranja, Morado y Blanco */
  --orange-primary: #fd5000;
  --orange-primary-hover: #e04600;
  --orange-glow: rgba(253, 80, 0, 0.32);
  --orange-gradient: linear-gradient(135deg, #fd5000 0%, #e04600 100%);
  --orange-light: #FFF2EB;
  --orange-subtle: #FFE4D6;

  --purple-primary: #50007f;
  --purple-primary-hover: #6a00a8;
  --purple-dark: #370058;
  --purple-glow: rgba(80, 0, 127, 0.28);
  --purple-gradient: linear-gradient(135deg, #370058 0%, #50007f 60%, #6d02ad 100%);
  --purple-light: #F7EFFB;
  --purple-subtle: #EBD6F5;

  --brand-gradient: linear-gradient(135deg, #50007f 0%, #fd5000 100%);
  --brand-gradient-reverse: linear-gradient(135deg, #fd5000 0%, #50007f 100%);

  /* Superficies y Fondos Blancos y Lavanda Naranja X */
  --surface-lilac: #F6F0FA;
  --surface-lilac-subtle: #FAF6FD;
  --navy-deep: #FFFFFF;
  --navy-surface: #FAF7FD;
  --navy-card: #FFFFFF;
  --navy-card-hover: #FFF9F5;
  --navy-border: rgba(80, 0, 127, 0.12);
  --navy-border-hover: rgba(253, 80, 0, 0.35);
  
  /* Mapeo de tokens heredados */
  --blue-primary: #50007f;
  --blue-primary-hover: #6a00a8;
  --blue-electric: #fd5000;
  --blue-electric-glow: rgba(253, 80, 0, 0.30);
  --blue-gradient: linear-gradient(135deg, #370058 0%, #50007f 100%);
  --blue-light: #F7EFFB;
  --blue-subtle: #EBD6F5;
  
  /* Acción, Entrega y Rapidez (Naranja Vibrante) */
  --green-delivery: #fd5000;
  --green-delivery-hover: #e04600;
  --green-glow: rgba(253, 80, 0, 0.32);
  --green-gradient: linear-gradient(135deg, #fd5000 0%, #e04600 100%);

  /* Tipografía y Neutros sobre Fondo Blanco */
  --text-primary: #1E0A2D;
  --text-secondary: #3B2A4A;
  --text-muted: #6E5F7B;
  --text-on-blue: #FFFFFF;
  --bg-gradient-subtle: radial-gradient(circle at 50% 0%, rgba(80, 0, 127, 0.04) 0%, transparent 60%);
  
  /* Tipografía */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Sombras y Elevaciones PRO */
  --shadow-sm: 0 2px 8px rgba(30, 10, 45, 0.05);
  --shadow-md: 0 10px 30px rgba(80, 0, 127, 0.08), 0 2px 6px rgba(30, 10, 45, 0.03);
  --shadow-pro-sm: 0 4px 14px rgba(80, 0, 127, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-pro-md: 0 14px 32px -4px rgba(80, 0, 127, 0.10), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --shadow-pro-lg: 0 24px 52px -10px rgba(80, 0, 127, 0.14), 0 8px 24px -4px rgba(0, 0, 0, 0.04);
  --shadow-glow-green: 0 8px 25px rgba(253, 80, 0, 0.35);
  --shadow-glow-blue: 0 8px 30px rgba(80, 0, 127, 0.25);
  --shadow-glow-orange: 0 10px 30px rgba(253, 80, 0, 0.38);
  --shadow-glow-purple: 0 10px 30px rgba(80, 0, 127, 0.32);
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Dimensiones */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* Reset y Base */
*, *::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-body);
  background-color: #FFFFFF;
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Fondo Tecnológico Global en Blanco, Morado y Naranja */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 15%, rgba(253, 80, 0, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(80, 0, 127, 0.035) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(253, 80, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Cuadrícula sutil tech en púrpura ultra-suave */
.tech-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(80, 0, 127, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 0, 127, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #50007f 0%, #fd5000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, #fd5000 0%, #e04600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-delivery-green {
  color: var(--orange-primary);
}

.text-electric {
  color: var(--orange-primary);
}

/* Subrayados Elegantes Estilo Naranja X */
.text-underline-orange {
  text-decoration: underline;
  text-decoration-color: var(--orange-primary);
  text-decoration-thickness: 3.5px;
  text-underline-offset: 6px;
}

.text-underline-purple {
  text-decoration: underline;
  text-decoration-color: var(--purple-primary);
  text-decoration-thickness: 3.5px;
  text-underline-offset: 6px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

/* Encabezados de Sección */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--purple-light);
  border: 1px solid rgba(80, 0, 127, 0.22);
  color: var(--purple-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.section-tag.green,
.section-tag.orange {
  background: var(--orange-light);
  border-color: rgba(253, 80, 0, 0.25);
  color: var(--orange-primary);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BOTONES Y ELEMENTOS DE ACCIÓN (CTAs)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

/* CTA Primario - Morado Sólido Oficial Naranja X (#50007f) */
.btn-primary {
  background: var(--purple-primary);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(80, 0, 127, 0.28);
  letter-spacing: 0.01em;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(80, 0, 127, 0.45);
  background: var(--purple-primary-hover);
  color: #FFFFFF;
}

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

.btn-primary .btn-icon {
  font-size: 1.15rem;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* CTA Naranja Vibrante - Para Contraste e Impacto en Fondos Oscuros */
.btn-orange {
  background: var(--orange-gradient);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(253, 80, 0, 0.35);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.btn-orange::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-orange:hover::after {
  left: 130%;
}

.btn-orange:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(253, 80, 0, 0.5);
  background: linear-gradient(135deg, #ff631c 0%, #fd5000 100%);
  color: #FFFFFF;
}

.btn-orange:active {
  transform: translateY(0) scale(0.99);
}

/* CTA Secundario - Contorno Blanco con Borde Morado */
.btn-secondary {
  background: #FFFFFF;
  border: 1.5px solid rgba(80, 0, 127, 0.25);
  color: var(--purple-primary);
  box-shadow: 0 4px 14px rgba(80, 0, 127, 0.06);
}

.btn-secondary:hover {
  background: var(--purple-light);
  border-color: var(--purple-primary);
  color: var(--purple-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(80, 0, 127, 0.15);
}

.btn-secondary .btn-icon-down {
  transition: transform var(--transition-fast);
}

.btn-secondary:hover .btn-icon-down {
  transform: translateY(3px);
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (BANNER SUPERIOR NOTICIOSO PRO)
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #370058 0%, #50007f 45%, #fd5000 100%);
  color: #FFFFFF;
  padding: 0.52rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(80, 0, 127, 0.2);
}

.top-announcement-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-announcement-pill {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-announcement-link {
  color: #FFE5D6;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  transition: color var(--transition-fast);
}

.top-announcement-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   HEADER & NAVEGACIÓN (BLANCO CON MORADO Y NARANJA)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(80, 0, 127, 0.08);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(80, 0, 127, 0.08);
  border-bottom-color: rgba(253, 80, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

/* Brand / Logo Oficial */
.brand-logo-official {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.brand-logo-official:hover {
  transform: translateY(-1px) scale(1.02);
}

.site-logo-img {
  height: 52px;
  width: auto;
  max-width: 65px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(80, 0, 127, 0.18));
  transition: all var(--transition-smooth);
}

.brand-logo-official:hover .site-logo-img {
  filter: drop-shadow(0 6px 16px rgba(253, 80, 0, 0.35));
  transform: scale(1.05) rotate(2deg);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--purple-primary);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-logo .site-logo-img {
  height: 52px;
  max-width: 65px;
}

@media (max-width: 768px) {
  .site-logo-img {
    height: 40px;
    max-width: 50px;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-sub {
    font-size: 0.65rem;
  }
}

/* Fallback Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #50007f 0%, #fd5000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(80, 0, 127, 0.25);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--orange-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Menú: Enlaces en Morado con hover en Naranja */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--purple-primary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--orange-primary);
  border-radius: var(--radius-pill);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue-primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 2px solid var(--blue-light);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.4rem;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu .mobile-cta {
    display: flex;
    width: 100%;
    margin-top: 1rem;
  }
}

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

/* ==========================================================================
   01 · HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--surface-lilac);
  border-bottom: 1px solid rgba(80, 0, 127, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--orange-light);
  border: 1px solid rgba(253, 80, 0, 0.25);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-primary);
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-primary);
  box-shadow: 0 0 10px var(--orange-primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 1; }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.guarantee-item svg {
  color: var(--orange-primary);
  flex-shrink: 0;
}

/* Hero Visual Card (Blanco Limpio con Detalles Morados y Naranjas) */
.hero-visual {
  position: relative;
}

.hero-mockup-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(80, 0, 127, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(80, 0, 127, 0.08), 0 4px 16px rgba(30, 10, 45, 0.04);
  position: relative;
  overflow: hidden;
}

.hero-mockup-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(253, 80, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #E2E8F0;
}

.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-primary);
  background: var(--orange-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.mockup-speed-box {
  background: #FAF7FD;
  border: 1px solid #EADBFA;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.speed-tracker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  position: relative;
}

.speed-progress-bar {
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: #E2E8F0;
  z-index: 0;
}

.speed-progress-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #50007f 0%, #fd5000 100%);
  box-shadow: 0 0 10px rgba(253, 80, 0, 0.4);
}

.tracker-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.tracker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--purple-primary);
  font-weight: 700;
}

.tracker-step.completed .tracker-dot {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(80, 0, 127, 0.35);
}

.tracker-step.active .tracker-dot {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(253, 80, 0, 0.4);
  animation: pulse-dot 2s infinite;
}

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

.mockup-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mockup-metric-card {
  background: #FAF7FD;
  border: 1px solid #EADBFA;
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple-primary);
  display: block;
}

.metric-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating Badge decorativo en Blanco y Naranja */
.floating-speed-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #FFFFFF;
  border: 1.5px solid var(--orange-primary);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 15px 35px rgba(253, 80, 0, 0.18), 0 4px 12px rgba(30, 10, 45, 0.05);
  animation: float 4s ease-in-out infinite;
}

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

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .floating-speed-badge {
    bottom: -10px;
    left: 10px;
  }
}

/* ==========================================================================
   NARANJA X - COMPOSICIÓN VISUAL HERO PRO (TELÉFONO + 2 TARJETAS FLOTANTES)
   ========================================================================== */
.nx-hero-composition {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  perspective: 1200px;
  padding: 1rem 0;
}

.nx-hero-composition::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(80, 0, 127, 0.12) 0%, rgba(253, 80, 0, 0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(35px);
}

@keyframes floatSlowPurple {
  0%, 100% {
    transform: rotate(-9deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(-12px);
  }
}

@keyframes floatSlowOrange {
  0%, 100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-14px);
  }
}

/* Tarjeta Morada Flotante (Izquierda) */
.nx-card-floating {
  position: absolute;
  width: 205px;
  height: 275px;
  border-radius: 20px;
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16), 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  color: #FFFFFF;
}

.nx-card-purple {
  left: 2%;
  top: 16%;
  background: linear-gradient(135deg, #370058 0%, #50007f 60%, #6800a4 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: floatSlowPurple 7s ease-in-out infinite;
}

.nx-card-purple:hover {
  transform: rotate(-4deg) translateY(-10px) scale(1.05);
  box-shadow: 0 28px 55px rgba(80, 0, 127, 0.42);
  z-index: 4;
  animation-play-state: paused;
}

/* Tarjeta Naranja Flotante (Derecha) */
.nx-card-orange {
  right: 2%;
  top: 20%;
  background: linear-gradient(135deg, #fd5000 0%, #ff6b21 50%, #e04600 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: floatSlowOrange 8s ease-in-out infinite 1s;
}

.nx-card-orange:hover {
  transform: rotate(4deg) translateY(-10px) scale(1.05);
  box-shadow: 0 28px 55px rgba(253, 80, 0, 0.45);
  z-index: 4;
  animation-play-state: paused;
}

.nx-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Chip Metálico Dorado Estilo Tarjeta Premium */
.nx-card-chip {
  width: 34px;
  height: 25px;
  background: linear-gradient(135deg, #FFE49E 0%, #FFB638 50%, #E68A00 100%);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.15);
}

.nx-card-chip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
}

.nx-card-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 45%;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.nx-card-chip-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #CBD5E1 100%);
}

.nx-card-logo-symbol {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nx-card-body {
  margin: 1.2rem 0;
}

.nx-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  margin-bottom: 0.5rem;
}

.nx-card-main-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.15;
  display: block;
  letter-spacing: -0.01em;
}

.nx-card-sub-text {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.35rem;
  display: block;
}

.nx-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Smartphone Mockup Central (Blanco Limpio con Detalles PRO) */
.nx-phone-mockup {
  position: relative;
  width: 260px;
  background: #FFFFFF;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(80, 0, 127, 0.16), 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 4px solid #FFFFFF;
  outline: 1px solid rgba(80, 0, 127, 0.12);
  z-index: 2;
  transition: transform 0.4s ease;
}

.nx-phone-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(80, 0, 127, 0.22), 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nx-phone-speaker {
  width: 60px;
  height: 5px;
  background: #E2E8F0;
  border-radius: 10px;
  margin: 6px auto 14px;
}

.nx-phone-screen {
  background: #FAFAFD;
  border-radius: 26px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.nx-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #EDF2F7;
}

.nx-screen-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nx-screen-logo img {
  height: 24px;
  width: auto;
}

.nx-screen-logo-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple-primary);
}

.nx-screen-status-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange-primary);
  background: var(--orange-light);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.nx-screen-balance-box {
  background: #FFFFFF;
  border: 1px solid rgba(80, 0, 127, 0.08);
  border-radius: 14px;
  padding: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(80, 0, 127, 0.04);
}

.nx-balance-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nx-balance-num {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--purple-primary);
  line-height: 1.15;
  margin: 0.2rem 0;
}

.nx-balance-num span {
  color: var(--orange-primary);
}

.nx-balance-tag {
  display: inline-block;
  font-size: 0.68rem;
  color: #10B981;
  font-weight: 700;
}

.nx-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.nx-quick-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.6rem 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.nx-quick-icon {
  font-size: 1rem;
}

.nx-recent-order {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nx-order-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange-light);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nx-order-details {
  flex: 1;
  min-width: 0;
}

.nx-order-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.nx-order-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
}

@media (max-width: 992px) {
  .nx-hero-composition {
    min-height: 380px;
    margin-top: 1rem;
  }
  .nx-card-floating {
    width: 170px;
    height: 230px;
    padding: 1rem;
  }
  .nx-card-purple {
    left: 2%;
    top: 12%;
  }
  .nx-card-orange {
    right: 2%;
    top: 18%;
  }
  .nx-phone-mockup {
    width: 220px;
  }
}

@media (max-width: 576px) {
  .nx-hero-composition {
    min-height: 340px;
    overflow: visible;
  }
  .nx-card-floating {
    width: 140px;
    height: 190px;
    padding: 0.8rem;
  }
  .nx-card-purple {
    left: -10px;
    transform: rotate(-10deg) scale(0.88);
  }
  .nx-card-orange {
    right: -10px;
    transform: rotate(10deg) scale(0.88);
  }
  .nx-phone-mockup {
    width: 200px;
  }
}

/* ==========================================================================
   02 · BARRA DE CONFIANZA / BANNER DINÁMICO (TRUSTBAR)
   ========================================================================== */
.trustbar-section {
  padding: 1.6rem 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(80, 0, 127, 0.08);
  border-bottom: 1px solid rgba(80, 0, 127, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(80, 0, 127, 0.03);
}

.trustbar-section::before,
.trustbar-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.trustbar-section::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.trustbar-section::after {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.trustbar-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  background: rgba(80, 0, 127, 0.03);
  border: 1px solid rgba(80, 0, 127, 0.08);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.trust-item:hover {
  background: var(--purple-light);
  border-color: rgba(253, 80, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(80, 0, 127, 0.06);
}

.trust-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 6px rgba(253, 80, 0, 0.3));
  transition: transform var(--transition-fast);
}

.trust-item:hover .trust-icon {
  transform: scale(1.15) rotate(5deg);
}

.trust-separator {
  color: rgba(80, 0, 127, 0.2);
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .trustbar-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .trust-separator {
    display: none;
  }
}

/* ==========================================================================
   03 · EL PROBLEMA (CONTRASTE)
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.problem-card {
  background: #FFF8F8;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.04);
}

.problem-card.solution {
  background: #FFFFFF;
  border: 1.5px solid var(--purple-primary);
  box-shadow: 0 15px 35px rgba(80, 0, 127, 0.1), 0 4px 14px rgba(30, 10, 45, 0.04);
}

.card-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.tag-red {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.tag-green {
  background: var(--purple-light);
  color: var(--purple-primary);
  border: 1px solid rgba(80, 0, 127, 0.3);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.problem-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.problem-list-item .icon-cross {
  color: #EF4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-list-item .icon-check {
  color: var(--orange-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 850px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   04 · LA PROPUESTA (3 PILARES)
   ========================================================================== */
.proposal-section {
  background: var(--surface-lilac);
  border-top: 1px solid rgba(80, 0, 127, 0.08);
  border-bottom: 1px solid rgba(80, 0, 127, 0.08);
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.proposal-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}

.proposal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-fast);
}

.proposal-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-primary);
  box-shadow: 0 18px 40px rgba(253, 80, 0, 0.12), 0 4px 12px rgba(30, 10, 45, 0.04);
}

.proposal-card:hover::before {
  background: var(--orange-primary);
}

.proposal-card.featured {
  border-color: rgba(80, 0, 127, 0.35);
  box-shadow: 0 12px 30px rgba(80, 0, 127, 0.08);
}

.proposal-card.featured::before {
  background: linear-gradient(90deg, #50007f 0%, #fd5000 100%);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple-primary);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proposal-card.featured .step-num-badge {
  color: var(--orange-primary);
}

.proposal-title {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  color: var(--text-primary);
}

.proposal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .proposal-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   05 · EL DIFERENCIAL (BLOQUE MORADO IMPACTANTE CON ACENTO NARANJA)
   ========================================================================== */
.differential-box {
  background: linear-gradient(135deg, #370058 0%, #50007f 60%, #6e01a8 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  box-shadow: 0 20px 50px rgba(80, 0, 127, 0.32);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.differential-box h2,
.differential-box h3,
.differential-box strong,
.differential-box .section-title {
  color: #FFFFFF !important;
}

.differential-box .text-gradient-green,
.differential-box .text-gradient-blue {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.45);
}

.differential-box p {
  color: #F7EFFB !important;
}

.differential-box span {
  color: #EBD6F5 !important;
}

.differential-box .section-tag {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
}

.differential-box::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(253, 80, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.differential-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.speed-points {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 2rem;
}

.speed-point-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.speed-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.speed-card-visual {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.speed-card-visual span {
  color: #DBEAFE !important;
}

.speed-timer-big {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin: 1rem 0 0.5rem;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 850px) {
  .differential-box {
    padding: 2.5rem 1.8rem;
  }
  
  .differential-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   06 · CÓMO FUNCIONA (6 PASOS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.step-item-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: all var(--transition-smooth);
  position: relative;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.step-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-primary);
  background: #FAF7FD;
  box-shadow: 0 15px 35px rgba(253, 80, 0, 0.12);
}

.step-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--purple-primary);
  background: var(--purple-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

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

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   07 · CATEGORÍAS DE PRODUCTOS
   ========================================================================== */
.categories-section,
.products-section {
  background: var(--surface-lilac);
  border-top: 1px solid rgba(80, 0, 127, 0.08);
  border-bottom: 1px solid rgba(80, 0, 127, 0.08);
}

/* 3 Pilares del Kit de Ventas / Material Comercial */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

.product-feature-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(80, 0, 127, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(80, 0, 127, 0.04);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: transparent;
  transition: all var(--transition-fast);
}

.product-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 80, 0, 0.35);
  box-shadow: 0 16px 36px rgba(80, 0, 127, 0.1);
}

.product-feature-card:hover::before {
  background: linear-gradient(90deg, #50007f 0%, #fd5000 100%);
}

.product-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 4px 12px rgba(80, 0, 127, 0.06);
}

.product-feature-icon.purple {
  background: var(--purple-light);
  color: var(--purple-primary);
  border: 1px solid rgba(80, 0, 127, 0.12);
}

.product-feature-icon.orange {
  background: var(--orange-light);
  color: var(--orange-primary);
  border: 1px solid rgba(253, 80, 0, 0.18);
}

.product-feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.product-feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Caja Destacada de Líneas de Alta Demanda */
.catalog-highlight-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(80, 0, 127, 0.12);
  border-radius: var(--radius-xl);
  padding: 3.2rem 2.4rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(80, 0, 127, 0.05);
  position: relative;
}

.catalog-highlight-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #16a34a;
  background: #DCFCE7;
  border: 1px solid rgba(22, 163, 74, 0.25);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-highlight-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .product-features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.category-card {
  background: #FFFFFF;
  border: 1px solid rgba(80, 0, 127, 0.10);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.4rem 1.8rem;
  text-align: center;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(80, 0, 127, 0.04);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: all var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 80, 0, 0.35);
  box-shadow: 0 20px 45px rgba(80, 0, 127, 0.14), 0 4px 12px rgba(253, 80, 0, 0.06);
}

.category-card:hover::before {
  background: linear-gradient(90deg, #50007f 0%, #fd5000 100%);
}

.category-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #FAF5FD;
  border: 1px solid rgba(80, 0, 127, 0.12);
  color: var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(80, 0, 127, 0.05);
  transition: all var(--transition-smooth);
}

.category-card:hover .category-icon-wrapper {
  background: linear-gradient(135deg, #50007f 0%, #fd5000 100%);
  color: #FFFFFF;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 10px 24px rgba(253, 80, 0, 0.35);
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}

.category-status {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--orange-primary);
  background: var(--orange-light);
  border: 1px solid rgba(253, 80, 0, 0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.category-products-list {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(80, 0, 127, 0.12);
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.45;
  width: 100%;
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   08 · ¿ESTO ES PARA TI? (CUALIFICACIÓN)
   ========================================================================== */
.target-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.target-check-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(80, 0, 127, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(80, 0, 127, 0.06);
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.check-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}

.target-not-card {
  background: #F8FAFC;
  border: 1.5px dashed #CBD5E1;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-needed-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.not-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.not-item span {
  text-decoration: line-through;
  opacity: 0.8;
}

@media (max-width: 850px) {
  .target-container {
    grid-template-columns: 1fr;
  }
  
  .target-check-card, .target-not-card {
    padding: 2rem;
  }
}

/* ==========================================================================
   09 · MÉTRICAS Y PRUEBA SOCIAL
   ========================================================================== */
.metrics-section {
  background: var(--surface-lilac);
  border-top: 1px solid rgba(80, 0, 127, 0.08);
  border-bottom: 1px solid rgba(80, 0, 127, 0.08);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric-stat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.metric-stat-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(253, 80, 0, 0.12);
}

.metric-big-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.6rem;
  color: var(--purple-primary);
}

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

@media (max-width: 850px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10 · CTA FINAL (ALTA CONVERSIÓN EN MORADO Y NARANJA)
   ========================================================================== */
.final-cta-card {
  background: linear-gradient(135deg, #2b0042 0%, #50007f 50%, #6800a4 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(80, 0, 127, 0.35);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(253, 80, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-card span {
  color: #EBD6F5;
}

.final-cta-card .section-tag {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
}

.final-cta-title {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #FFFFFF !important;
}

.final-cta-title span {
  color: #FFFFFF !important;
}

.final-cta-title .text-gradient-green {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.final-cta-desc {
  font-size: 1.3rem;
  color: #F7EFFB !important;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

.final-btn-huge {
  background: #fd5000 !important;
  color: #FFFFFF !important;
  font-size: 1.25rem;
  padding: 1.2rem 3rem;
  box-shadow: 0 10px 35px rgba(253, 80, 0, 0.45);
  font-weight: 800;
  border-radius: var(--radius-pill);
}

.final-btn-huge span {
  color: #FFFFFF !important;
}

.final-btn-huge:hover {
  background: #e04600 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(253, 80, 0, 0.6);
}

.final-btn-huge:hover span {
  color: #FFFFFF !important;
}

@media (max-width: 768px) {
  .final-cta-card {
    padding: 3.5rem 1.8rem;
  }
  
  .final-cta-title {
    font-size: 2.3rem;
  }
  
  .final-cta-desc {
    font-size: 1.1rem;
  }
  
  .final-btn-huge {
    font-size: 1.05rem;
    padding: 1rem 2rem;
    width: 100%;
  }
}

/* ==========================================================================
   FORMULARIO DE REGISTRO INTERACTIVO (ALTA CONVERSIÓN EN MORADO Y NARANJA)
   ========================================================================== */
@keyframes formPulseHighlight {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 80, 0, 0.85), 0 25px 60px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(253, 80, 0, 0.35), 0 30px 70px rgba(253, 80, 0, 0.4);
    transform: translateY(-4px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 80, 0, 0), 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
  }
}

.form-highlight-pulse {
  animation: formPulseHighlight 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2;
}

.lead-form-container {
  max-width: 820px;
  margin: 2.5rem auto 0;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 3rem 2.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  z-index: 3;
  color: #1E0A2D;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-form-header {
  margin-bottom: 2.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(80, 0, 127, 0.1);
  padding-bottom: 1.5rem;
}

.lead-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F7EFFB;
  color: #50007f;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
  border: 1px solid rgba(80, 0, 127, 0.2);
}

.lead-form-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #1E0A2D;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.lead-form-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E0A2D;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .req {
  color: #fd5000;
  font-weight: 900;
  margin-left: 0.25rem;
}

.form-control-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-icon {
  position: absolute;
  left: 1rem;
  color: #8A729A;
  font-size: 1.15rem;
  pointer-events: none;
  transition: color 0.2s ease;
  user-select: none;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.88rem 1rem 0.88rem 2.85rem;
  background: #FAF7FD;
  border: 1.5px solid #E2D9EC;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1E0A2D;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: #94A3B8;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #fd5000;
  box-shadow: 0 0 0 4px rgba(253, 80, 0, 0.14);
}

.form-input:focus + .form-icon,
.form-control-wrap:focus-within .form-icon {
  color: #fd5000;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: #EF4444;
  background: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-group.has-error .form-icon {
  color: #EF4444;
}

.form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #EF4444;
  font-weight: 600;
  margin-top: 0.2rem;
}

.form-group.has-error .form-error-msg {
  display: block;
}

/* Selector de Experiencia en Tarjetas/Chips */
.exp-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.exp-option-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  background: #FAF7FD;
  border: 1.5px solid #E2D9EC;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E0A2D;
  transition: all 0.2s ease;
  user-select: none;
}

.exp-option-label:hover {
  background: #F7EFFB;
  border-color: #50007f;
}

.exp-option-label input[type="radio"] {
  accent-color: #50007f;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.exp-option-label.is-checked {
  background: #F7EFFB;
  border-color: #50007f;
  box-shadow: 0 0 0 3px rgba(80, 0, 127, 0.12);
  color: #50007f;
  font-weight: 800;
}

/* Botón Principal de Envío */
.lead-submit-btn {
  width: 100%;
  padding: 1.15rem 2rem;
  background: linear-gradient(135deg, #fd5000 0%, #ff661a 100%);
  color: #FFFFFF !important;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(253, 80, 0, 0.45);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.lead-submit-btn span {
  color: #FFFFFF !important;
}

.lead-submit-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 15px 40px rgba(253, 80, 0, 0.6);
  background: linear-gradient(135deg, #e04600 0%, #fd5000 100%);
}

.lead-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.lead-submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.lead-submit-btn.is-loading .lead-submit-spinner {
  display: inline-block;
}

.lead-submit-btn.is-loading .btn-text-content {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lead-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
}

.lead-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

/* Pantalla de Registro Exitoso */
.lead-success-card {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.lead-success-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  border: 2px solid rgba(37, 211, 102, 0.3);
}

.lead-success-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #1E0A2D;
  margin-bottom: 0.5rem;
}

.lead-success-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.lead-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 440px;
  margin: 0 auto;
}

.btn-success-wa {
  background: #25D366 !important;
  color: #FFFFFF !important;
  padding: 1.05rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}

.btn-success-wa span {
  color: #FFFFFF !important;
}

.btn-success-wa:hover {
  background: #1EBE5D !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

.btn-success-drive {
  background: #FAF7FD;
  color: #50007f !important;
  border: 1.5px solid rgba(80, 0, 127, 0.25);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-success-drive:hover {
  background: #F7EFFB;
  border-color: #50007f;
}

.btn-reset-form {
  background: transparent;
  border: none;
  color: #8A729A;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.btn-reset-form:hover {
  color: #50007f;
}

@media (max-width: 768px) {
  .lead-form-container {
    padding: 2.2rem 1.4rem;
    border-radius: 18px;
    margin-top: 2rem;
  }
  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .exp-options-grid {
    grid-template-columns: 1fr;
  }
  .lead-form-title {
    font-size: 1.45rem;
  }
  .lead-submit-btn {
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
  }
  .lead-trust-row {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* ==========================================================================
   FOOTER (MORADO PROFUNDO ELEGANTE ESTILO NARANJA X)
   ========================================================================== */
.site-footer {
  background: #25003A;
  border-top: 1px solid rgba(80, 0, 127, 0.25);
  padding: 4.5rem 0 2rem;
  position: relative;
  color: #FFFFFF;
}

.site-footer .brand-title {
  color: #FFFFFF !important;
}

.site-footer .brand-sub {
  color: var(--orange-primary) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-info p {
  color: #D5C2EA;
  font-size: 0.95rem;
  margin-top: 1.2rem;
  max-width: 360px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: #D5C2EA;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--orange-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #B8A1D3;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  gap: 1.1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
  border-color: var(--orange-primary);
  box-shadow: 0 8px 25px rgba(253, 80, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--orange-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

/* ==========================================================================
   TABLA COMPARATIVA DE MODELOS
   ========================================================================== */
.comparison-container {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

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

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F1F5F9;
}

.comparison-table th {
  background: #F8FAFC;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.comparison-table th.col-highlight,
.comparison-table td.col-highlight {
  background: rgba(80, 0, 127, 0.04);
  border-left: 2px solid var(--purple-primary);
  border-right: 2px solid var(--purple-primary);
}

.comparison-table th.col-highlight {
  color: var(--purple-primary);
  border-top: 2px solid var(--purple-primary);
}

.comparison-table tr:last-child td.col-highlight {
  border-bottom: 2px solid var(--purple-primary);
}

.c-badge-bad {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #EF4444;
  font-size: 0.88rem;
  font-weight: 600;
}

.c-badge-good {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

/* ==========================================================================
   ROADMAP DE 2 CARRILES (TU PARTE VS NUESTRA PARTE)
   ========================================================================== */
.roadmap-wrapper {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.roadmap-lane {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.roadmap-lane.lane-seller {
  border-top: 4px solid var(--orange-primary);
}

.roadmap-lane.lane-dv {
  border-top: 4px solid var(--purple-primary);
  background: #FAF7FD;
}

.lane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.lane-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.lane-tag.seller {
  background: var(--orange-light);
  color: var(--orange-primary);
}

.lane-tag.dv {
  background: var(--purple-light);
  color: var(--purple-primary);
}

.lane-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.lane-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lane-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lane-seller .lane-step-num {
  background: var(--orange-light);
  color: var(--orange-primary);
  border: 1px solid var(--orange-primary);
}

.lane-dv .lane-step-num {
  background: var(--purple-primary);
  color: #FFFFFF;
  border: 1px solid var(--purple-primary);
}

@media (max-width: 850px) {
  .roadmap-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Barra inferior adhesiva en móviles (Cápsula Flotante PRO Estilo Fintech) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 16px;
  right: 16px;
  width: auto;
  background: rgba(80, 0, 127, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(253, 80, 0, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  z-index: 998;
  box-shadow: 0 12px 30px rgba(80, 0, 127, 0.45), 0 4px 12px rgba(253, 80, 0, 0.2);
}

.mobile-sticky-bar .btn {
  width: 100%;
  padding: 0.8rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--orange-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(253, 80, 0, 0.45);
}

.mobile-sticky-bar .btn:hover {
  background: linear-gradient(135deg, #ff631c 0%, #fd5000 100%);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   ANIMACIONES LIMPIAS & SCROLL REVEAL (INTERSECTION OBSERVER SEGURO)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

body.js-ready .reveal-on-scroll:not(.is-revealed) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.js-ready .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ==========================================================================
   BOTÓN FLOTANTE "VOLVER ARRIBA" (BACK TO TOP)
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  color: var(--purple-primary);
  border: 1.5px solid rgba(80, 0, 127, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(80, 0, 127, 0.15);
  cursor: pointer;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--purple-primary);
  color: #FFFFFF;
  border-color: var(--purple-primary);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 25px rgba(80, 0, 127, 0.35);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 6.5rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   SHOWCASE INTERACTIVO DE CATEGORÍAS & SPOTLIGHT
   ========================================================================== */
.category-card.active-cat {
  border-color: var(--orange-primary) !important;
  background: #FFF9F5 !important;
  box-shadow: 0 16px 36px rgba(253, 80, 0, 0.18) !important;
  transform: translateY(-6px);
}

.category-card.active-cat::before {
  background: linear-gradient(90deg, #50007f 0%, #fd5000 100%) !important;
}

.category-spotlight-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(80, 0, 127, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(80, 0, 127, 0.05);
}

.category-spotlight-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.category-spotlight-icon {
  font-size: 2.2rem;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--purple-light);
  border: 1px solid rgba(80, 0, 127, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-spotlight-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.category-spotlight-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .category-spotlight-box {
    flex-direction: column;
    text-align: center;
  }
  .category-spotlight-info {
    flex-direction: column;
  }
}

/* ==========================================================================
   SECCIÓN 10: BLOG Y ARTÍCULOS DESTACADOS
   ========================================================================== */
.blog-section {
  background: radial-gradient(ellipse at 50% 15%, rgba(80, 0, 127, 0.04) 0%, transparent 70%), #FFFFFF;
  position: relative;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(80, 0, 127, 0.12);
  box-shadow: var(--shadow-pro-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 80, 0, 0.45);
  box-shadow: 0 22px 45px -10px rgba(80, 0, 127, 0.16), 0 10px 20px -5px rgba(253, 80, 0, 0.10);
}

.blog-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F1F5F9;
}

.blog-thumb-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-thumb-img {
  transform: scale(1.07);
}

.blog-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(80, 0, 127, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(80, 0, 127, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.blog-badge.badge-orange {
  background: rgba(253, 80, 0, 0.94);
  box-shadow: 0 4px 12px rgba(253, 80, 0, 0.35);
}

.blog-reading-time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.blog-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--orange-primary);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(80, 0, 127, 0.08);
  margin-top: auto;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--purple-primary);
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-read-more .arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.blog-read-more:hover {
  color: var(--orange-primary);
}

.blog-read-more:hover .arrow-icon {
  transform: translateX(5px);
}

/* Banner complementario dentro de la sección de blog */
.blog-cta-banner {
  background: linear-gradient(135deg, #FAF4FD 0%, #FFF6F0 100%);
  border: 1px solid rgba(80, 0, 127, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 12px 35px rgba(80, 0, 127, 0.05);
}

.blog-cta-content {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.blog-cta-icon {
  font-size: 2.4rem;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(80, 0, 127, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(80, 0, 127, 0.06);
}

.blog-cta-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.blog-cta-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsividad de Blog */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .blog-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .blog-cta-content {
    flex-direction: column;
  }

  .blog-cta-banner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PLANTILLA DE ARTÍCULO INDIVIDUAL (SINGLE.PHP)
   ========================================================================== */
.single-post-main {
  background: #FFFFFF;
  padding: 3rem 0 6rem;
}

.container-reading {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
  color: var(--purple-primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
  color: var(--orange-primary);
}

.breadcrumb-sep {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text-muted);
  font-weight: 500;
}

.single-post-badge-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.single-post-badge-row .blog-badge,
.single-post-badge-row .blog-reading-time {
  position: static;
}

.single-post-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(80, 0, 127, 0.12);
  margin-bottom: 2.5rem;
}

.author-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.author-meta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.author-name strong {
  color: var(--text-primary);
}

.post-publish-date {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.single-featured-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pro-md);
  margin-bottom: 3rem;
  border: 1px solid rgba(80, 0, 127, 0.1);
}

.single-featured-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.reading-typography {
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.8;
  color: #2D2238;
}

.reading-typography p {
  margin-bottom: 1.6rem;
}

.reading-typography h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 2.5rem 0 1.2rem;
  letter-spacing: -0.01em;
}

.reading-typography h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.reading-typography ul,
.reading-typography ol {
  margin: 1.2rem 0 1.8rem 1.8rem;
}

.reading-typography li {
  margin-bottom: 0.6rem;
}

.reading-typography blockquote {
  border-left: 4px solid var(--orange-primary);
  padding: 1rem 1.5rem;
  background: var(--orange-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-primary);
}

.post-share-card {
  margin-top: 3.5rem;
  padding: 1.8rem 2rem;
  background: #FAF7FD;
  border-radius: var(--radius-md);
  border: 1px solid rgba(80, 0, 127, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.share-prompt {
  display: flex;
  flex-direction: column;
}

.share-prompt strong {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.05rem;
}

.share-prompt span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.share-buttons {
  display: flex;
  gap: 0.8rem;
}

.btn-share-wa {
  background: #25D366;
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-share-wa:hover {
  opacity: 0.9;
}

.btn-share-tw {
  background: #000000;
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-share-tw:hover {
  opacity: 0.85;
}

.single-cta-box {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--purple-primary) 0%, #370058 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 16px 40px rgba(80, 0, 127, 0.25);
}

.single-cta-box .section-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.single-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 1rem 0 0.8rem;
}

.single-cta-text {
  font-size: 1rem;
  color: #E2D9EC;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.post-navigation-row {
  margin-top: 3rem;
  text-align: center;
}

.back-to-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--purple-primary);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(80, 0, 127, 0.2);
  transition: all 0.2s ease;
}

.back-to-blog-link:hover {
  background: var(--purple-light);
  border-color: var(--purple-primary);
}

@media (max-width: 768px) {
  .single-post-title {
    font-size: 1.9rem;
  }
  .post-share-card {
    flex-direction: column;
    text-align: center;
  }
  .share-buttons {
    width: 100%;
    justify-content: center;
  }
  .single-cta-box {
    padding: 2rem 1.5rem;
  }
  .single-cta-heading {
    font-size: 1.45rem;
  }
}

/* ==========================================================================
   ENHANCEMENT: TARJETAS DE CATEGORÍA CON IMÁGENES REALES
   ========================================================================== */
.category-thumb-wrap {
  width: 100%;
  height: 125px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(30, 10, 45, 0.08);
}

.category-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.category-card:hover .category-thumb-img {
  transform: scale(1.1);
}

.category-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 10, 45, 0.02) 0%, rgba(30, 10, 45, 0.45) 100%);
  pointer-events: none;
}

.category-thumb-wrap .category-icon-wrapper {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  font-size: 1.15rem;
  border-radius: 10px;
  margin-bottom: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background: #FFFFFF;
  border: 1px solid rgba(80, 0, 127, 0.15);
}

.category-spotlight-thumb {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(80, 0, 127, 0.15);
  border: 2px solid #FFFFFF;
}

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

/* ==========================================================================
   FINAL ACTION HUB (ALTA CONVERSIÓN GOOGLE FORM)
   ========================================================================== */
.final-action-box {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 3.2rem 2.8rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  text-align: left;
  position: relative;
  z-index: 3;
  color: #1E0A2D;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.action-box-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(80, 0, 127, 0.1);
  padding-bottom: 1.5rem;
}

.action-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F7EFFB;
  color: #50007f;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
  border: 1px solid rgba(80, 0, 127, 0.2);
}

.action-box-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #1E0A2D;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.action-box-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.action-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.action-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FAF7FD;
  border: 1px solid rgba(80, 0, 127, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: all var(--transition-fast);
}

.action-benefit-item:hover {
  background: #FFF9F5;
  border-color: rgba(253, 80, 0, 0.25);
  transform: translateY(-2px);
}

.action-benefit-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.action-benefit-item strong {
  display: block;
  font-size: 1.02rem;
  color: #1E0A2D;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.action-benefit-item span {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: block;
}

.action-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-google-form-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  background: linear-gradient(135deg, #fd5000 0%, #e04600 100%);
  color: #FFFFFF !important;
  padding: 1.3rem 2.2rem;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(253, 80, 0, 0.45);
  text-decoration: none;
  transition: all var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-google-form-hero:hover {
  background: linear-gradient(135deg, #e04600 0%, #c43c00 100%);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 45px rgba(253, 80, 0, 0.6);
}

.btn-google-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.btn-google-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-google-text strong {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
}

.btn-google-text small {
  font-size: 0.82rem;
  color: #FFE6D9 !important;
  font-weight: 500;
}

.btn-google-arrow {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF !important;
  transition: transform 0.2s ease;
}

.btn-google-form-hero:hover .btn-google-arrow {
  transform: translateX(6px);
}

.btn-whatsapp-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #F0FDF4;
  color: #166534 !important;
  border: 1px solid #BBF7D0;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 100%;
  text-align: center;
}

.btn-whatsapp-secondary:hover {
  background: #DCFCE7;
  border-color: #86EFAC;
  transform: translateY(-2px);
}

.action-trust-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(80, 0, 127, 0.08);
  flex-wrap: wrap;
  gap: 0.8rem;
}

.action-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .final-action-box {
    padding: 2.2rem 1.4rem;
  }

  .action-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .btn-google-form-hero {
    padding: 1.1rem 1.2rem;
    gap: 0.8rem;
  }

  .btn-google-text strong {
    font-size: 1.05rem;
  }

  .action-trust-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


