* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a15;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 100px;
    position: relative;
}

/* ========= FUNDO DE TELA COM FLASH NA CIDADE ========= */
/* ⚡⚡⚡ IMAGEM DESKTOP: 1920x1080px - NOME: foto_de_capa_da_pagina1920X1080.png ⚡⚡⚡ */
/* ⚡⚡⚡ IMAGEM MOBILE: 750x1334px - NOME: fundo-mobile.jpg ⚡⚡⚡ */
/* ⚡⚡⚡ COLOQUE AS IMAGENS NA PASTA: imagens/ ⚡⚡⚡ */

.bg-city {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('imagens/foto_de_capa_da_pagina1920X1080.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* MOBILE - imagem separada sem zoom e sem movimento */
@media (max-width: 768px) {
    .bg-city {
        background-image: url('imagens/foto_capa_mobile_city.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        position: fixed !important;
        height: 100% !important;
        width: 100% !important;
    }
}

.bg-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 21, 0.6);
    z-index: -1;
}

.bg-lightning {
    position: absolute;
    top: 10%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightningGlow 3s ease-in-out infinite;
}

.bg-lightning-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,102,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightningGlow 4s ease-in-out infinite 1s;
}

.bg-lightning-3 {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightningGlow 2.5s ease-in-out infinite 0.5s;
}

@keyframes lightningGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* ========= CAPA ========= */
.cover-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    z-index: 10;
}

@media (min-width: 768px) {
    .cover-container {
        height: 320px;
    }
}

@media (min-width: 1200px) {
    .cover-container {
        height: 350px;
    }
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.horario-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 15;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border-left: 3px solid #FFD700;
}

.horario-info i {
    color: #FFD700;
    margin-right: 8px;
}

