@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat';
        }
        
        html {
            scroll-behavior: smooth;
        }

      /* *********************/
        /* S E C C I O N - I N I C I O */
        /* *********************/


h2 {
    animation: fadeIn 1s ease forwards;
}

.presentacion {
    text-align: justify;
}
        
        #inicio {
            background: linear-gradient( rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../img/Portada.png');
            background-size: cover;
            background-position: center center;
            height: 100vh;
        }
        
        #inicio .contenido header {
            background-color: rgba(0, 0, 0, .8);
            position: fixed;
            width: 100%;
            z-index: 100;
            top: 0;
        }
        
        #inicio .contenido header .contenido-header {
            max-width: 1100px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }
        
        #inicio .contenido header .contenido-header h1 {
            text-align: center;
            color: #ffc400;
        }   
        
        #inicio .contenido header .contenido-header nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }
        
        #inicio .contenido header .contenido-header nav ul li a {
            text-decoration: none;
            color: #fff;
            margin: 0 12px;
            font-weight: 400;
            transition: .5s;
        }
        
        #inicio .contenido header .contenido-header nav ul li a:hover {
            color: #ffc400;
        }
        
        #inicio .contenido header .contenido-header .redes a {
            text-decoration: none;
            color: #fff; 
            display: inline-block;
            margin-left: 10px;
            transition: .5s;
        }
        
        #inicio .contenido header .contenido-header .redes a:hover {
            color: #ffc400;
        }
        
        #inicio .contenido header .contenido-header .seleccionado {
            color: #ffc400;
        }
        
        #inicio .contenido .presentacion {
            max-width: 1100px;
            height: 100vh;
            margin: auto;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        #inicio .contenido .presentacion .bienvenida {
            font-size: 16px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 5px;
        }
        
        #inicio .contenido .presentacion h2 {
            font-size: 55px;
            margin-bottom: 25px;
            text-align: center;
        }
        
        #inicio .contenido .presentacion h2 span {
            font-size: 25px;
            color: #ffc400;
        }
        
        #inicio .contenido .presentacion .descripcion {
            max-width: 700px;
            margin: 25px auto;
            font-size: 18px;
            text-align: center;
        }
        
        #inicio .contenido .presentacion a {
            text-decoration: none;
            display: inline-block;
            margin: 25px;
            padding: 20px 25px;
            border: 2px solid #fff;
            border-radius: 50px;
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            transition: .5s;
        }
        
        #inicio .contenido .presentacion a:hover {
            background-color: #ffc400;
        }
        


 /* *********************/
/* S E C C I O N - B A N N E R */
/* *********************/

#banner {
    margin-top: 40px;
}

.banner-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: auto; 
    margin: 0 auto;
}

.banner {
    display: flex;
    width: auto;
    transition: transform 0.8s ease-in-out;
}

.banner img {
    width: 100%;
    flex: 1 0 100%; 
}

.banner-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 36px;
    cursor: pointer;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* --- Estilos menú responsive --- */

/* Botón de menú */
.menu-btn {
    display: none;
    font-size: 2rem;
    color: white !important;
    cursor: pointer;
    z-index: 1100; /* Siempre encima del menú */
}

/* Estilos para pantallas con un ancho máximo de 768px (dispositivos móviles) */
@media (max-width: 768px) {
    /* Mostrar el botón de menú */
    .menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Ocultar las redes sociales en móviles */
    .redes {
        display: none;
    }

    /* Contenedor del menú (estado oculto por defecto) */
    nav ul {
        display: flex;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
        position: fixed;
        top: 0;
        right: -300px; /* Oculto fuera de pantalla */
        width: 250px;
        height: 100vh;
        padding: 80px 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000; /* Menor que el botón */
    }

    /* Cuando nav tiene la clase 'active', el menú se muestra */
    nav.active ul {
        right: 0;
    }

    /* Ítems del menú */
    nav ul li {
        margin: 20px 0;
        text-align: center;
    }

    /* Estilos de enlaces */
    nav ul li a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #00bfff;
    }
}
/* Ocultar las redes sociales en móviles */
    .redes {
        display: none;
    }



