/* Reset & Variáveis */
:root {
    --marrom: #ff3333;
    --marrom-claro: #cc0000;
    --bege: #f0e4d8;
    --bege-escuro: #d4d3b0;
    --branco: #FFF;
    --cinza-claro: #f5f5f5;
    --sombra: 0 4px 20px rgba(50, 40, 40, 0.08);
    --sombra-hover: 0 8px 25px rgba(0,0,0,0.12);
    --transicao: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cinza-claro);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
/* ou */
font-family: 'Playfair Display', serif;
}

/* Header Moderno */
header {
    background: var(--branco);
    box-shadow: var(--sombra);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transicao);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--marrom);
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--marrom-claro);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cart-btn {
    background: none;
    border: none;
    color: green;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    padding: 5px;
    transition: var(--transicao);
}

.header-cart-btn:hover {
    transform: scale(1.1);
}

.menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--marrom);
    cursor: pointer;
    transition: var(--transicao);
    display: none;
}

.menu-btn:hover {
    transform: scale(1.1);
}

/* Menu de navegação mobile */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--branco);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.nav-mobile.show {
    right: 0;
}

.nav-mobile a {
    display: block;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: var(--marrom);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transicao);
}

.nav-mobile a:hover, .nav-mobile a.active {
    background: var(--bege);
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--marrom);
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transicao);
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}







.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    border-radius: 5px;
    max-width: 500px;
}

/* Indicadores de slide */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background-color: white;
}

/* Seção de Sabores */
.sabores {
    padding: 5rem 0;
    background: var(--branco);
}

.section-title {
    font-size: 2.5rem;
    color: var(--marrom);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bege);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Menu de Navegação de Sabores */
.sabores-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
    position: sticky;
    top: 80px;
    background: var(--branco);
    padding: 15px 0;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sabores-menu a {
    padding: 10px 25px;
    background: var(--bege);
    color: var(--marrom);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transicao);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    white-space: nowrap;
}

.sabores-menu a i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.sabores-menu a:hover, .sabores-menu a.active {
    background: var(--marrom);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

/* Categorias de Produtos */
.categoria {
    margin: 4rem 0;
    scroll-margin-top: 150px;
}

.categoria h3 {
    font-size: 2rem;
    color: var(--marrom);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--bege);
    display: flex;
    align-items: center;
}

.categoria h3 i {
    margin-right: 15px;
    color: var(--marrom-claro);
}

/* Carrossel de Produtos */
.carrossel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carrossel {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carrossel::-webkit-scrollbar {
    display: none;
}

/* Cards de Produtos */
.card {
    min-width: 280px;
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--branco);
    box-shadow: var(--sombra);
    transition: var(--transicao);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--marrom);
    color: var(--branco);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-img-container {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: calc(100% - 180px);
}

.card h3 {
    font-size: 1.3rem;
    color: var(--marrom);
    margin-bottom: 0.6rem;
    font-weight: 600;
    line-height: 1.3;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card .btn {
    margin-top: auto;
    align-self: center;
}

.rating {
    color:  #cc9933;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rating .fa-star-half-alt {
    color:  #cc9933;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: var(--marrom);
    color: var(--branco);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transicao);
    box-shadow: 0 4px 15px rgba(64, 29, 20, 0.2);
}

.btn:hover {
    background: #2e150f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(64, 29, 20, 0.3);
}

.btn i {
    margin-right: 8px;
}

.btn-bege {
    background: var(--bege);
    color: var(--marrom);
}

.btn-bege:hover {
    background: var(--bege-escuro);
    color: var(--marrom);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--branco);
    color: var(--branco);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.3);
    z-index: 90;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Carrinho */
.carrinho-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--marrom);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(64, 29, 20, 0.3);
    cursor: pointer;
    z-index: 90;
    color: var(--branco);
    font-size: 1.8rem;
    transition: var(--transicao);
    border: none;
    background-color: green;
}

.carrinho-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(64, 29, 20, 0.4);
}

.carrinho-btn.pulse {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.carrinho-contador {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--bege);
    color: var(--marrom);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid var(--branco);
}

/* Modal Carrinho */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background: var(--branco);
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--marrom);
    display: flex;
    align-items: center;
}

.modal-title i {
    margin-right: 10px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--marrom);
    transition: var(--transicao);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.carrinho-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: var(--transicao);
}

.carrinho-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.carrinho-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.carrinho-item-info {
    flex: 1;
}

.carrinho-item-nome {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--marrom);
}

.carrinho-item-acoes {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.carrinho-item-quantidade {
    margin: 0 0.8rem;
    min-width: 25px;
    text-align: center;
    font-weight: 500;
}

.acao-btn {
    background: var(--bege);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transicao);
    color: var(--marrom);
}

