:root {
  /* Brand colors */
  --brand-primary: #dc2626;       /* Red Crimson */
  --brand-primary-light: #fef2f2; /* Red tint */
  --brand-secondary: #ef4444;     /* Red Coral */
  --brand-secondary-light: #fef2f2;
  
  /* Status Colors */
  --verde: #16a34a;               /* Emerald */
  --verde-light: #f0fdf4;
  --verde-dark: #15803d;
  --naranja: #ea580c;             /* Orange */
  --naranja-light: #fff7ed;
  --naranja-dark: #c2410c;
  --rojo: #dc2626;                /* Red */
  --rojo-light: #fef2f2;
  --rojo-dark: #991b1b;
  --amber: #d97706;               /* Amber/Gold */
  --amber-light: #fef3c7;
  --amber-dark: #92400e;

  /* Neutrals */
  --gris-bg: #f8fafc;             /* Slate 50 */
  --gris-subtle: #f1f5f9;         /* Slate 100 */
  --gris-borde: rgba(15, 23, 42, 0.08); /* Clean modern border */
  --gris-borde-focus: rgba(220, 38, 38, 0.4);
  --blanco: #ffffff;
  --dark-bg: #0c0606;             /* Crimson Deep Dark */
  --dark-surface: #180f0f;
  
  /* Typography Colors */
  --texto: #0f172a;               /* Slate 900 */
  --texto-medio: #334155;         /* Slate 700 */
  --texto-suave: #64748b;         /* Slate 500 */
  --texto-light: #94a3b8;         /* Slate 400 */
  
  /* Layout scale-up (110% equivalent) */
  --max: 1140px;                  /* Expansive layout canvas */
  --radio-sm: 8px;
  --radio: 18px;                  /* Softer premium curves */
  --radio-lg: 26px;
  
  /* Shadows - High fidelity depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow: 0 4px 10px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 20px -3px rgba(15, 23, 42, 0.04), 0 4px 8px -4px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 24px 38px -5px rgba(15, 23, 42, 0.06), 0 10px 16px -6px rgba(15, 23, 42, 0.03);
  --shadow-glass: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--texto);
  background: var(--blanco);
  font-size: 17.5px;             /* Scaled up from 16px for perfect 110% viewing */
  line-height: 1.8;              /* Spacious reading line height */
  letter-spacing: -0.015em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.25;
  color: var(--texto);
  font-weight: 800;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: var(--brand-secondary);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;               /* Lateral space */
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(12, 6, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(12, 6, 6, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17.5px;
  text-decoration: none !important;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #ffffff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.45);
}

.nav-logo-accent {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 9999px;          /* Capsule look */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
}

/* Premium Navbar CTA */
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 8px 20px !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3) !important;
  border: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-links a.nav-cta:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.45) !important;
  opacity: 1 !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s;
}
.nav-hamburger:hover {
  opacity: 0.8;
}

.mobile-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: rgba(12, 6, 6, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 199;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--brand-primary);
  font-weight: 700;
}
.mobile-nav a:hover {
  color: #ffffff;
}

/* ===== BANNER ALERTA / NOVEDAD ===== */
.alerta-novedad {
  background: var(--brand-primary-light);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
  padding: 14px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--rojo-dark);
}
.alerta-novedad strong {
  color: #7f1d1d;
  font-weight: 700;
}
.alerta-novedad a {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}

/* ===== HERO SECTION ===== */
.hero-premium {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  color: #ffffff;
}
.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.15), transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.08), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
.hero-premium h1 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}
.hero-premium h1 span {
  background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-sub {
  font-size: 19px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-sub strong {
  color: var(--amber);
  font-weight: 700;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.hero-trust-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #94a3b8;
  font-weight: 500;
}
.hero-trust-item i {
  color: var(--amber);
}

/* Hero Info Card Widget */
.hero-widget-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.widget-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.widget-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.widget-card-row:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}
.widget-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #cbd5e1;
}
.widget-card-icon {
  width: 32px;
  height: 32px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--brand-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.widget-card-value {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}
.widget-card-value.highlight {
  color: var(--brand-secondary);
  font-size: 18px;
}
.widget-status-badge {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.widget-status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-primary);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}
.widget-btn:hover {
  background: var(--brand-secondary);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
  transform: translateY(-1px);
}

/* ===== GENERAL SECTIONS ===== */
.section-premium {
  padding: 96px 0;
}
.section-alt {
  background: var(--gris-bg);
  border-top: 1px solid var(--gris-borde);
  border-bottom: 1px solid var(--gris-borde);
}
.section-header {
  margin-bottom: 60px;
  max-width: 720px;
}
.label-premium {
  display: inline-block;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.title-premium {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--texto);
  margin-bottom: 16px;
  line-height: 1.2;
}
.desc-premium {
  font-size: 17.5px;
  color: var(--texto-medio);
  line-height: 1.7;
}

