:root {
  /* Paleta de colores corporativa */
  --bg-primary: #0f2419;
  --bg-secondary: #1a3a2e;
  --accent: #16a34a;
  --accent-dark: #15803d;
  --accent-darker: #166534;
  --surface: #ffffff;
  --surface-dark: #f1f5f3;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --gold: #fbbf24;
  --gold-dark: #f59e0b;
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.6s ease-out;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid var(--gold-dark);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.logo:hover .logo-text-main {
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  animation: fadeInRotate 0.8s ease-out both;
}

@keyframes fadeInRotate {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-icon::after {
  opacity: 0.8;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 0;
}

/* Estilo actualizado del logo con Urbanist */
.logo-text-main {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: fadeInScale 0.8s ease-out 0.2s both;
  line-height: 1;
  display: block;
  transition: all 0.3s ease;
  text-align: center;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-link:hover::after {
  width: 80%;
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px); /* Start slightly lower */
  background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface) 100%);
  border-radius: 16px; /* Softer corners */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); /* Deeper shadow */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
  width: max-content; /* Adjust width to content */
  list-style: none;
  padding: 0.75rem; /* Adjusted padding */
  margin-top: 1rem;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-origin: top center;
  animation: dropdown-fade-in 0.4s forwards;
}

@keyframes dropdown-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Caret (triangle) for the dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--surface-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
  border-radius: 2px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  font-weight: 600; /* Bolder text */
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  animation: menu-item-fade-in 0.5s forwards;
  opacity: 0;
}

/* Staggered animation for menu items */
.dropdown-menu li:nth-child(1) .dropdown-link { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) .dropdown-link { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(3) .dropdown-link { animation-delay: 0.2s; }

@keyframes menu-item-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-link i {
  color: var(--accent-dark);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 12px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.dropdown-link:hover {
  color: white;
}

.dropdown-link:hover::before {
  transform: scaleX(1);
}

.dropdown-link:hover i {
  transform: scale(1.1) rotate(-5deg);
  color: white;
}

.header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-secondary {
  color: var(--accent-dark);
  border: 2px solid var(--accent);
  background: transparent;
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-darker) 100%);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--accent-dark);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--accent);
  color: white;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  display: none; /* Hidden by default on desktop */
}

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

.mobile-menu-content {
  padding: 1.5rem;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mobile-nav-links li {
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  text-decoration: none;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent-dark);
  padding-left: 1rem;
}

.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--surface-dark);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 200px;
  padding: 0.5rem 0;
}

.mobile-dropdown-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
  background: white;
  color: var(--accent-dark);
  padding-left: 2rem;
}

.mobile-header-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   BUTTONS SYSTEM (BASE)
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   MODERN FINTECH HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: 
    radial-gradient(ellipse 90% 70% at 50% -25%, rgba(22, 163, 74, 0.28) 0%, transparent 70%),
    linear-gradient(160deg, #0a1f15 0%, #06150e 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 8rem 0 4.5rem;
}

/* Sutil rejilla tecnológica de fondo */
.hero-tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Orbes de luz ambiental */
.hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, transparent 70%);
  top: 8%;
  right: 6%;
  animation: glowFloat1 10s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.16) 0%, transparent 70%);
  bottom: 8%;
  left: 6%;
  animation: glowFloat2 9s ease-in-out infinite alternate;
}

@keyframes glowFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 35px) scale(1.12); }
}

@keyframes glowFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, -30px) scale(1.1); }
}

.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Badge con Live Pulse */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(251, 191, 36, 0.1);
  color: #fef08a;
  border: 1px solid rgba(251, 191, 36, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.12);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.6);
  transform: translateY(-1px);
}

.badge-pulse-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 10px #22c55e;
}

.badge-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulseRipple 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulseRipple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Titulo principal */
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', 'Urbanist', sans-serif;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 14px rgba(251, 191, 36, 0.35));
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 560px;
}

