
/* Container base para os pratos */
.dishes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 10;
}

/* Estilo base dos itens */
.dish-item {
    margin-bottom: 0 !important;
    padding: 15px 20px 10px 70px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    background-color: var(--dm-white);
    border-radius: 10px;
    position: relative;
}

.dish-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* FIT STYLE - Verde */
.fit-item .box-icon {
    background: linear-gradient(135deg, var(--dm-green), #0a9e0a) !important;
    border: 8px solid var(--dm-bg) !important;
    left: -15px;
    top: -15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(7, 126, 7, 0.2);
}

.fit-item .box-icon img, .veg-item .box-icon img {
    max-width: 50px;
    max-height: 50px;
}

/* VEG STYLE - Laranja */
.veg-item .box-icon {
    background: linear-gradient(135deg, var(--dm-orange), var(--dm-orange-dark)) !important;
    border: 8px solid var(--dm-bg) !important;
    left: -15px;
    top: -15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(210, 133, 39, 0.2);
}

/* Título do prato */
.dish-item .box-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dm-text);
    margin-bottom: 2px;
}

/* Área de texto/informação */
.dish-item .box-text {
    margin-top: -8px !important;
    font-size: 13px;
}

/* Link de informação */
.dish-item .dishInformation {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Responsividade */
@media (max-width: 1199px) {
    .col-xl-6:first-child {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .dish-item {
        padding: 20px !important;
        text-align: center;
    }
    
    .dish-item .box-icon {
        position: static !important;
        margin: 0 auto 15px auto;
        left: 0 !important;
        top: 0 !important;
    }
    
    .dish-item .box-text {
        margin-top: 5px !important;
    }
    
    .dish-item .dishInformation {
        justify-content: center;
    }
}

/* Ajustes para os ícones se as imagens já tiverem o número */
.fit-icon img,
.veg-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}



/* Remover espaço extra entre as seções */
.space-top .th-slider {
    height: 266px !important;
    min-height: 266px !important;
    max-height: 266px !important;
    overflow: hidden !important;
}

.space-top .th-slider .swiper-wrapper,
.space-top .th-slider .swiper-slide {
    height: 266px !important;
}

/* Garantir que o hero slider NÃO é afetado */
.th-hero-wrapper .th-slider {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.th-hero-wrapper .th-slider .swiper-wrapper,
.th-hero-wrapper .th-slider .swiper-slide {
    height: auto !important;
}

.counter-secMenu {
    padding: 90px 0 0 0;
    background-position: top center;
}

.blog-meta {
    white-space: nowrap;
}