body {
    background-color: #D8B5FF;
}

.personas-actuando {
    width: 100%;
}


.seccion-de-fotos {
    padding-top: 10px;
    margin: 0 auto;
    width: 98%;
    display: flex;
    justify-content: center;

}

.seccion-de-fotos div {
    width: clamp(200px, 40vw, 400px);
    display: grid;
    width: 50%;
    margin: 0;
    padding-left: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: auto;
}

.seccion-de-fotos .div-1 img {
    width: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.seccion-de-fotos .div-1 .imagen {
    width: 100%;
    height: 150vh;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.seccion-de-fotos .div-1 .imagen-2 {
    margin-top: 10px;
    height: 50vh;
}

.seccion-de-fotos .div-2 img {
    width: 100%;
    height: 66vh;
    padding: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.seccion-de-fotos .div-2 .imagen-2 {
    width: 100%;
    margin-top: 9px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.galeria-book img:hover {
    transform: scale(1.05);
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

#imagen-lightbox {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 10px;
    border: 3px solid white;
    box-shadow: 0 0 10px #fff;
}

#cerrar-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.navegacion-lightbox button {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    margin: 0 20px;
}

/* 📱 Responsividad para tablets y móviles */
@media (max-width: 900px) {

    .seccion-de-fotos .div-2 {
        height: auto;
    }

    .personas-actuando {
        height: auto;
    }

    .seccion-de-fotos .div-1 .imagen {
        height: auto;
    }

    .seccion-de-fotos .div-1 .imagen-2 {
        height: auto;
    }

    .seccion-de-fotos .div-2 img {
        height: auto;
    }
}