/* Acciones y Botones del Hero */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-main-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Boton Primario con Shine Sweep */
.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  box-shadow: 
    0 8px 24px -4px rgba(34, 197, 94, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-hero-primary .btn-shine {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
  animation: shineAuto 5s ease-in-out infinite;
}

@keyframes shineAuto {
  0%, 75% { transform: translateX(-100%) rotate(30deg); }
  85%, 100% { transform: translateX(500%) rotate(30deg); }
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 30px -4px rgba(34, 197, 94, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

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

/* Boton Secundario Frosted Glass */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* Accesos rápidos pills */
.hero-quick-pills {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: rgba(15, 36, 25, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.quick-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.quick-pill-gold {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fef08a;
}

.quick-pill-gold:hover {
  background: rgba(251, 191, 36, 0.22);
  border-color: rgba(251, 191, 36, 0.6);
  color: #ffffff;
}

/* Hero Visual & Glassmorphism Card */
.hero-visual {
  position: relative;
  perspective: 1000px;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-floating-pill {
  position: absolute;
  top: -16px;
  right: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(8, 20, 15, 0.95), rgba(17, 41, 31, 0.95));
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #fef08a;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: pillFloat 4s ease-in-out infinite;
}

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

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.35),
    0 25px 60px -15px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
  transform-style: preserve-3d;
}

.hero-card-spotlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(251, 191, 36, 0.14), transparent 60%);
  z-index: 1;
}

.hero-card:hover .hero-card-spotlight {
  opacity: 1;
}

.hero-logo-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 1.25rem;
  z-index: 2;
}

.hero-logo {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 3px rgba(251, 191, 36, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.hero-card:hover .hero-logo {
  transform: scale(1.06) rotate(-3deg);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.logo-verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: #16a34a;
  color: #ffffff;
  border: 2.5px solid #0f2419;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.hero-card-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 1.1rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(251, 191, 36, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fbbf24;
  display: block;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ==========================================================================
   TICKER / MARQUEE DE CONFIANZA
   ========================================================================== */
.hero-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  background: linear-gradient(90deg, #071710 0%, #0d271a 50%, #071710 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ticker-item i {
  color: #fbbf24;
  font-size: 1.05rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Anniversary special effect */
.anniversary-glow {
  animation: anniversaryPulse 2s ease-in-out infinite;
}

@keyframes anniversaryPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
  }
}

/* Secciones principales */
.section {
  padding: 5rem 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

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

/* Grid de beneficios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(10px);
}

.benefit-card:hover .benefit-icon::after {
  opacity: 0.6;
}

.benefit-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefit-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.benefit-highlight {
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent-dark);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-highlight {
  background: var(--accent);
  color: white;
}

/* Sección de tasas */
.rates-section {
  background: var(--surface-dark);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rate-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.rate-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.25);
}

.rate-card.featured::before {
  content: 'MEJOR OFERTA';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}

.rate-percentage {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.rate-period {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.rate-features {
  list-style: none;
  text-align: left;
}

.rate-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.rate-features li i {
  color: var(--accent);
}

/* Sección de proceso */
.process-section {
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -1.5rem;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent) 100%);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}

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

.step-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: url('imagen/alvis.png') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', sans-serif;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

/* Mesa de Partes */
.mesa-home-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(251, 191, 36, 0.12) 0%, transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
}

.mesa-home-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  background: white;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.mesa-home-copy .section-badge,
.mesa-home-copy .section-title {
  margin-left: 0;
  text-align: left;
}

.mesa-home-copy .section-title {
  margin-bottom: 0.75rem;
}

.mesa-home-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
}

.mesa-home-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 220px;
}

.mesa-home-actions .btn-primary,
.mesa-home-actions .btn-secondary {
  justify-content: center;
}

.mesa-page {
  background: var(--surface-dark);
}

.mesa-hero {
  min-height: 78vh;
  padding: 9rem 0 4rem;
  background:
    radial-gradient(circle at 80% 22%, rgba(251, 191, 36, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 14% 72%, rgba(22, 163, 74, 0.22) 0%, transparent 34%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: white;
  display: flex;
  align-items: center;
}

.mesa-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.mesa-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.mesa-hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.mesa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mesa-hero-actions .btn-secondary {
  color: white;
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
}

.mesa-hero-actions .btn-secondary:hover {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
}

.mesa-login-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.mesa-login-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  font-size: 2.2rem;
}

.mesa-login-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.mesa-login-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
}

