:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F77F00;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Otimizado para destacar o logo da marca */
.header {
    background: var(--white);
    color: var(--text-dark);
    padding: 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 4.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    line-height: 1;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.brand-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.fechado {
    background: #ffebee;
    color: #c62828;
}

.status-icon {
    font-size: 0.6rem;
    line-height: 1;
}

.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.delivery-link:hover {
    color: var(--primary-color);
}

.delivery-icon {
    font-size: 1rem;
}

.delivery-text {
    /* Sem sublinhado */
}

.header-info {
    display: none;
}

.delivery-time {
    display: none;
}

/* Banner de Promoções */
.promocoes-banner {
    background: var(--white);
    padding: 20px 0;
    margin-bottom: 20px;
}

.promocoes-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.promocoes-slider::-webkit-scrollbar {
    height: 6px;
}

.promocoes-slider::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.promocoes-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.promocao-card {
    flex: 0 0 auto;
    width: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.promocao-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.promocao-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 10px;
}

.promocao-badge {
    display: inline-block;
    background: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Categorias */
.categorias-section {
    background: var(--white);
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.categorias-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.categorias-nav::-webkit-scrollbar {
    display: none;
}

.categoria-btn {
    flex: 0 0 auto;
    background: var(--bg-light);
    border: 2px solid transparent;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.categoria-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.categoria-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Seções */
.destaques-section,
.cardapio-section {
    padding: 30px 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.categorias-title {
    color: #999;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    margin: 15px 0 10px 0;
    opacity: 0.8;
}

.categoria-section {
    margin-bottom: 50px;
}

.categoria-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.categoria-header h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
}

.categoria-header p {
    color: var(--text-light);
    margin: 5px 0 0 0;
    font-size: 0.95rem;
}

/* Grid de Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.produto-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.produto-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.badge-destaque {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.badge-indisponivel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10;
}

.produto-info {
    padding: 20px;
}

.produto-nome {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.produto-descricao {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-preco {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.preco-atual {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preco-original {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.desconto-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-categoria {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.modal-descricao {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-preco {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-primary {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover,
.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Loading */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.loading::after {
    content: '';
    width: 30px;
    height: 30px;
    margin-left: 15px;
    border: 3px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        padding: 16px 0;
    }
    
    .header-brand {
        gap: 15px;
    }
    
    .logo {
        width: 90px;
        height: 90px;
        padding: 8px;
        font-size: 3rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .status-badge {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    
    .delivery-link {
        font-size: 0.85rem;
    }

    .categorias-title {
        font-size: 0.85rem;
        margin: 8px 0 6px 0;
        opacity: 0.7;
    }

    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .modal-content {
        width: 95%;
    }

    .modal-image {
        height: 250px;
        font-size: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
    }
    
    .header-brand {
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .brand-info {
        align-items: center;
    }
    
    .logo {
        width: 80px;
        height: 80px;
        padding: 6px;
        border-radius: 12px;
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .status-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .delivery-link {
        font-size: 0.8rem;
    }
    
    .delivery-icon {
        font-size: 0.85rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .categorias-nav {
        gap: 8px;
    }

    .categoria-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }-content {
        padding: 30px 0;
    }
    
    .logo {
        width: 160px;
        height: 160px;
        padding: 16px;
        font-size: 5.5rem;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .status-badge {
        font-size: 1rem;
        padding: 8px 18px;
    }
    
    .delivery-link {
        font-size: 1rem
    
    .logo img {
        max-height: 130px;
        max-width: 350px;
    }
    
    .delivery-time {
        font-size: 1.1rem;
        padding: 12px 24px;
    }
    
    .container {
        max-width: 1400px;
    }

    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .produto-image {
        height: 240px;
        font-size: 4rem;
    }

    .logo {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}
