.contenedor-galeria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20%;
}

.fila {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 30px;
    width: 100%;
}

.estilo-caption-4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.estilo-caption-4 li {
    position: relative;
    transition: transform 0.25s ease-in-out;
    flex: 0 1 280px;
    border-radius: 15px; 
    overflow: hidden; 
    margin: 15px;
}


.imagen-galeria {
    width: 100%;
    max-width: 280px;
    height: 270px;
    border-radius: 15px; 
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}


.estilo-caption-4 li:hover .leyenda {
    opacity: 1;
}

.estilo-caption-4 li:hover img {
    opacity: 1;
    transform: scale(1.15, 1.15);
}

.texto-leyenda h1 {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
    border-radius: 0px;
}

#header
{
    font-size: 55px;
    text-align: center;
    color: #FF5800;
}