/* Estilos generales del texto */
.comision p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.comision .lead {
    color: #0060AB;
}

/* Imagen principal al lado del texto */
.comision-principal {
    max-width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Marcos uniformes para las imágenes secundarias */
.comision-marco {
    width: 100%;
    height: 250px;                    
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: #f5f5f5;        
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.comision-marco img {
    width: 100%;
    height: 100%;
    object-fit: contain;               
    object-position: center;
    transition: transform 0.3s ease;
}

/* Zoom al pasar el ratón */
.comision-marco:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;                 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