.acao-btn:hover {
    background: var(--bege-escuro);
    transform: scale(1.1);
}

.remover-btn {
    background: none;
    border: none;
    color: #ff3333;
    margin-left: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: var(--transicao);
}

.remover-btn i {
    margin-right: 5px;
}

.remover-btn:hover {
    color: #cc0000;
    transform: translateX(3px);
}

.finalizar-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
}

.finalizar-btn i {
    margin-left: 8px;
}

.carrinho-vazio {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.carrinho-vazio i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--bege-escuro);
}

.carrinho-vazio p {
    margin-bottom: 1.5rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--marrom);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

.toast i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Loading Spinner */
.spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.spinner.show {
    display: flex;
}

.spinner-icon {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bege);
    border-top-color: var(--marrom);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsivo Aprimorado */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .header-actions {
        gap: 10px;
    }
}

@media (max-width: 768px) {

    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .sabores-menu {
        top: 70px;
        padding: 10px 15px;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        white-space: nowrap;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .sabores-menu a {
        scroll-snap-align: start;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .categoria h3 {
        font-size: 1.5rem;
        padding-left: 10px;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-width: 95%;
    }
    
    .carrinho-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .carrinho-item-img {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: cover;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .header-cart-btn {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .btn-container {
        flex-direction: column;
        width: 100%;
    }
    
    .categoria h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .toast {
        width: 90%;
        text-align: center;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}












    /* Design Moderno para Menu de Categorias */
    .category-nav {
        padding: 3rem 1rem;
        background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    }
    
    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .category-card {
        display: block;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-decoration: none;
        color: #333;
        background: white;
        position: relative;
        height: 100%;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }
    
    .category-image {
        height: 200px;
        position: relative;
        overflow: hidden;
    }
    
    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .category-card:hover .category-image img {
        transform: scale(1.05);
    }
    
    .category-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    }
    
    .category-content {
        padding: 1.5rem;
        position: relative;
    }
    
    .category-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #222;
    }
    
    .category-link {
        color: #990000;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .category-link i {
        margin-left: 5px;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .category-card:hover .category-link {
        color: #cc0000;
    }
    
    .category-card:hover .category-link i {
        transform: translateX(3px);
    }
    
    /* Responsividade */
    @media (max-width: 1024px) {
        .category-grid {
            gap: 1.5rem;
        }
        
        .category-image {
            height: 180px;
        }
    }
    
    @media (max-width: 768px) {
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .category-content {
            padding: 1.2rem;
        }
        
        .category-content h3 {
            font-size: 1.3rem;
        }
    }
    
    @media (max-width: 480px) {
        .category-nav {
            padding: 2rem 1rem;
        }
        
        .category-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .category-image {
            height: 160px;
        }
    }

            /* Ajustes para o carrossel principal */


                
        /* Estilos para os botões de navegação do carrossel */
        .carrossel-container {
            position: relative;
            overflow: hidden;
        }
        
        .carrossel {
            display: flex;
            transition: transform 0.5s ease;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE e Edge */
        }
        
        .carrossel::-webkit-scrollbar {
            display: none; /* Chrome, Safari e Opera */
        }
        
        .carrossel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .carrossel-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .carrossel-btn.prev {
            left: 10px;
        }
        
        .carrossel-btn.next {
            right: 10px;
        }
                

        
 
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }
        
        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .carousel-indicator.active {
            background-color: white;
        }








    .calculadora-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: linear-gradient(135deg, #990000, #cc9933);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .calculadora-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }
    
    .calculadora-btn:active {
        transform: translateY(1px);
    }
    
    .calculadora-btn i {
        font-size: 18px;
    }
    
    @media (max-width: 768px) {
        .calculadora-btn {
            bottom: 15px;
            left: 15px;
            padding: 10px 16px;
            font-size: 14px;
        }
    }











        .hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilo para navegação (opcional) */
.carousel-nav {
    text-align: center;
    margin-top: 10px;
}

.carousel-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicator.active {
    background-color: #333;
}

        footer {
            background-color: #cc0000; /* Vermelho escuro - cor comum em salgados */
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #cc9933; /* Dourado para contraste */
        }
        
        .footer-section p, 
        .footer-section a {
            color: #f1f1f1;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #cc9933;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            font-size: 1.5rem;
        }
        
        .opening-hours p {
            display: flex;
            justify-content: space-between;
            max-width: 250px;
        }
        
        .opening-hours span {
            text-align: right;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .developer-credit {
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-section {
                margin-bottom: 20px;
            }
            
            .footer-section h3 {
                margin-bottom: 15px;
            }
        }

























        