.mesa-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mesa-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
}

.mesa-check-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.mesa-guide-section {
  background: white;
}

.mesa-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.mesa-step-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.mesa-step-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

.mesa-step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.mesa-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  font-size: 1.6rem;
}

.mesa-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.mesa-step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.mesa-cta-section {
  background: var(--surface-dark);
}

.mesa-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(251, 191, 36, 0.2), transparent 28%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
}

.mesa-cta-eyebrow {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.mesa-cta-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  margin-bottom: 0.5rem;
}

.mesa-cta-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.mesa-cta-card .btn-primary {
  flex-shrink: 0;
}

.mesa-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 250px;
}

.mesa-cta-actions .btn-primary,
.mesa-cta-actions .btn-secondary {
  justify-content: center;
  white-space: nowrap;
}

.mesa-cta-actions .btn-secondary {
  color: white;
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.12);
}

.mesa-cta-actions .btn-secondary:hover {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
}

.mesa-step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.mesa-step-link:hover {
  color: var(--accent);
  gap: 0.65rem;
}

/* Casilla electrónica SINOE */
.sinoe-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(251, 191, 36, 0.14) 0%, transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.sinoe-alert {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 158, 11, 0.38);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.16) 0%, rgba(251, 191, 36, 0.06) 100%);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.12);
}

.sinoe-alert > i {
  font-size: 1.85rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.sinoe-alert > div {
  flex: 1 1 320px;
  color: var(--text-primary);
  line-height: 1.6;
}

.sinoe-alert strong {
  color: var(--bg-primary);
}

.sinoe-alert-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sinoe-alert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.38);
}

.sinoe-block-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  color: var(--bg-primary);
  margin-bottom: 1.25rem;
}

.sinoe-block-title i {
  color: var(--accent);
}

.sinoe-requirements,
.sinoe-common,
.sinoe-options {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.sinoe-req-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.sinoe-req-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--surface-dark);
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.sinoe-req-list i {
  font-size: 1.4rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.sinoe-req-list strong {
  display: block;
  color: var(--bg-primary);
  margin-bottom: 0.2rem;
}

.sinoe-req-list span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sinoe-common-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: sinoe;
}

.sinoe-common-steps li {
  position: relative;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(22, 163, 74, 0.32);
  background: rgba(22, 163, 74, 0.04);
}

.sinoe-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.sinoe-common-steps p {
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.95rem;
}

.sinoe-common-steps strong {
  color: var(--text-primary);
}

.sinoe-common-steps a {
  color: var(--accent-dark);
  font-weight: 700;
  word-break: break-word;
}

.sinoe-common-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.sinoe-common-note i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.sinoe-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.45rem;
  border-radius: 18px;
  background: var(--surface-dark);
  margin-bottom: 1.75rem;
}

.sinoe-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.28s ease;
}

.sinoe-tab i {
  font-size: 1.35rem;
}

.sinoe-tab small {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-light);
}

.sinoe-tab:hover {
  color: var(--accent-dark);
  background: rgba(22, 163, 74, 0.08);
}

.sinoe-tab.is-active {
  background: white;
  color: var(--bg-primary);
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

.sinoe-tab.is-active i,
.sinoe-tab.is-active small {
  color: var(--accent-dark);
}

.sinoe-panel[hidden] {
  display: none;
}

.sinoe-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: start;
  animation: sinoePanelIn 0.35s ease-out;
}

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

.sinoe-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.sinoe-panel-copy h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  color: var(--bg-primary);
  margin-bottom: 0.6rem;
}

