body{
    margin: 0;
}

.cuerpo{
    display: flex;
    flex-direction: column;
    background:linear-gradient(#e0dac0, #ddd29f);
    height: 100%;
    width: 100%;
    margin: 0;
    align-items: center;
}

header{
    display: flex;
    width: 100%;
    height: 70px;
    background-color: #796a86;
    padding: 1%;
    justify-content: space-between;
    
}

.links{
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: space-around;
    width: 30%;
    padding: 2%;
}

.links a{
    padding: 1%;
    color: white;
    font-family: Helvetica;
    text-decoration: none;
    align-self: center;
    font-size: 11pt;
}



header img{
    padding: 1%;
}

.contenedor{
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 100%;
    background-color: #f1f1f1;
    color: #535353;
}

.contenedor h3{
    text-align: center;
    font-family: Helvetica;
    padding: 3%;
    font-size: 24pt;
}

.bebidas{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-family: Helvetica;
    padding: 5%;
}

.bebidas h4{
    font-size: 24pt;
    text-align: center;
    margin-bottom: 0;
}

.bebida{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    margin: 10px;
    padding: 30px;
}

.bebida .descripcion{
    padding: 3%;
    text-align: center;
    width: 40%;
}

.bebida img{
    width: 15%;
}

footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 70px;
    background-color: #796a86;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Helvetica;
}


.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-media a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #e0dac0;
}

.novedades {

    width: 100%;
    max-width: 5000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 330px;
    background-color: #e0dac0;
    justify-content: center;
    font-family: helvetica;
    color: #796a86;
    
  }

  
  .carousel-container {
    overflow: hidden; 
    width: 100%;
    height: 300px; 
    position: relative;

  }
  
  .carousel-slide {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out; 
    height: 100%;
  }
  
  .carousel-image {
    min-width: 100%; 
    height: 100%;
  }
  
  .carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }
  