.menu {
    text-align: center;
    background-color: rgb(166, 25, 46); /* Fondo rojo */
    color: white;
    padding: 20px 0;
}

.menu h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.animales {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.animal {
    position: relative;
    flex: 1;
    min-width: 250px;
    overflow: hidden;
    height: 650px;
}

.animal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.animal:nth-child(1) img{
    object-position: 80% center;
    transform: scale(1.3);
}

.animal:nth-child(2) img{
    object-position: 25%;
}

.animal:nth-child(4) img{
    object-position: 20%;
}

.animal:hover img {
    filter: grayscale(0%); 
    transform: scale(1.2);
}

.animal:hover:nth-child(1) img {
    filter: grayscale(0%); 
    transform: scale(1.5);
}

.animal p {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgb(166, 25, 46);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.animal:nth-of-type(even) p {
    background-color: #892735; 
}

/*--------- RESPONSIVE ---------*/

@media(max-width:760px){
    .menu{
        margin-top: 207px;
    }
    .menu h1{
        font-size: 30px;
    }
}
