@import url('../../assets/css/fawesome-all.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
header{
    display: flex;
align-items: center;    
background-color: #fff;
    padding: 15px 20px;
}
header button {
    display: flex;
    margin: 0px -25px;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: rgb(0, 0, 0);
    font-size: 16px;
    cursor: pointer;
    .fa-solid{
        font-size: 2em;
    }
}
header h1{
    flex-grow: 1; 
    justify-content: center;
    text-align: center; 
    font-size: 1.5em;
}


.section {
    text-align: center;
    color: #555;
    padding: 20px 20px 10px; 
    font-size: 1.2em;
    letter-spacing: 2px;
    margin-bottom: 20px; 
}

.section h1{
    border-bottom: 1px solid #c0ffc5;
}


.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

.menu-item:last-child {
  border-bottom: none;
}


.menu-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
}


.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.item-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 4px;
}

.item-desc {
  font-size: 16px;
  color: #666;
}

.item-price {
  background-color: #4CAF50;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.panel{
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.seccion {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
    padding: 12px 0; 
}
.seccion span {
    font-size: 1.5em;
    margin-bottom: 5px;
}
.seccion :hover {
    color: #3fe0c5;
    font-weight: bold;
}
.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32%;
    width: 35%;
    height: 3px;
    background-color: #3fe0c5; 
    border-radius: 2px;
}

.active {
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
} 

.active:hover {
    color: #3fe0c5;
}