*{
    margin: 0;
    padding: 0;

}
body{
    background-color: #f2e6d8;
}
img{
    width: 30%;
    display: flex;
    margin: 50px auto;
}
.contenedor::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 25%;
    height: 70%;
    background-image: url('../assets/images/flores-before.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.contenedor::after{
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 70%;
    background-image: url('../assets/images/flores-after.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.galeria {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* espacio entre filas */
  }
  
  .fila {
    display: flex;
    gap: 20px; /* espacio entre imágenes */
  }
  
  .fila-superior {
    justify-content: space-between;
  }
  
  .fila-inferior {
    justify-content: center;
  }

  .galeria img{
    transition: transform 0.3s ease;
  }
  .galeria img:hover{
    transform: scale(1.1);
  }
.banner-programacion{
  width: 70%;
  border-radius: 5px;
  transition: transform 0.3s ease;
  margin: 20px auto;
}
.banner-programacion:hover{
  transform: scale(1.1);
}
  @media screen and (max-width: 768px){
    img {
    width: 100%;
    display: flex;
    margin: 0;
    }
    .fila {
      display: flex;
      gap: 20px;
      flex-direction: column;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .fila {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
  }