:root{--yellow:#f6b02d;--dark:#222}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; margin:0; color:var(--dark); background:#f7f7f7}
.container{max-width:1100px;margin:0 auto;padding:20px}
.site-header{background:var(--yellow);color:#fff;position:sticky;top:0;z-index:40;box-shadow:0 2px 6px rgba(0,0,0,0.08)}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:56px;height:56px;background:#fff;color:var(--yellow);display:flex;align-items:center;justify-content:center;border-radius:12px;font-size:22px}
.site-header h1{margin:0;font-size:20px}
.tagline{margin:0;font-size:13px;opacity:0.95}
.btn{display:inline-block;background:var(--dark);color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:600}
.order-btn{background:#fff;color:var(--yellow);padding:8px 12px;border-radius:10px;font-weight:700;text-decoration:none}

.hero{position:relative;height:60vh;display:flex;align-items:center;justify-content:center;background:#000;overflow:hidden}
/* Nota: O elemento .hero-video agora é usado para a imagem de banner no HTML ajustado. */
.hero-video{width:100%;height:100%;object-fit:cover;position:absolute;left:0;top:0} 
.hero-overlay{position:relative;z-index:6;color:#fff;text-align:center;padding:20px;background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));width:100%}
.hero-overlay h2{font-size:36px;margin:0 0 10px}
.hero-overlay p{margin:0 0 16px}
.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

.menu{padding-top:40px;padding-bottom:40px;background:#fff;border-top:1px solid rgba(0,0,0,0.04);border-bottom:1px solid rgba(0,0,0,0.04)}
.menu-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
.menu-list li{background:#fff;padding:14px;border-radius:10px;display:flex;justify-content:space-between;align-items:center;border:1px solid rgba(0,0,0,0.04)}
.order-small{background:var(--yellow);border:none;padding:8px 10px;border-radius:8px;color:#111;font-weight:700;cursor:pointer}

.gallery{padding-top:40px;padding-bottom:40px}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:12px}
.card img{width:100%;height:160px;object-fit:cover;display:block;border-radius:10px}

.contact{display:grid;grid-template-columns:1fr 1fr;gap:20px;padding:40px;background:#fff;border-top:1px solid rgba(0,0,0,0.04)}
.contact-left p{margin:8px 0}
.contact-right iframe{width:100%;height:260px;border:0;border-radius:10px}

/* NOVO ESTILO PARA OS BANNERS */
.banner-container{display:flex;gap:20px;padding:40px 20px;max-width:1100px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.banner-promo{flex:1 1 45%; /* Garante que os banners ocupem a maior parte da largura e quebrem em telas pequenas */
    padding:25px;
    border-radius:12px;
    color:#fff;
    text-align:center;
    min-width:300px; /* Garante tamanho mínimo */
    box-shadow:0 4px 12px rgba(0,0,0,0.1)
}
.banner-promo h4{margin-top:0;font-size:24px}
.banner-promo p{margin-bottom:20px;opacity:0.9}
.banner-video{background:linear-gradient(135deg, var(--yellow), #ff8800)}
.banner-instagram{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}
.banner-instagram .btn{background:#fff;color:#d6249f;font-weight:700}
/* FIM DO NOVO ESTILO */

.site-footer{background:var(--yellow);color:#fff;padding:18px 0;text-align:center;margin-top:20px}

.whatsapp-fab{position:fixed;right:18px;bottom:18px;background:#25D366;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(0,0,0,0.18);text-decoration:none}
.whatsapp-fab svg{display:block}

@media(max-width:800px){
    .contact{grid-template-columns:1fr}
    .hero-overlay h2{font-size:28px}
    .hero{height:50vh}
    .menu-list{grid-template-columns:1fr}
    .banner-promo{flex:1 1 100%; /* Banners ocupam a largura total em telas menores */
    }
}