/* ===== CSS: ESTILIZAÇÃO DO SITE ===== */
:root {
    --cor-primaria: #ff4500;
    --cor-secundaria: #333;
    --cor-fundo: #f8f9fa;
    --cor-texto: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
}

/* Cabeçalho */
header {
    background-color: var(--cor-secundaria);
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    color: var(--cor-primaria);
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--cor-primaria);
}

/* Banner Hero */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550547660-d9450f859349?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn-pedido {
    background-color: var(--cor-primaria);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-pedido:hover {
    background-color: #e03e00;
}

/* Seções Gerais */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    color: var(--cor-secundaria);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.bg-cinza {
    background-color: #e9ecef;
}

/* Cardápio */
.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.item-cardapio {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.item-cardapio:hover {
    transform: translateY(-5px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.item-nome {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--cor-secundaria);
}

.item-preco {
    color: var(--cor-primaria);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contato e Endereço */
.info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-box {
    flex: 1;
    min-width: 250px;
}

.info-box h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--cor-secundaria);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .hero h2 {
        font-size: 2rem;
    }
}