.sinoe-panel-copy > p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.sinoe-detail-steps {
  list-style: none;
  counter-reset: sinoe-detail;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.sinoe-detail-steps li {
  position: relative;
  counter-increment: sinoe-detail;
  padding-left: 3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.97rem;
}

.sinoe-detail-steps li::before {
  content: counter(sinoe-detail);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  color: var(--accent-dark);
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.sinoe-detail-steps strong {
  display: block;
  color: var(--bg-primary);
  margin-bottom: 0.2rem;
}

.sinoe-detail-steps a {
  color: var(--accent-dark);
  font-weight: 700;
  word-break: break-word;
}

.sinoe-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.5rem;
}

.sinoe-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.sinoe-benefits i {
  color: var(--accent);
}

.sinoe-figure {
  margin: 0;
}

.sinoe-figure-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-dark);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sinoe-figure-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.sinoe-figure-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.sinoe-figure-zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 36, 25, 0.88);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
}

.sinoe-figure figcaption {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-align: center;
}

.sinoe-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--bg-primary);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.sinoe-footnote i {
  color: var(--gold);
}

.sinoe-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.sinoe-lightbox.is-open {
  display: flex;
}

.sinoe-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 25, 0.9);
  backdrop-filter: blur(6px);
}

.sinoe-lightbox-dialog {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  border-radius: 16px;
  background: white;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.sinoe-lightbox-dialog img {
  display: block;
  width: 100%;
  height: auto;
}

.sinoe-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(15, 36, 25, 0.85);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.sinoe-lightbox-close:hover {
  background: var(--error);
}

/* ==========================================================================
   Interfaz Completa: Casilla Electrónica SINOE
   ========================================================================== */

.sinoe-page {
  background: var(--surface-dark);
  min-height: 100vh;
}

/* Breadcrumb Bar */
.sinoe-breadcrumb-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  margin-top: 80px;
}

.sinoe-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sinoe-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.sinoe-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--text-light);
  font-weight: bold;
}

.sinoe-breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.sinoe-breadcrumbs a:hover {
  color: var(--accent);
}

.sinoe-breadcrumbs li[aria-current="page"] {
  color: var(--accent-dark);
  font-weight: 700;
}

/* SINOE Hero */
.sinoe-hero {
  min-height: 68vh;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(251, 191, 36, 0.22) 0%, transparent 34%),
    radial-gradient(circle at 12% 75%, rgba(22, 163, 74, 0.24) 0%, transparent 38%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: white;
  display: flex;
  align-items: center;
}

.sinoe-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.sinoe-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.sinoe-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 650px;
}

.sinoe-hero-subtitle strong {
  color: var(--gold);
}

.sinoe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* Hero Side Card */
.sinoe-hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.sinoe-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sinoe-card-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sinoe-card-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  color: white;
}

.sinoe-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.sinoe-card-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.sinoe-card-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.sinoe-stat-box {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.9rem;
  text-align: center;
}

.sinoe-stat-val {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.sinoe-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* SINOE Alert Section */
.sinoe-main-alert-section {
  padding: 2rem 0 0;
  background: var(--surface-dark);
}

/* SINOE Benefits Section */
.sinoe-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.sinoe-benefit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.85rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sinoe-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.sinoe-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: var(--accent);
  font-size: 1.6rem;
}

.sinoe-benefit-card h3 {
  font-size: 1.18rem;
  color: var(--bg-primary);
  margin-bottom: 0.65rem;
}

.sinoe-benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.94rem;
}

/* Section Light */
.sinoe-section-light {
  background: white;
}

/* Panel Actions */
.sinoe-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* SINOE FAQ Accordion */
.sinoe-faq-section {
  background: white;
}

.sinoe-faq-accordion {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sinoe-faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-dark);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sinoe-faq-item[open] {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08);
  background: white;
}

.sinoe-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--bg-primary);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.sinoe-faq-summary::-webkit-details-marker {
  display: none;
}

.sinoe-faq-summary i {
  font-size: 1rem;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.sinoe-faq-item[open] .sinoe-faq-summary i {
  transform: rotate(180deg);
}

.sinoe-faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.96rem;
}

.sinoe-faq-body p {
  margin: 0;
}

.sinoe-faq-body strong {
  color: var(--text-primary);
}

/* Support Section */
.sinoe-support-section {
  background: var(--surface-dark);
}

.sinoe-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sinoe-support-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.sinoe-support-card.highlight {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.04) 0%, rgba(251, 191, 36, 0.04) 100%);
  border-color: rgba(22, 163, 74, 0.25);
}

