:root {
    --bg-black: #050505;
    --brand-yellow: #fba919;
    --brand-red: #8a0303;
    --text-light: #ffffff;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background-color: #000;
    background-image: url('fundo-cinedel.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

h1, h2, h3, .font-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

a { transition: all 0.3s; }

/* --- CABEÇALHO --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 20px;
}
.logo-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 84px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
nav a {
    color: var(--brand-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
    text-shadow: 1px 1px 3px #000;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active { color: var(--text-light); border-bottom: 2px solid var(--brand-yellow); }

.btn-pedir-topo {
    background-color: var(--brand-yellow);
    color: #000;
    padding: 10px 25px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-pedir-topo:hover { background-color: #ffc107; }

@media (max-width: 960px) {
    header { flex-direction: column; gap: 15px; padding: 15px; }
    nav ul { gap: 10px; }
    nav a { font-size: 0.8rem; }
    .logo-img { height: 60px; max-width: 220px; }
}

/* --- SEÇÃO HERO --- */
.hero {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    align-items: center;
    min-height: 80vh;
    gap: 30px;
}
.hero-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
}
.hero-content h3 { color: var(--brand-yellow); font-size: 1.5rem; margin: 0; text-shadow: 2px 2px 4px #000; }
.hero-content h1 { font-size: 5rem; line-height: 0.9; margin: 10px 0; text-shadow: 4px 4px 0px #000; }
.hero-content p { font-size: 1.2rem; max-width: 400px; margin-bottom: 30px; text-shadow: 1px 1px 3px #000; }

.btn-pedir-grande {
    background-color: var(--brand-yellow);
    color: #000;
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}
.btn-pedir-grande:hover { background-color: #ffc107; }
.whatsapp-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 4px #000;
    text-decoration: none;
}

.hero-image { flex: 1; text-align: right; position: relative; }
.hero-image img { max-width: 100%; filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)); border-radius: 10px; }

/* --- SEÇÃO DE COMBOS PROMOCIONAIS --- */
.combos-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 20px;
    text-align: center;
}
.combos-section h2 {
    color: var(--brand-yellow);
    text-shadow: 3px 3px 0px #000;
    margin-bottom: 30px;
}
.grid-combos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.combo-card {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.combo-card h3 {
    color: var(--brand-yellow);
    font-size: 1.8rem;
    margin: 0 0 8px;
    text-shadow: 2px 2px 3px #000;
}
.combo-card .item-codigo {
    background-color: #ffffff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    text-shadow: none;
    letter-spacing: 1px;
}
.combo-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 10px;
}
.combo-card .badge {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.combo-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}
.combo-card p {
    font-size: 0.85rem;
    color: #eee;
    line-height: 1.6;
    margin: 0 0 12px;
}
.combo-card .preco {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-yellow);
    margin-bottom: 12px;
}
.btn-combo {
    display: block;
    text-align: center;
    background-color: var(--brand-yellow);
    color: #000;
    font-weight: 800;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-combo:hover { background-color: #ffc107; }

@media (max-width: 960px) {
    .grid-combos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-combos { grid-template-columns: 1fr; }
}

/* --- ÁREA SOBRE NÓS E PÔSTERES --- */
.sobre-section {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 40px;
    align-items: center;
}
.sobre-texto {
    flex: 1;
    background: rgba(0,0,0,0.55);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
}
.sobre-texto h2 { color: var(--brand-yellow); font-size: 2.8rem; text-shadow: 3px 3px 0px #000; }
.sobre-texto p { color: #eee; line-height: 1.7; font-size: 1rem; }

.posters-grid {
    flex: 1.4;
    display: flex;
    gap: 15px;
}
.poster {
    position: relative;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    min-height: 300px;
}
.poster-title {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    color: var(--brand-red);
    font-family: 'Bebas Neue';
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px #000;
    z-index: 2;
}
.poster-img { width: 100%; height: 300px; object-fit: cover; display: block; }

@media (max-width: 960px) {
    .hero, .sobre-section { flex-direction: column; text-align: center; }
    .hero-image { margin-top: 30px; }
    .posters-grid { flex-direction: column; width: 100%; }
}

/* --- FAIXA DE BENEFÍCIOS --- */
.beneficios-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}
.beneficio-item {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 25px 15px;
    border: 1px solid rgba(251,169,25,0.3);
}
.beneficio-icone { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.beneficio-item h4 { margin: 0 0 8px; color: var(--brand-yellow); font-size: 1.1rem; }
.beneficio-item p { margin: 0; font-size: 0.85rem; color: #ccc; }

/* --- CHAMADA FINAL --- */
.chamada-final {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--brand-red);
}
.chamada-final h2 { font-size: 2.8rem; color: #fff; text-shadow: 3px 3px 0px #000; }
.chamada-final p { color: #ccc; margin-top: 10px; }
.chamada-final .whatsapp-text { justify-content: center; font-size: 1.8rem; margin-top: 15px; }
.chamada-final .endereco { color: #ccc; font-size: 0.95rem; margin-top: 10px; }

/* --- PÁGINAS DE CARDÁPIO --- */
.pagina-header {
    text-align: center;
    padding: 60px 20px 30px;
}
.pagina-header h1 {
    font-size: 4rem;
    color: var(--brand-yellow);
    text-shadow: 3px 3px 0px #000;
    margin-bottom: 5px;
}
.pagina-header p { color: #ddd; text-shadow: 1px 1px 3px #000; }

.cardapio-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 80px;
}

.categoria-titulo {
    color: var(--brand-red);
    background: rgba(0,0,0,0.7);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border: 1px solid var(--brand-red);
}

.item-lista {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 18px 25px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-left: 3px solid var(--brand-yellow);
}
.item-info h4 { margin: 0 0 5px; font-size: 1.3rem; color: #fff; }
.item-info p { margin: 0; font-size: 0.9rem; color: #ccc; line-height: 1.4; }
.item-preco {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand-yellow);
    white-space: nowrap;
    text-shadow: 1px 1px 2px #000;
}

.aviso-box {
    background: rgba(138,3,3,0.3);
    border: 1px dashed var(--brand-red);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .item-lista { flex-direction: column; }
    .pagina-header h1 { font-size: 2.8rem; }
}

/* --- RODAPÉ --- */
.rodape-site {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    border-top: 4px solid var(--brand-red);
    padding: 40px 20px 10px;
    margin-top: 40px;
}
.rodape-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    padding-bottom: 20px;
}
.rodape-coluna { flex: 1; min-width: 220px; }
.rodape-coluna p { font-size: 0.9rem; color: #ccc; line-height: 1.6; }
.rodape-copy {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #888;
}

/* --- HISTÓRICO --- */
.historico-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: rgba(0,0,0,0.65);
    border-radius: 15px;
    backdrop-filter: blur(4px);
}
.historico-container h1 {
    text-align: center;
    color: var(--brand-yellow);
    font-size: 3.5rem;
    text-shadow: 3px 3px 0px #000;
}
.historico-container p { line-height: 1.8; font-size: 1.05rem; color: #eee; }
.linha-tempo { margin-top: 40px; border-left: 3px solid var(--brand-red); padding-left: 25px; }
.linha-tempo .ano { color: var(--brand-yellow); font-family: 'Bebas Neue'; font-size: 1.6rem; margin-bottom: 20px; }
.item-codigo {
    display: inline-block;
    background-color: #ffffff;
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 2px 10px;
    border-radius: 5px;
    margin-right: 10px;
    letter-spacing: 1px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}