
/* TITULOS */
h1 {
    color: gold;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 10px 30px;
    width: 100%;
    z-index: 1000;
}

/* CONTENEDOR NAV */
.contenedorNavegador {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*TOGGLE*/
.menu-toggle {
    display: none; /* 👈 oculto en desktop */
    font-size: 28px;
    color: gold;
    cursor: pointer;
}
/* MENU */
.contenedorUL ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.contenedorUL ul li a {
    color: gold;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
}

.contenedorUL ul li a:hover {
    color: white;
    transform: scale(1.1);
}
/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: gold;
    cursor: pointer;
}


/* RESPONSIVE */
@media (max-width: 768px) {

    /* NAV */
    .contenedorUL {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: black;
        width: 100%;
        text-align: center;
    }

    .contenedorUL ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .menu-toggle {
        display: block;
    }
}