.sinoe-support-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  background: var(--surface-dark);
  color: var(--accent-dark);
  font-size: 1.5rem;
}

.sinoe-support-card.highlight .sinoe-support-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
}

.sinoe-support-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
  color: var(--bg-primary);
}

.sinoe-support-card p {
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.35rem;
  font-size: 0.94rem;
}

/* SINOE Preview Card (para Mesa de Partes) */
.sinoe-preview-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}

.sinoe-preview-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--bg-primary);
  margin-bottom: 0.85rem;
}

.sinoe-preview-text {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.sinoe-preview-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.sinoe-preview-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
}

.sinoe-preview-features i {
  color: var(--accent);
}

.sinoe-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sinoe-preview-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: white;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sinoe-preview-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.28);
  color: white;
}

.sinoe-preview-badge-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sinoe-preview-badge-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: white;
}

.sinoe-preview-badge-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.sinoe-preview-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* Responsive SINOE */
@media (max-width: 992px) {
  .sinoe-hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .sinoe-benefits-grid {
    grid-template-columns: 1fr;
  }

  .sinoe-preview-card {
    grid-template-columns: 1fr;
  }

  .sinoe-support-grid {
    grid-template-columns: 1fr;
  }

  .sinoe-panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sinoe-hero {
    padding: 3rem 0;
  }

  .sinoe-card-stats-grid {
    grid-template-columns: 1fr;
  }

  .sinoe-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sinoe-hero-actions a {
    justify-content: center;
  }

  .sinoe-tabs {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  padding: 0;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-claim-item {
  margin-top: 0.5rem;
}

.footer-links .footer-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: none;
  padding: 0.2rem 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links .footer-claim-btn .footer-claim-icon {
  display: block;
  width: 56px;
  height: auto;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.footer-links .footer-claim-btn .footer-claim-label {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.15;
  color: inherit;
}

.footer-links .footer-claim-btn:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--gold);
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-developer {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-developer a,
.footer-developer a:link,
.footer-developer a:visited,
.developer-credit-link,
.developer-credit-link:link,
.developer-credit-link:visited {
  color: #fbbf24 !important;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-developer a:hover,
.footer-developer a:focus,
.developer-credit-link:hover,
.developer-credit-link:focus {
  color: #ffffff !important;
  text-decoration: underline;
}

.visit-stats {
  max-width: 520px;
  margin: 1.1rem auto 0;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 8% 50%, rgba(251, 191, 36, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(8, 20, 15, 0.96) 0%, rgba(17, 41, 31, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 22px rgba(0, 0, 0, 0.28);
}

.visit-stats-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.visit-stats-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--gold);
  margin-bottom: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.visit-stats-trigger:hover {
  opacity: 0.82;
}

.visit-stats-trigger i {
  font-size: 0.88rem;
}

.visit-cards {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.visit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.visit-card i {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
}

.visit-card-live {
  border-color: rgba(34, 197, 94, 0.38);
}

.visit-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  animation: visitLivePulse 2s ease-out infinite;
}

@keyframes visitLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.visit-card-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.visit-card strong {
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

body.visit-detail-modal-open {
  overflow: hidden;
}

.visit-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.visit-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.visit-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 16, 0.74);
  backdrop-filter: blur(6px);
}

.visit-detail-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(9, 24, 18, 0.98) 0%, rgba(14, 37, 29, 0.98) 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 1.35rem;
}

.visit-detail-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.visit-detail-header {
  margin-bottom: 0.95rem;
}

.visit-detail-header h3 {
  color: var(--gold);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  margin-bottom: 0.3rem;
}

.visit-detail-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.visit-detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 0.9rem;
}

.visit-detail-metrics article {
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.visit-detail-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.visit-detail-metrics strong {
  font-size: 1.28rem;
  color: #fff;
}

.visit-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.visit-detail-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.82rem 0.92rem;
}

.visit-detail-panel h4 {
  color: var(--gold);
  font-size: 0.98rem;
  margin-bottom: 0.56rem;
}

.visit-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.visit-detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.9rem;
}

.visit-detail-list li strong {
  color: #fff;
}

.visit-detail-panel-wide {
  grid-column: 1 / -1;
}

.visit-detail-session-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.58rem 0.68rem;
  background: rgba(255, 255, 255, 0.04);
}

