/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Estilos del Header */
header {
    background-color: #ef8a8a;
    padding: 20px;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

/* Estilos de la Navegación */
ul.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    padding: 10px 15px;
    transition: color 0.3s;
}

ul.nav-links li a:hover {
    color: #007bff;
}

/* Botón de Inscripción */
.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Estilos para Dispositivos Móviles */
.menu-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: white;
}
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    ul.nav-links {
        flex-direction: column;
        display: none;
        width: 100%;
        text-align: center;
    }

    ul.nav-links li {
        margin: 10px 0;
    }

    ul.nav-links li a {
        font-size: 1.5em;
    }

    .btn {
        margin-top: 15px;
    }

    .menu-toggle {
        display: block;
    }

    /* Mostrar el menú en móviles al hacer clic */
    .nav-active ul.nav-links {
        display: flex;
    }
}
