
.banner{
    background: #E8C4C4;
    display:flex;
    flex-wrap:wrap;
    gap:50px;
    justify-content:center;
    align-items:center;
    text-align:center;
}
.banner img{
    height:350px;
}
.txtBanner {
    background: white;
    box-sizing: border-box;
    padding: 20px;
    width: 400px;
    color: #5D3A58;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}





.containerCuadros{
    width:80%;
    display:flex;
    flex-wrap:wrap;
    margin:auto;
    align-items:center;
    justify-content:center;
}

.cuadro {
    position: relative;
    width: 450px; 
    height: 200px; 
    overflow: hidden;
    margin:20px;
    cursor: pointer;
    border-radius:25px;
}
.cuadro img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition:transform 0.3s ease;
}
.cuadro img:hover{
    transform:scale(1.1);
}
.cuadro h2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 10px;
    color: white;
    font-size: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    text-align: center;
    box-sizing: border-box;
}
.cuadro:hover{
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}





.containerButtons{
    display:flex;
    flex-wrap: wrap;
    margin:auto;
    gap:20px;
    justify-content:center;
    margin-top:30px;
    background: #E8C4C4;
    padding:20px 0;
}
.containerButtons button{
  padding:20px;
  background: white;
  color:#5D3A58; 
  border:none;
  font-weight:bold;
  font-size: 1rem;
  width:300px;
  border-radius:15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
.containerButtons button:hover{
    color: #E8C4C4;
    background:#5D3A58;  
    cursor:pointer;
}

@media (max-width: 600px) {
    .banner {
        gap: 0;
    }

    .containerCuadros{
        width:96%;
    }
}
