/* Estilo geral para o cardápio */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;

}

.menu-category {
    width: 100%;
}

.menu-item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
}

.menu-item-content {
    display: flex;
    flex-direction: row;
}
.menu-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    }

.menu-item-top {
    margin-bottom: 5px;
}

.menu-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: auto;
}

.menu-item-details {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item-name {
    font-size: 1.1em;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.menu-item-desc {
    font-size: 0.9em;
    color: #666;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.menu-item-price {
    font-size: 1em;
    color: #28a745;
    margin: 0;
    font-weight: bold;
    white-space: nowrap; /* Impede que o preço quebre em múltiplas linhas */
}

.show-more {
    color: #267EDD;
    font-size: 0.9em;
    text-decoration: none;
    margin-left: 10px;
    white-space: nowrap;
    font-weight: bold;
}

.category-title {
    font-size: 1.5em;
    margin: 20px 0 15px 0;
    padding: 0;
    font-weight: bold;
}

/* BOTÃO SUSPENSO */
#scrollToTopBtn {
    position: fixed;
    bottom: 75px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #7C1315;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s, box-shadow 0.3s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: 0 0 0 3px white; /* Cria uma borda branca de 3px */
}

#scrollToTopBtn:hover {
    background-color: #c82333;
    box-shadow: 0 0 0 4px white; /* Aumenta ligeiramente a borda no hover */
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTopBtn i {
    line-height: 1;
}

.category-sticky-header {
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

.page-transition {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/*-----------------------------------------------------------------------*/
.item-footer {
    padding: 5px 10px;
   
    /*border-top: 1px solid #dee2e6;*/
}

.classification-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.7em;
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
    color: #333;
    margin-right: 5px;
}

.classification-item i {
    margin-right: 3px;
}

/*-------------------------------------------------------------------------*/
.favorite-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn i {
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
}

.favorite-btn.active i {
    color: #E74999;
}

.favorite-btn .badge {
    position: absolute;
    top: 0px;
    right: -5px;
    background-color: #e0e0e0;
    color: #333;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.favorite-btn.active .badge {
    background-color: #ff4136;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.favorite-btn:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .favorite-btn {
        width: 35px;
        height: 35px;
    }
    
    .favorite-btn i {
        font-size: 18px;
    }
    
    .favorite-btn .badge {
        font-size: 10px;
        padding: 1px 5px;
    }
}


/*-------------------------------------------------------------------*/
.page-footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    margin-top: 30px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content p:last-child {
    font-size: 0.8em;
    margin-top: 10px;
    color: #adb5bd;
}

/*-------------------------------------------------------------------------------*/
