/* ...Tu CSS anterior aquí... */

/* HAMBURGER MENU (solo visible en móvil) */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 2.1em;
    color: #fff;
    cursor: pointer;
    padding: .2em .5em;
}
@media (max-width: 700px) {
    .navbar nav ul {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg,#f42a7b 0%, #5d9cff 100%);
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 180px;
        box-shadow: 0 5px 12px #0002;
        border-radius: 0 0 10px 10px;
        z-index: 500;
    }
    .navbar nav ul.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}

/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(44,42,49,0.96);
    transition: opacity 0.33s;
}
.lightbox img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 10px 50px #000;
    border: 3px solid #f42a7b;
}
#close-lightbox {
    position: fixed;
    top: 30px;
    right: 44px;
    font-size: 2.7em;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    font-family: monospace;
    background: #f42a7b;
    border-radius: 50%;
    padding: 0 .38em;
    transition: background .18s;
}
#close-lightbox:hover {
    background: #5d9cff;
}