/* ===== REVEAL EFFECT ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SILO CARDS GRID ===== */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.silo-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.silo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.2);
}
.silo-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: transform 0.3s;
}
.silo-card:hover .silo-card-icon {
  transform: scale(1.05);
}
.silo-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 12px;
  line-height: 1.3;
}
.silo-card p {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.silo-card-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.silo-card-link i {
  transition: transform 0.2s;
}
.silo-card:hover .silo-card-link i {
  transform: translateX(4px);
}

/* ===== TABLAS PREMIUM ===== */
.table-container {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 32px;
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 16px;
}
.responsive-table thead th {
  background: var(--dark-bg);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 24px;
}
.responsive-table tbody tr {
  border-bottom: 1px solid var(--gris-subtle);
  transition: background 0.15s;
}
.responsive-table tbody tr:last-child {
  border-bottom: none;
}
.responsive-table tbody tr:hover {
  background: var(--brand-primary-light);
}
.responsive-table tbody td {
  padding: 16px 24px;
  color: var(--texto-medio);
}
.responsive-table tbody td strong {
  color: var(--texto);
}
.td-highlight {
  font-weight: 700;
  color: var(--brand-primary) !important;
  font-size: 17.5px;
}
.table-desc-note {
  background: var(--brand-primary-light);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radio-sm);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--rojo-dark);
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.table-desc-note i {
  margin-top: 3px;
  font-size: 16px;
}

/* ===== TABS COMPONENT ===== */
.tab-header {
  display: flex;
  gap: 8px;
  background: var(--gris-subtle);
  padding: 6px;
  border-radius: 14px;
  width: fit-content;
  margin-bottom: 24px;
  border: 1px solid var(--gris-borde);
}
.tab-trigger {
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--texto-suave);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-trigger:hover {
  color: var(--texto);
}
.tab-trigger.active {
  background: var(--blanco);
  color: var(--brand-primary);
  box-shadow: var(--shadow);
}
.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-panel.active {
  display: block;
}

/* ===== CAPI CARDS GRID ===== */
.capi-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.capi-premium-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-primary);
  transition: transform 0.25s, box-shadow 0.25s;
}
.capi-premium-card:nth-child(2) { border-top-color: var(--amber); }
.capi-premium-card:nth-child(3) { border-top-color: var(--verde); }
.capi-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.capi-card-age {
  display: inline-block;
  background: var(--gris-subtle);
  color: var(--texto-medio);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.capi-card-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--texto);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.capi-card-amount span {
  font-size: 18px;
  font-weight: 600;
  color: var(--texto-suave);
}
.capi-card-desc {
  font-size: 14.5px;
  color: var(--texto-suave);
  line-height: 1.5;
}

/* ===== SIMULADOR COMPONENT ===== */
.sim-container {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  border-radius: var(--radio-lg);
  padding: 48px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.sim-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 100% 100%, rgba(220, 38, 38, 0.1), transparent 60%);
  pointer-events: none;
}
.sim-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.sim-header h3 {
  font-size: 26px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sim-header h3 i {
  color: var(--brand-secondary);
}
.sim-header p {
  color: #94a3b8;
  font-size: 15px;
  margin-top: 4px;
}
.sim-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.sim-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sim-group label {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}
.sim-group select, .sim-group input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.sim-group select option {
  background: #180f0f;
  color: #ffffff;
}
.sim-group select:focus, .sim-group input:focus {
  border-color: var(--brand-secondary);
  background: rgba(255, 255, 255, 0.08);
}
.sim-checks-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.sim-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14.5px;
  color: #cbd5e1;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
}
.sim-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.sim-checkbox-label input {
  accent-color: var(--brand-secondary);
  width: 18px;
  height: 18px;
}
.sim-results-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.sim-res-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.sim-res-val span {
  font-size: 18px;
  font-weight: 600;
  color: #cbd5e1;
}
.sim-res-desc {
  font-size: 13.5px;
  color: #94a3b8;
  margin-top: 4px;
}

/* ===== REQUISITOS LIST ===== */
.req-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.req-premium-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.req-premium-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.req-premium-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.req-premium-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 6px;
}
.req-premium-content p {
  font-size: 14.5px;
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 12px;
}
.req-premium-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #475569;
}
.req-premium-tag.mandatory {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
}
.req-premium-tag.warning {
  background: var(--amber-light);
  color: var(--amber-dark);
}

/* ===== DOCUMENTOS LIST ===== */
.docs-premium-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.doc-premium-item {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}
.doc-premium-item:hover {
  border-color: var(--brand-primary);
  transform: translateX(4px);
}
.doc-premium-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-premium-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 2px;
}
.doc-premium-text p {
  font-size: 13.5px;
  color: var(--texto-suave);
  line-height: 1.5;
}

