@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Momo+Signature&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');

body {
    background-color: #040404;
}

html,
body {
    overflow-y: scroll;
    /* Asegura que el scroll vertical esté habilitado */
    scrollbar-width: none;
    /* Oculta la barra en Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Oculta la barra en Chrome, Safari y Edge */
}

header {
    background-color: #0B2545;
    padding: 1px 0px 10px 0px;
    text-align: center;
    box-shadow: 0 6px 6px -2px #F5F7FA;
}

.titulos {
    color: #00BFA5;
    font-family: "Orbitron", sans-serif;
    font-size: 3vw;
    font-weight: 900;
}

.subtitulos {
    color: #F5F7FA;
    font-family: "Momo Signature", cursive;
    font-size: 1.7vw;
}

nav a {
    color: #00BFA5;
    font-family: 'Exo 2', sans-serif;
    text-decoration: none;
    font-size: 1.2vw;
    padding: 6px;
    border-right: 1px solid #00BFA5;
}

nav a:last-child {
    border-right: none;
    /* Evita la línea en el último enlace */
}

nav a:hover {
    background: #F5F7FA;
    border-radius: 10px;
}


main {
    color: #F5F7FA;
}

.text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8vw;
}

.text1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1vw;
}

/*Carrucel*/
.gradient-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.bg {
    background-color: rgba(11, 37, 69, 0.6);
    font-family: 'Exo 2', sans-serif;
}

/*Carrucel*/

/* Footer */
#hidden-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0B2545;
    padding: 20px;
    box-shadow: 0 -5px 10px #ede0dd;
    z-index: 999;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tituloFooters {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3vw;
    color: #00BFA5;
}

.logo {
    width: 80px;
}

.logo:hover {
    filter: brightness(1.5);
    /* Aumenta el brillo en un 50% */
}

/* Footer */

/* Pagina Nosotros */
.about {
    padding: 12rem 0 0 0;
    text-align: center; 
    font-family: "Orbitron", sans-serif;
    font-size: 2vw;
    color: #00BFA5;
}

.about-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    text-align: center;
    margin: 0 auto;
}

.about-img {
    height: 200px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    margin: 0 auto;
}

.about-content h3 {
    color: #00BFA5;
    font-size: 1.5vw;
    font-family: 'Exo 2', sans-serif;
}

.about-content p {
    font-size: .7vw;
    font-family: 'Exo 2', sans-serif;
}

.mb-16 {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    /* Alinear elementos en columna */
    align-items: center;
    /* Centrar elementos horizontalmente */
    justify-content: center;
    /* Centrar elementos verticalmente */
    text-align: center;
    /* Centrar texto */
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Animación suave */
    font-size: .9rem;
}

.swiper-slide img {
    width: 100%;
    /* Ajustar tamaño de la imagen */
    height: 100%;
    /* Mantener proporción */
    border-radius: 10px;
    /* Bordes redondeados */
    margin-bottom: 10px;
    /* Separación de la imagen con el texto */
    max-width: 1000px;
    max-height: 400px;

}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.2;
    /* Hacer semi-transparente las diapositivas detrás */
}

/*Pagina Nosotros */

/* Responsividad Fuentes */
@media (max-width: 720px) {
    .titulos {
        font-size: 4vw;
    }

    .subtitulos {
        font-size: 2.5vw;
    }

    nav a {
        font-size: 2vw;
    }

    .tituloFooters {
        font-size: 2vw;
    }

    .text {
        font-size: 6vw;
    }

    .text1 {
        font-size: 3vw;
    }

    .bg {
        font-size: 2vw;
    }

    .logo {
        width: 50px
    }

    .about {
        padding: 6rem 0 0 0;
        font-size: 4.5vw;
    }

    .about-content h3 {
        font-size: 3vw;
    }

    .about-content p {
        font-size: 1.9vw;
    }
}

/* Responsividad Fuentes */