/* Archivo: css/style.css */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111827; /* Gris oscuro para el fondo */
    color: #F3F4F6; /* Texto casi blanco */
}

.gradient-text {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-weight: 900;
    font-size: 2.5rem; /* 40px */
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem; /* 60px */
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.8);
}

/* CAMBIO: Se eliminaron los estilos para la animación del slider de logos */

/* --- ESTILOS PARA EL SUBMENU MOVIL (ACORDEON) --- */
#mobile-submenu {
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

#mobile-submenu.open {
    max-height: 500px; /* Un valor suficientemente grande para contener los enlaces */
}