/* ===== STEP TIMELINE ===== */
.steps-premium-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}
.steps-premium-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--amber));
}
.step-premium-item {
  position: relative;
  margin-bottom: 40px;
}
.step-premium-item:last-child {
  margin-bottom: 0;
}
.step-premium-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--blanco);
  box-shadow: 0 0 0 2px var(--brand-primary);
}
.step-premium-content {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 24px 32px;
  box-shadow: var(--shadow);
}
.step-premium-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 8px;
}
.step-premium-content p {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.6;
}
.step-premium-tip {
  margin-top: 16px;
  background: var(--amber-light);
  border-radius: var(--radio-sm);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--amber-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.step-premium-tip i {
  margin-top: 3px;
}

/* ===== COMPATIBILIDAD GRID ===== */
.compat-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.compat-premium-box {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.compat-premium-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compat-premium-box.yes h3 { color: var(--verde-dark); }
.compat-premium-box.no h3 { color: var(--rojo-dark); }
.compat-premium-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gris-subtle);
  font-size: 15px;
  color: var(--texto-medio);
}
.compat-premium-item:last-child {
  border-bottom: none;
}
.compat-premium-item i {
  font-size: 16px;
  margin-top: 3px;
}
.compat-premium-item i.yes { color: var(--verde); }
.compat-premium-item i.no { color: var(--rojo); }

/* Incentivo Empleo Cards */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.inc-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-primary);
  transition: all 0.2s;
}
.inc-card:nth-child(2) { border-top-color: var(--amber); }
.inc-card:nth-child(3) { border-top-color: var(--brand-secondary); }
.inc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.inc-card-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.inc-card-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--brand-primary);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.inc-card:nth-child(2) .inc-card-pct { color: var(--amber); }
.inc-card:nth-child(3) .inc-card-pct { color: var(--brand-secondary); }
.inc-card-desc {
  font-size: 14.5px;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* ===== ACCORDION (FAQ) ===== */
.faq-accordion-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-accordion-item {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-accordion-item:hover {
  border-color: rgba(220, 38, 38, 0.15);
}
.faq-accordion-item.open {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: var(--shadow);
}
.faq-accordion-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: justify;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--texto);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-accordion-question:hover {
  background: var(--gris-bg);
}
.faq-accordion-question .faq-icon {
  margin-left: auto;
  color: var(--brand-primary);
  font-size: 14px;
  transition: transform 0.3s;
}
.faq-accordion-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-accordion-answer-inner {
  padding: 0 24px 20px;
  font-size: 15.5px;
  color: var(--texto-medio);
  line-height: 1.7;
}

/* ===== ABOUT AUTHOR SECTION ===== */
.author-card-premium {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}
.author-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}
.author-image-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.author-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 4px;
}
.author-title-tag {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.author-bio {
  font-size: 16px;
  color: var(--texto-medio);
  line-height: 1.7;
  margin-bottom: 20px;
}
.author-link-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: #0077b5;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand h3 i {
  color: var(--brand-secondary);
}
.footer-brand h3 span {
  color: var(--amber);
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 300px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #94a3b8;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #64748b;
}
.footer-legal-links {
  display: flex;
  gap: 16px;
}
.footer-legal-links a {
  color: #64748b;
}
.footer-legal-links a:hover {
  color: #ffffff;
}
.footer-disclaimer-box {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* ===== COOKIE BANNER ===== */
.cookie-premium-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-premium-banner.visible {
  transform: translateY(0);
}
.cookie-premium-banner p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cookie-premium-banner p a {
  color: var(--brand-secondary);
  text-decoration: underline;
}
.cookie-premium-btns {
  display: flex;
  gap: 12px;
}
.cookie-ok-btn {
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-ok-btn:hover {
  background: var(--brand-secondary);
}
.cookie-no-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-no-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* ===== LEGAL CONTENT SECTIONS ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--texto-medio);
}
.legal-content h2 {
  font-size: 24px;
  color: var(--texto);
  margin-top: 36px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gris-subtle);
  padding-bottom: 8px;
}
.legal-content h3 {
  font-size: 18px;
  color: var(--texto);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content ul li {
  margin-bottom: 8px;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-widget-card { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .author-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .author-image-wrapper { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-premium h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .section-premium { padding: 64px 0; }
  .title-premium { font-size: 30px; }
  .compat-premium-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; }
  .sim-form-grid { grid-template-columns: 1fr; }
  .sim-container { padding: 24px; }
  .sim-results-box { padding: 20px; }
  .sim-res-val { font-size: 36px; }
  .author-card-premium { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cookie-premium-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .cookie-premium-btns { width: 100%; }
  .cookie-premium-btns button { flex: 1; text-align: center; }
}