.visit-detail-session-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.visit-detail-session-main strong {
  color: var(--gold);
  font-size: 0.84rem;
}

.visit-detail-session-main span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.4;
}

.visit-detail-session-item time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    max-width: 100%;
  }

  .nav {
    gap: 1rem;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .nav-link,
  .header-buttons .btn-secondary,
  .header-buttons .btn-primary {
    font-size: 0.88rem;
  }

  .header-buttons {
    gap: 0.6rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .mesa-home-panel,
  .mesa-hero-content {
    grid-template-columns: 1fr;
  }

  .mesa-hero-content {
    text-align: center;
  }

  .mesa-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .mesa-hero-actions {
    justify-content: center;
  }

  .mesa-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .mesa-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .rates-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .rate-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0.5rem 1rem;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
  }
  
  .logo-text-main {
    font-size: 1rem;
  }
  
  .nav-links,
  .header-buttons {
    display: none;
  }
  
  .logo {
    gap: 0.75rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }
  
  /* Desktop dropdown hidden on mobile */
  .dropdown-menu {
    display: none;
  }
  
  .hero {
    min-height: 90vh;
    padding: 6rem 0 3rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links .footer-claim-btn {
    justify-content: center;
    margin: 0 auto;
  }

  .footer-links .footer-claim-btn .footer-claim-label {
    text-align: left;
  }

  .visit-stats {
    margin: 1.4rem 1rem 0;
    max-width: none;
    padding: 0.5rem 0.55rem;
    text-align: left;
  }

  .visit-stats-shell {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .visit-cards {
    flex-wrap: wrap;
    width: 100%;
  }

  .visit-detail-modal {
    padding: 0.8rem;
  }

  .visit-detail-dialog {
    max-height: calc(100vh - 1.6rem);
    padding: 0.95rem;
  }

  .visit-detail-metrics,
  .visit-detail-grid {
    grid-template-columns: 1fr;
  }

  .visit-detail-panel-wide {
    grid-column: auto;
  }

  .mesa-home-panel,
  .mesa-home-actions {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .mesa-home-copy .section-badge,
  .mesa-home-copy .section-title {
    text-align: center;
  }

  .mesa-home-copy .section-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .mesa-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .mesa-cta-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .mesa-cta-actions {
    min-width: 0;
  }

  .sinoe-alert {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .sinoe-alert-btn {
    width: 100%;
    justify-content: center;
  }

  .sinoe-common-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sinoe-panel-grid {
    grid-template-columns: 1fr;
  }

  .sinoe-figure {
    order: -1;
  }
}

@media (max-width: 480px) {
  .logo {
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 45px;
    height: 45px;
  }
  
  .logo-text-main {
    font-size: 0.875rem;
    letter-spacing: -0.01em;
  }
  
  .hero-buttons { align-items: stretch; }
  .hero-buttons .btn-row { flex-direction: column; }
  
  .benefits-grid,
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .visit-stats-trigger {
    font-size: 0.78rem;
  }

  .visit-cards {
    justify-content: space-between;
  }

  .visit-card {
    padding: 0.32rem 0.5rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mesa-hero-actions,
  .mesa-home-actions,
  .mesa-cta-card .btn-primary {
    width: 100%;
  }

  .mesa-hero-actions .btn-primary,
  .mesa-hero-actions .btn-secondary,
  .mesa-home-actions .btn-primary,
  .mesa-home-actions .btn-secondary,
  .mesa-cta-card .btn-primary {
    justify-content: center;
  }

  .mesa-steps-grid {
    grid-template-columns: 1fr;
  }

  .mesa-login-card,
  .mesa-home-panel,
  .mesa-cta-card {
    padding: 1.35rem;
  }

  .sinoe-requirements,
  .sinoe-common,
  .sinoe-options {
    padding: 1.25rem;
  }

  .sinoe-common-steps,
  .sinoe-tabs {
    grid-template-columns: 1fr;
  }

  .sinoe-panel-copy .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .sinoe-lightbox {
    padding: 0.75rem;
  }
}

/* Animaciones de scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Estados de hover mejorados */
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Logo watermark en secciones */
.logo-watermark {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  opacity: 0.05;
  z-index: 1;
  animation: watermarkFloat 20s ease-in-out infinite;
}

@keyframes watermarkFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-50%) rotate(10deg); }
}

.logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Requisitos Section */
.requisitos-section {
  background: var(--surface-dark);
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.req-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.req-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.1);
  border-color: rgba(22,163,74,0.3);
}

.req-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.req-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(22,163,74,0.35);
}

