.category-section {
    padding: 3rem 0;
    background-color: aliceblue;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.category-section:nth-child(even) {
    background-color: aliceblue;
}

.category-title {
    color: #212529;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #ff5722;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.menu-item-info {
    padding: 1.5rem;
    background-color: #FFF6C3;
}

.menu-item-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #212529;
}

.menu-item-price {
    color: #ff5722;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-item-description {
    color: #212529;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff5722;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
}

.category-nav {
    background-color: #009246;
    margin-bottom: 2rem;
    position: sticky;
    top: 0px;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.category-nav .nav-link {
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-nav .nav-link:hover,
.category-nav .nav-link.active {
    background-color: white;
    color: #ff5722;
}

.page-heading {
    background-color: #CE2B37;
    color: white;
    padding: 0rem 0;
    margin-bottom: 2rem;
}

.btn-reservar {
    background-color: #ff5722;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-reservar:hover {
    background-color: #e64a19;
    color: #fff;
}
.btn-whatsapp {
    display: block;
    margin: 10px auto 0; /* margen arriba y centrado horizontal */
    background-color: #25d366;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
    text-align: center;
    width: fit-content; /* se ajusta al contenido */
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
}

body {
    background-color: #fce4b3; /* Ejemplo: fondo color crema */
}
