:root {
    --bg-color: #111111;
    --card-bg: #1a1a1a;
    --text-color: #f5f5f5;
    --accent-color: #ffbb00; /* Amarelo Mostarda */
    --font-title: 'Bebas Neue', cursive;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Nav */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    border-bottom: 2px solid var(--accent-color);
    z-index: 1000;
}

.logo {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.highlight { color: var(--accent-color); }

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--accent-color); }

.btn-pedir {
    background: var(--accent-color);
    color: #000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content { max-width: 600px; }
.hero h2 { color: var(--accent-color); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.hero h1 {
    font-family: var(--font-title);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    transition: 0.3s;
}
.cta-button:hover { transform: scale(1.05); background: #fff; }

/* Menu Section */
.menu-section { padding: 5rem 5%; }
.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid #333;
    transition: 0.3s;
}
.card:hover { border-color: var(--accent-color); transform: translateY(-5px); }

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-info { padding: 1.5rem; }
.card h3 { font-family: var(--font-title); font-size: 1.8rem; margin-bottom: 0.5rem; }
.price {
    display: block;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.4rem;
}

/* Footer */
footer {
    background: #000;
    text-align: center;
    padding: 4rem 0;
    border-top: 5px solid var(--accent-color);
}
.footer-logo { font-family: var(--font-title); font-size: 2rem; margin-bottom: 1rem; color: #555; }
.socials a { color: var(--accent-color); margin: 0 10px; text-decoration: none; font-weight: bold; }

/* Mobile */
.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--text-color); margin: 6px; }

@media (max-width: 768px) {
    .nav-links {
        position: absolute; right: 0; height: 92vh; top: 8vh;
        background: var(--bg-color); flex-direction: column;
        align-items: center; justify-content: center; width: 100%;
        transform: translateX(100%); transition: 0.3s;
    }
    .nav-active { transform: translateX(0%); }
    .hamburger { display: block; }
    .hero h1 { font-size: 3.5rem; }
}