.req-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.req-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0 0;
}

.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0.25rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed rgba(226,232,240,0.6);
}

.req-list li:last-child { border-bottom: none; }

.req-list i {
  color: var(--success);
}

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

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

/* =====================================================
   SECCIÓN DE CONVOCATORIA (INICIO)
   ===================================================== */
.convocatoria-home-section {
  background: var(--surface-dark);
}

.convocatoria-home-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid rgba(22, 163, 74, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.convocatoria-home-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.convocatoria-home-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.convocatoria-home-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.convocatoria-home-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.convocatoria-home-vacantes {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  padding: 0.35rem 0.85rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.convocatoria-home-vacantes .vacantes-number {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.convocatoria-home-vacantes .vacantes-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.convocatoria-home-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* Highlights */
.convocatoria-home-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.convocatoria-home-highlight {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.convocatoria-home-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.4);
}

.convocatoria-home-highlight i {
  font-size: 1.5rem;
  color: var(--accent);
}

.convocatoria-home-highlight .highlight-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.convocatoria-home-highlight .highlight-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Requisitos */
.convocatoria-home-requisitos {
  background: var(--surface-dark);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.convocatoria-home-requisitos h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.convocatoria-home-requisitos h4 i {
  color: var(--accent);
}

.convocatoria-home-requisitos ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.convocatoria-home-requisitos li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.convocatoria-home-requisitos li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Fecha límite */
.convocatoria-home-deadline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.convocatoria-home-deadline i {
  font-size: 1.5rem;
  color: var(--gold-dark);
}

.convocatoria-home-deadline .deadline-label {
  display: block;
  font-size: 0.8rem;
  color: #92400e;
}

.convocatoria-home-deadline .deadline-dates {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #78350f;
}

/* Botones */
.convocatoria-home-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-ver-detalle-home,
.btn-postular-home {
  flex: 1;
  min-width: 200px;
  padding: 0.95rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ver-detalle-home {
  background: var(--surface-dark);
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-ver-detalle-home:hover {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.btn-postular-home {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-postular-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Footer de la tarjeta */
.convocatoria-home-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.convocatoria-home-footer i {
  color: var(--accent);
}

.convocatoria-home-footer strong {
  color: var(--accent);
}

@media (max-width: 640px) {
  .convocatoria-home-card {
    padding: 1.75rem 1.25rem;
  }

  .convocatoria-home-top {
    flex-direction: column;
    text-align: center;
  }

  .convocatoria-home-heading {
    align-items: center;
  }

  .convocatoria-home-title {
    font-size: 1.5rem;
  }

  .convocatoria-home-highlights {
    grid-template-columns: 1fr;
  }

  .convocatoria-home-highlight {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .btn-ver-detalle-home,
  .btn-postular-home {
    min-width: 100%;
  }
}

/* Responsive Modern Hero */
@media (max-width: 992px) {
  .hero {
    padding: 7rem 0 3.5rem;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    align-items: center;
  }
  .hero-main-btns,
  .hero-quick-pills {
    justify-content: center;
  }
  .hero-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 6.5rem 0 3rem;
  }
  .hero-main-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }
  .hero-quick-pills {
    justify-content: center;
  }
  .hero-card {
    padding: 2rem 1.25rem 1.5rem;
  }
  .hero-stats {
    gap: 0.6rem;
  }
  .stat-item {
    padding: 0.9rem 0.4rem;
  }
  .stat-number {
    font-size: 1.45rem;
  }
}
