/* Definición de la fuente Inter y estilos personalizados */
body {
    font-family: 'Inter', sans-serif;
    background-color: #020617; /* Fondo oscuro, casi negro (slate-950) */
}

.hero-bg {
    /* Estilo para el fondo del hero section - Degradado azul frío */
    background-image: linear-gradient(135deg, #1e293b 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4); /* Sombra de color Sky Blue */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.6);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #0f172a; /* Slate-900 para las tarjetas */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

/* Estilos de animación para el titular */
@keyframes pulse-glow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 20px rgba(14, 165, 233, 0.5); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
}

.animated-title {
    animation: pulse-glow 3s infinite ease-in-out;
}

/* Eliminamos los enlaces del menú para evitar distracciones */
.nav-link {
    display: none;
}