body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 20px;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 30px;
    background-image: url('../images/fondo.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    /* Asegura que el texto sea legible */
}

header img {
    width: 300px;
    /* Ajusta el ancho del logo */
    height: auto;
    /* Mantiene la proporción del logo */
    background-color: none;
    z-index: 2;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(251, 251, 251, 0.63);
    /* Capa más oscura */
    border-radius: 10px;
    z-index: 1;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-section h2 {
    background-color: #000;
    color: #fff;
    padding: 10px;
    margin: 0 -20px 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #444;
    font-family: 'Georgia', serif;
}

span.price {
    float: right;
    font-weight: bold;
    color: #333;
}