
.main .galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; 
    padding: 20px; 
}


.main .galeria .foto {
    flex: 1; 
    margin: 0;
    position: relative; 
    overflow: hidden; 
    margin-top: 10px;
}


.main .galeria .foto img {
    width: 100%;
    height: auto;  
    display: block;
    transition: transform 0.3s ease;
}


@media (max-width: 768px) {
    .main .galeria .foto {
        flex: 1 1 calc(50% - 10px); 
    }
    .foto {
        margin-bottom: 30px !important; /* Ajusta el espacio entre las imágenes en pantallas medianas y grandes */
    }
    .overlay {
        position: absolute;
        top: 0;
        /* width: 87.5% !important; */
        height: 100% !important;
        background-color: rgba(0, 0, 0, 0.5); 
        transition: opacity 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
    }
 
    .nombre{
        font-size: 15px !important;
    }
}


.galeria {
    padding: 20px; 
}

.foto {
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    width: 93.7%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}


.foto:hover .overlay {
    opacity: 0; 
}
.overlay-content {
    text-align: center;
    color: #fff; 
}

.nombre {
    font-size: 20px;
    font-weight: bold;
}

