/* --- Estilos movidos desde el HTML --- */

/* Gradiente de texto para el título principal */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #1121d4, #9f11d4);
}

/* Efecto Parallax para banners (si se usan) */
.banner-parallax {
    background-image: url('https://time.com/wp-content/uploads/2017/10/229-westerlund-21.jpg?w=2000');
    height: 250px; 
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Animación suave para el elemento details/summary (FAQ) */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
