html, body, #app {
    height: 100%;
}

#app {
    display: grid;
    grid-template-rows: 56px 1fr 100px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #333;
    color: #ffffff;
}

.footer p {
    margin-bottom: 0;
}

.columna {
    display: flex; 
    align-items: center; 
    gap: 20px; 
  }

  .texto {
    flex: 1; 
  }

  .imagen {
    max-width: 100%; 
    height: auto; 
  }

  .section-admin{
    margin: auto;
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }

  .box-admin-index{
    color: #333;
    width: 260px;
    height: 100px;
    background-color: aquamarine;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 16px;
  }

  .box-admin-index>a{
    color: #333;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 20px 40px;
  }

  .welcome-hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 74px 0;
  }

  .welcome-hero p{
    max-width: 500px;
  }

  .welcome-hero video{
    margin-right: 150px;
  }

  /* .welcome-hero a{
    background: #7eba28;
    border-radius: 16px;
    padding: 8px 16px;
    line-height: 100%;
    color: #333;
    text-decoration: none;
  } */
  
  .logo{
    width: 40px;
    height: 50px;
  }

  .banner-home{
    width: 100%;
    display:block;
    margin-top: 0px;
    padding: 0;
  }
 


  .categorias-section h2{
    font-size: 20px;
  }

  .categorias-section h2>span{
    font-size: 12px;
    color: #00bf99;
  }

  .categorias-section ul{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
    width: 74px 0;
  }

  .categorias-section ul>li{
    height: 75px;
    width: 250px;
    background-color: #7eba2899;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    border-radius: 8px;
    transition: all 0.6 ease-in-out;
    cursor: pointer;
    font-size: 18px;
  }

  .categorias-section li>a{
    color: #333;
    text-decoration: none;
  }

  .categorias-section ul>li:hover{
    background-color: #7eba28bb;
  }

  .carrito-link {
    color: #ff5722; /* Color naranja, por ejemplo */
    font-weight: bold; /* Texto en negrita */
}

.carrito-link:hover {
    color: #e64a19; /* Color naranja más oscuro al pasar el mouse */
}

  .alimento-card img{
    margin: auto;
    height: 150px;
    object-fit: cover;
  }

  .alimento-card h2{
    font-size: 18px;
    text-align: center;
  }

  .alimento-card .card-datos{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 16px;
    flex-wrap: wrap;
  }

  .detalle-alimento{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .detalle-alimento>div{
    max-width: 550px;
    padding-left: 20px;
  }

  .category-tag{
    /* background:#7eba2844 ;
    border-radius: 16px;
    padding: 4px 8px; */
    display: inline-block;
    padding: 0.25em 0.75em;
    font-size: 0.875em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
    min-width: 100px; /* Ajusta este valor según lo que necesites */
    text-align: center;
    }

  

  .alimento-card .buttons-contenedor>a{
    margin: auto;
  }

  .precio{
    font-size: 18px;
    font-weight: 700;
    padding-right: 20px;
  }

  .articulo{
    max-width: 800px;
    margin: auto;
  }
  .navbar-toggler {
    background-color: #007bff; /* Cambia este color al que prefieras */
}

.navbar-collapse {
    background-color: #f8f9fa; /* Fondo del menú desplegable */
}

.carrito-view {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}


