/* =========================================
   1. RESET Y BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Fondo base con un sutil matiz para que resalten las luces */
  background-color: #a0b6ff !important;
  color: #334155;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  
}

/* =========================================
   2. EL FONDO "VIBRANT" (BLANCO CON LUCES)
   ========================================= */
.vibrant-bg-main {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Las manchas de luz (Blobs) */
.light-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px); /* Crea el efecto de resplandor suave */
  opacity: 0.15; /* Sutil para no ensuciar el blanco */
}

/* Naranja arriba a la izquierda */
.orange-light {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background-color: #f97316;
}

/* Celeste abajo a la derecha */
.celeste-light {
  bottom: -5%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background-color: #0ea5e9;
}

/* Rejilla técnica (Grid) */
.grid-texture {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* =========================================
   3. TARJETAS Y COMPONENTES (GLASSMORPHISM)
   ========================================= */
.glass-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
}

/* Tarjeta Naranja Resaltada (Como en la imagen: Predictive AI) */
.card-orange-vibrant {
  background: #f97316 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3) !important;
}

.card-orange-vibrant h3, 
.card-orange-vibrant p {
  color: #ffffff !important;
}

/* =========================================
   4. NAVEGACIÓN (DROPDOWN)
   ========================================= */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1rem;
  width: 260px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}

.dropdown a:hover {
  background: #f8fafc;
  color: #f97316;
}

/* =========================================
   5. AJUSTES FINALES
   ========================================= */
.relative.z-10 {
  position: relative;
  z-index: 10;
}

h1 {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  line-height: 1.1;
}

.btn-primary-vibrant {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Espacio entre el texto y el icono */
  background: linear-gradient(45deg, #63f1d9, #558ef7); /* Degradado moderno */
  color: rgb(0, 56, 160);
  padding: 12px 28px;
  border-radius: 50px; /* Bordes redondeados tipo píldora */
  text-decoration: none;
  font-weight: 600;
  font-family: sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 241, 222, 0.4);
}

.btn-primary-vibrant:hover {
  transform: translateY(-2px); /* Pequeño salto hacia arriba */
  box-shadow: 0 6px 20px rgba(99, 241, 222, 0.6);
  filter: brightness(1.1);
}

.btn-primary-vibrant .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Efecto de la flecha al pasar el mouse */
.btn-primary-vibrant:hover .material-symbols-outlined {
  transform: translateX(4px);
}