/* ========= WHATSAPP FLUTUANTE ========= */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    left: auto;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ========= HERO ========= */
.hero {
    padding: 30px 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.flash-hero-icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.flash-hero-icon i {
    font-size: 1.8rem;
    color: #FFD700;
    animation: iconBounce 0.6s infinite alternate;
}

.flash-hero-icon i:nth-child(1) { animation-delay: 0s; }
.flash-hero-icon i:nth-child(2) { animation-delay: 0.2s; }
.flash-hero-icon i:nth-child(3) { animation-delay: 0.4s; }

@keyframes iconBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.hero h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FF6600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.hero-tagline {
    font-size: 1rem;
    color: #eee;
}

.hero-tagline span {
    color: #FFD700;
    font-weight: bold;
}

/* ========= CARDS ========= */
.promo-section, .pizzas-section, .extra-section {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}

.section-header h2 i {
    color: #FFD700;
    margin: 0 8px;
    animation: iconRotate 2s infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pizza-card {
    background: linear-gradient(135deg, rgba(30,30,46,0.95), rgba(37,37,64,0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px;
    width: 280px;
    min-height: 380px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    overflow: hidden;
}

.pizza-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 20px 35px rgba(255, 102, 0, 0.25);
}

.card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pizza-card:hover .card-image img {
    transform: scale(1.05);
}

.card-icon-wrapper {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.pizza-card:hover .card-icon-wrapper {
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF4500, #FF6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255,102,0,0.4);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.pizza-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #FFD700;
}

.card-desc {
    font-size: 0.75rem;
    color: #ddd;
    margin-bottom: 12px;
    line-height: 1.3;
}

.old-price-card {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 4px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6600;
    margin-bottom: 15px;
}

.btn-pedir {
    background: linear-gradient(135deg, #FF4500, #FF6600);
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
}

.btn-pedir:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 12px rgba(255, 102, 0, 0.4);
}

.card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FF6600);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pizza-card:hover .card-hover-effect {
    transform: scaleX(1);
}

/* ========= MODAIS ========= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-items {
    background: linear-gradient(135deg, #1e1e2e, #252540);
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    border: 1px solid rgba(255,215,0,0.3);
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content-items h3 {
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem;
}

.modal-content-items h4 {
    color: #FFD700;
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-row {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    transition: transform 0.2s;
}

.item-row:hover {
    transform: scale(1.01);
    background: rgba(255,102,0,0.15);
}

.item-info {
    flex: 2;
}

.item-name {
    font-weight: bold;
    font-size: 1rem;
}

.item-desc {
    font-size: 0.7rem;
    opacity: 0.7;
}

.item-price {
    color: #FFD700;
    font-weight: bold;
    min-width: 70px;
    font-size: 0.9rem;
}

.btn-add-item, .btn-select-borda, .btn-select-borda-doce, .btn-add-bebida {
    background: linear-gradient(135deg, #FF4500, #FF6600);
    border: none;
    padding: 6px 12px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.btn-add-item:hover, .btn-select-borda:hover, .btn-select-borda-doce:hover, .btn-add-bebida:hover {
    transform: scale(1.03);
}

.close-modal {
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 10px;
    border-radius: 25px;
    color: white;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
}

.close-modal:hover {
    background: rgba(255,255,255,0.2);
}

/* ========= CARRINHO ========= */
.cart-sidebar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: rgba(30, 30, 46, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.cart-sidebar.minimized .cart-content {
    display: none;
}

.cart-sidebar.minimized {
    width: auto;
    padding: 10px;
}

.cart-minimize-btn {
    text-align: center;
    padding: 8px;
    cursor: pointer;
    color: #FFD700;
    transition: all 0.2s;
}

.cart-minimize-btn:hover {
    background: rgba(255,215,0,0.1);
    border-radius: 15px;
}

.cart-content {
    padding: 15px;
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    font-weight: bold;
}

.cart-count {
    background: #FF4500;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-left: auto;
    transition: transform 0.2s;
}

.cart-count.animate {
    transform: scale(1.3);
}

.cart-items {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
}

.cart-item-name {
    flex: 2;
}

.cart-item-price {
    color: #FFD700;
    font-weight: bold;
    font-size: 0.75rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 5px;
    font-size: 0.8rem;
}

.cart-empty {
    text-align: center;
    opacity: 0.6;
    padding: 15px;
    font-size: 0.8rem;
}

.delivery-fee {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #FFD700;
    margin: 8px 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: bold;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
    font-size: 1rem;
}

.btn-finalizar {
    background: linear-gradient(135deg, #FFD700, #FF6600);
    border: none;
    padding: 12px;
    border-radius: 30px;
    color: #1a1a2e;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-finalizar:hover {
    transform: scale(1.01);
}

/* ========= TOAST ========= */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 10px 20px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
    font-weight: bold;
    font-size: 0.85rem;
}

.toast-notification.show {
    transform: translateX(0);
}

/* ========= FOOTER ========= */
footer {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 0 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 1.3rem;
    color: #FFD700;
}

.footer-logo span {
    font-size: 1rem;
    font-weight: bold;
}

.footer-slogan {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-contact a, .footer-contact span {
    color: #ddd;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #FFD700;
}

/* ========= BARRA FIXA DO HORÁRIO ========= */
.horario-fixo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    padding: 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.horario-fixo i {
    color: #FFD700;
    margin-right: 8px;
}

.horario-fixo.aberto {
    background: rgba(40, 167, 69, 0.95);
}

.horario-fixo.fechado {
    background: rgba(220, 53, 69, 0.95);
}

.cover-container .horario-info {
    display: none;
}

body {
    padding-top: 55px;
}

/* ========= LOGO NO CANTO ========= */
.logo-canto {
    position: fixed;
    top: 60px;
    left: 15px;
    z-index: 1000;
}

.logo-canto img {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-canto {
        top: 55px;
        left: 10px;
    }
    
    .logo-canto img {
        max-width: 150px;
        max-height: 45px;
    }
}

/* ========= REMOVER CAPA NO MOBILE ========= */
@media (max-width: 768px) {
    .cover-container {
        display: none !important;
    }
}

/* ========= REMOVER LOGO NO MOBILE ========= */
@media (max-width: 768px) {
    .logo-canto {
        display: none !important;
    }
}

/* ========= RESPONSIVO ========= */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .cart-sidebar {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 10px;
    }
    
    .pizza-card {
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        bottom: 80px;
        right: 15px;
        left: auto;
    }
    
    .modal-content-items {
        width: 95%;
        padding: 15px;
    }
    
    .item-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .item-actions {
        text-align: right;
    }
}

/* ========= BOTÕES DOS MODAIS ========= */
.btn-select-combo-sabor, .btn-select-broto-sabor, .btn-select-combo-doce, .btn-select-promo-sabor {
    background: linear-gradient(135deg, #FF4500, #FF6600);
    border: none;
    padding: 6px 12px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.btn-select-combo-sabor:hover, .btn-select-broto-sabor:hover, .btn-select-combo-doce:hover, .btn-select-promo-sabor:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(255,102,0,0.4);
}

.btn-confirmar-combo {
    background: linear-gradient(135deg, #FF4500, #FF6600);
    border: none;
    padding: 12px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirmar-combo:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255,102,0,0.4);
}/* ========= CORREÇÃO DOS BOTÕES PIZZAS DOCES ========= */
.btn-add-item-doce {
    background: linear-gradient(135deg, #FF4500, #FF6600) !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: bold !important;
    cursor: pointer !important;
    font-size: 0.75rem !important;
    transition: all 0.2s !important;
}

.btn-add-item-doce:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 2px 8px rgba(255,102,0,0.4) !important;
}

/* Garantir que todos os botões de adicionar tenham a mesma cor */
.btn-add-item, .btn-add-item-doce, .btn-add-bebida, .btn-add-broto-doce {
    background: linear-gradient(135deg, #FF4500, #FF6600) !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: bold !important;
    cursor: pointer !important;
    font-size: 0.75rem !important;
    transition: all 0.2s !important;
}

.btn-add-item:hover, .btn-add-item-doce:hover, .btn-add-bebida:hover, .btn-add-broto-doce:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 2px 8px rgba(255,102,0,0.4) !important;
}/* ========= SOLUÇÃO DEFINITIVA - FUNDO FIXO SEM ZOOM ========= */
/* Remove qualquer efeito de parallax no mobile */
@media (max-width: 768px) {
    .bg-city {
        position: fixed !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        transform: none !important;
        -webkit-transform: none !important;
        height: 100vh !important;
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
    
    /* Garante que o body não tenha comportamento de scroll estranho */
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
}