:root {
    /* Colors - Cinematic & Intense */
    --clr-bg: #050505;
    --clr-bg-surface: #121212;
    --clr-bg-surface-hover: #1e1e1e;
    
    --clr-text: #ffffff;
    --clr-text-muted: #aaaaaa;
    
    --clr-accent: #ff4500; /* Intense fiery orange/red */
    --clr-accent-hover: #d83c00;
    
    --clr-border: #222222;
    
    /* Typography */
    --font-heading: 'Alfa Slab One', cursive;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 8rem; /* Bigger gaps for cinematic pacing */
    
    /* Layout */
    --container-width: 1200px;
    --nav-height: 80px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400; 
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.text-accent { color: var(--clr-accent); }
.text-body { color: var(--clr-text-muted); }
.text-center { text-align: center; }

/* Layout Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--sp-sm);
}

.section { padding-block: var(--sp-xl); }
.bg-darker { background-color: #020202; }

.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.w-full { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-inline: 1.5rem;
    padding-block: 0.8rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-lg {
    padding-inline: 2rem;
    padding-block: 1rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--clr-text);
    color: var(--clr-text);
}

.btn-outline:hover {
    background-color: var(--clr-text);
    color: var(--clr-bg);
}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--clr-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}

.btn-icon:hover {
    transform: scale(1.1);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.logo-dot { color: var(--clr-accent); }

.nav-list {
    display: flex;
    gap: var(--sp-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}
.nav-link:hover { color: var(--clr-accent); }

.mobile-toggle { display: none; color: var(--clr-text); }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2,2,2,0.95) 0%, rgba(2,2,2,0.6) 50%, rgba(2,2,2,0.2) 100%);
}

.hero-content {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: var(--sp-sm);
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e5e5;
    margin-bottom: var(--sp-md);
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--sp-sm);
    flex-wrap: wrap;
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-lg);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.2rem;
}

/* Sensory Section (Chapa/Fogo) */
.sensory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: center;
}

.sensory-text p {
    font-size: 1.15rem;
}

.sensory-bullets p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.sensory-image-wrapper {
    position: relative;
}

.sensory-img {
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.4) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(20px);
}

.shadow-intense {
    box-shadow: 0 20px 50px -10px rgba(255, 69, 0, 0.3), 0 0 20px rgba(0,0,0,1);
}

/* Combos & Promoções */
.combo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    background-color: var(--clr-bg-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    align-items: center;
}

.combo-img-wrapper {
    height: 100%;
}

.combo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-details {
    padding: var(--sp-lg);
}

.badge-promo {
    display: inline-block;
    background-color: #ffb400;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.combo-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.combo-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--sp-md);
}

.combo-price {
    font-size: 2.5rem;
    color: var(--clr-accent);
}

/* Explosão de Sabor (Big Cards) */
.big-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
}

.big-card {
    background-color: var(--clr-bg-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition-normal);
}

.big-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-accent);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
}

.big-card-img {
    height: 350px;
    overflow: hidden;
}

.big-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.big-card:hover .big-card-img img {
    transform: scale(1.08);
}

.big-card-content {
    padding: var(--sp-md);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-ingredients {
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--clr-border);
    padding-top: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-text);
}

/* Adicionais & Molhos */
.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: center;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--clr-text);
}

.addons-img {
    border-radius: 12px;
}

/* Cardápio & Sobremesa */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
}

.category-title {
    font-size: 2rem;
    margin-bottom: var(--sp-md);
    border-bottom: 2px solid var(--clr-accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed var(--clr-border);
    padding-bottom: 0.25rem;
}

.menu-item-title {
    font-size: 1.25rem;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-accent);
}

.dessert-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    background-color: var(--clr-bg-surface);
    border-radius: 12px;
    overflow: hidden;
    align-items: center;
    border: 1px solid var(--clr-border);
}

.dessert-text {
    padding: var(--sp-lg);
}

.dessert-price {
    color: var(--clr-accent);
    display: block;
    margin-top: 1rem;
}

.dessert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

/* Depoimentos */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
}

.testimonial-card {
    background-color: var(--clr-bg-surface);
    padding: var(--sp-md);
    border-radius: 8px;
    border: left 4px solid var(--clr-accent);
}

.stars { color: #fbbf24; display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.star-icon { width: 18px; height: 18px; fill: #fbbf24; }

.testimonial-text { font-style: italic; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-author { font-family: var(--font-heading); color: var(--clr-accent); }

/* Footer */
.footer {
    background-color: #000;
    padding-block: var(--sp-md);
    border-top: 1px solid var(--clr-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-links { display: flex; gap: 1rem; }
.social-links a { color: #fff; transition: color var(--transition-fast); }
.social-links a:hover { color: var(--clr-accent); }

/* Mobile FAB */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 99;
    align-items: center;
    justify-content: center;
}

.mobile-fab i {
    width: 28px;
    height: 28px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 200ms; }

/* Responsive */
@media (max-width: 992px) {
    .sensory-grid, .combo-showcase, .big-cards-grid, .addons-grid, .menu-grid, .dessert-showcase, .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .hero-title { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    :root {
        --sp-xl: 4rem;
        --sp-lg: 2.5rem;
    }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: var(--sp-lg) var(--sp-md);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-bottom: 2px solid var(--clr-accent);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--sp-md);
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .mobile-toggle { 
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: var(--clr-text);
        border-radius: 8px;
        background-color: rgba(255,255,255,0.05);
        transition: background-color var(--transition-fast);
    }
    
    .mobile-toggle:active {
        background-color: rgba(255,255,255,0.1);
    }
    
    .hero {
        align-items: center; /* Center vertically on mobile too since it's centered horizontally now */
        padding-top: var(--nav-height);
    }

    .hero-title { font-size: 3.5rem; }
    .hero-overlay { background: linear-gradient(to right, rgba(2,2,2,0.9) 0%, rgba(2,2,2,0.8) 100%); }
    
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    
    .combo-details, .dessert-text { padding: var(--sp-md); }
    .combo-title { font-size: 2rem; }
    
    .addons-grid { flex-direction: column-reverse; display: flex; }
    
    .mobile-fab { display: flex; }
    .footer { padding-bottom: 100px; }
}
