.banner {
    background: url('img/fondoNetwork.avif') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner img{
    height:250px;
    margin-top:60px;
}
.txtBanner {
    background:#310d2c;
    box-sizing: border-box;
    padding: 20px;
    width: 400px;
    color: white;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    margin-top:60px;
}






.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: #333;
    padding:20px 0;
}
.containerButtons button{
  padding:20px;
  background: white;
  color:#333; 
  border:none;
  font-weight:bold;
  font-size: 1rem;
  width:300px;
  border-radius:15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}
.containerButtons button:hover{
    color: yellow;
    background:#310d2c;  
    cursor:pointer;
}

@media (max-width: 768px) {
    .banner {
        gap: 0;
    }
    .banner img{
    margin-top:0px;
   }
   .txtBanner {
      margin-top:0px;
   }
   .containerCuadros{
     width:96%;
    }
}

