/* ==========================================================================
   VARIÁVEIS GERAIS (UNIFICADAS)
   ========================================================================== */
:root {
    /* Cores Globais */
    --primary-color: #f17f04;
    --secondary-color: #af4e3b;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --bg-dark: #1a1a1a;
    --bg-darker: #111111;
    --bg-light: #222222;
    --accent: var(--primary-color, #f17f04);

    /* Espaçamentos e Raios de Borda */
    --contact-padding: 5rem;
    --home-spacing: 5rem;
    --about-spacing: 5rem;
    --radius-lg: 20px;
    --radius-md: 10px;
    --home-radius: 15px;
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ==========================================================================
   COMPONENTES BASE (Preloader, Botões, Topbar)
   ========================================================================== */
/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-darker); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 50px; height: 50px;
    border: 5px solid rgba(241, 127, 4, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Botões Globais */
.btn {
    display: inline-block; padding: 12px 25px; border-radius: 30px;
    text-decoration: none; font-weight: bold; font-size: 1.1rem;
    transition: all 0.3s ease; margin: 10px; cursor: pointer;
}
.btn-primary {
    background-color: var(--primary-color); color: var(--text-light); border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: transparent; color: var(--primary-color); transform: translateY(-3px);
}
.btn-ifood {
    background-color: #ea1d2c; color: white; border: 2px solid #ea1d2c;
}
.btn-ifood:hover {
    background-color: transparent; color: #ea1d2c; transform: translateY(-3px);
}

/* Topbar */
.topbar {
    background-color: var(--bg-dark); padding: 5px 5%;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: #aaa; border-bottom: 1px solid #333;
}
.topbar-right span { margin-left: 15px; }

/* ==========================================================================
   HEADER E NAVEGAÇÃO
   ========================================================================== */
header {
    background-color: var(--bg-darker);
    border-bottom: 3px solid var(--primary-color);
    padding: 1rem 5%;
    transition: all 0.3s ease;
    position: sticky; top: 0; z-index: 1000;
}
header.sticky-active {
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(5px);
}
.header-container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
header h1 {
    font-size: 1.5rem; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px;
}

/* Logo e Marca */
.brand-logo {
    display: flex; align-items: center; gap: 15px; text-decoration: none;
}
.logo-img {
    width: 90px; height: 90px; border-radius: 50%; transition: transform 0.3s;
}
.brand-logo:hover .logo-img { transform: scale(1.05); }
.brand-text {
    color: var(--primary-color); font-size: 1.3rem; font-weight: bold; text-transform: uppercase; line-height: 1.1;
}
.brand-text small {
    display: block; font-size: 0.7rem; color: #fff; letter-spacing: 1px;
}

/* Navegação Desktop */
.nav-links {
    list-style: none; display: flex; gap: 20px; align-items: center;
}
.nav-links a {
    color: var(--text-light); text-decoration: none; font-weight: bold; transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary-color); }

/* Menu Mobile Toggle */
.mobile-menu-btn { display: none; font-size: 1.8rem; color: var(--primary-color); cursor: pointer; background: none; border: none; }
.mobile-drawer {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background-color: var(--bg-darker); z-index: 2000;
    padding: 2rem; box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    transition: right 0.4s ease; display: flex; flex-direction: column;
}
.mobile-drawer.active { right: 0; }
.close-drawer { align-self: flex-end; font-size: 2rem; color: #fff; cursor: pointer; border: none; background: none; }
.drawer-links { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 20px; }
.drawer-links a { color: #fff; text-decoration: none; font-size: 1.2rem; font-weight: bold; }
.drawer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 1999; display: none;
}
.drawer-overlay.active { display: block; }

/* ==========================================================================
   ELEMENTOS FLUTUANTES E LGPD
   ========================================================================== */
.floating-wa {
    position: fixed; bottom: 30px; left: 30px; background-color: #25D366;
    color: white; width: 60px; height: 60px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 900; transition: all 0.3s;
    text-decoration: none; animation: pulse 2s infinite;
}
.floating-wa:hover { background-color: #128C7E; color: white; transform: scale(1.1); }
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; background-color: var(--primary-color);
    color: white; width: 50px; height: 50px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 900; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all 0.3s; border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--secondary-color); transform: translateY(-5px); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background-color: var(--bg-darker); color: #fff; padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5); z-index: 9999; transition: bottom 0.5s ease;
    border-top: 2px solid var(--primary-color); flex-wrap: wrap; gap: 15px;
}
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; max-width: 800px; }
.cookie-btn { background: var(--primary-color); border: none; padding: 10px 25px; color: white; font-weight: bold; border-radius: 5px; cursor: pointer; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.mega-footer {
    background-color: var(--bg-darker); padding: 4rem 5% 1rem; border-top: 4px solid var(--primary-color); margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col ul { color: #ccc; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; text-align: center; color: #888; font-size: 0.9rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom strong { color: var(--primary-color); }
.social-links { margin: 1.5rem 0; display: flex; gap: 15px; }
.social-links a { color: var(--text-light); font-size: 1.5rem; transition: color 0.3s ease; }
.social-links a:hover { color: var(--primary-color); }

/* ==========================================================================
   ESTILOS DE PÁGINAS GERAIS E CARDÁPIO (Padrões Antigos de style.css)
   ========================================================================== */
.hero {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 6rem 5%; min-height: 65vh; border-bottom: 4px solid var(--secondary-color);
}
.hero h2 { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; text-shadow: 2px 2px 5px rgba(0,0,0,0.9); }
.hero p { font-size: 1.3rem; max-width: 800px; margin-bottom: 1rem; text-shadow: 1px 1px 4px rgba(0,0,0,0.9); }
.page-header { text-align: center; padding: 4rem 5% 2rem; background-color: var(--primary-color); color: white; }
.page-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }

.highlights { padding: 4rem 5%; background-color: var(--bg-dark); }
.info-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
    background-color: var(--bg-darker); border-radius: 12px; padding: 3rem 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); border-bottom: 3px solid var(--primary-color);
}
.info-card { text-align: center; padding: 1rem; }
.info-card > div > i:first-child { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; display: block; }
.info-card p i { font-size: 1rem; color: var(--primary-color); margin-bottom: 0; vertical-align: middle; }
.info-card h3 { margin-bottom: 1rem; color: var(--primary-color); font-size: 1.6rem; }
.info-card p { font-size: 1.1rem; color: #ddd; }

.home-gallery { padding: 4rem 5%; background-color: var(--bg-darker); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.gallery-img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer; }
.gallery-img:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(241, 127, 4, 0.4); z-index: 2; position: relative; }

.social-proof { padding: 5rem 5%; text-align: center; background: linear-gradient(var(--bg-dark), var(--bg-darker)); }
.reviews-container { max-width: 800px; margin: 0 auto; padding: 3rem; background-color: rgba(255,255,255,0.05); border-radius: 15px; border: 1px solid #333; }
.reviews-container h2 { font-size: 2rem; margin-bottom: 1rem; color: #fff; }
.stars { color: #f1c40f; font-size: 1.5rem; margin-bottom: 1rem; }
.reviews-container p { font-size: 1.3rem; font-style: italic; color: #ccc; margin-top: 1.5rem; }

.about-content { padding: 5rem 5%; display: flex; justify-content: center; }
.about-container { max-width: 900px; background-color: var(--bg-darker); padding: 3rem; border-radius: 15px; border-left: 5px solid var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.about-text p { font-size: 1.2rem; line-height: 1.8; color: #ddd; }

.contact-details { padding: 4rem 5%; }
.hours-list { list-style: none; width: 100%; text-align: left;}
.hours-list li { margin-bottom: 0.8rem; border-bottom: 1px solid #333; padding-bottom: 0.5rem; display: flex; justify-content: space-between; }
.hours-list span { color: var(--primary-color); font-weight: bold; }

/* ==========================================================================
   PÁGINA: HOME / INDEX
   ========================================================================== */
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.section-title p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.section-padding { padding: var(--home-spacing) 5%; }
.bg-light-dark { background-color: var(--light-bg); }
.bg-dark-dark { background-color: var(--bg-darker); }

.home-hero {
    position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(17,17,17,1)), url('https://lh3.googleusercontent.com/d/1-W-X-O880jGg9Px7DCit2hTPrEERuDQC') center/cover no-repeat fixed;
}
.home-hero-content { max-width: 900px; z-index: 2; padding: 0 20px; animation: fadeIn 1.5s ease-out; }
.home-hero h1 { font-size: 4.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; text-shadow: 2px 4px 10px rgba(0,0,0,0.8); }
.home-hero h1 span { color: var(--accent); }
.home-hero p { font-size: 1.5rem; margin-bottom: 2.5rem; text-shadow: 1px 2px 5px rgba(0,0,0,0.8); color: #e0e0e0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.features-strip {
    background-color: var(--accent); padding: 2rem 5%; display: flex; justify-content: space-around; flex-wrap: wrap;
    gap: 2rem; position: relative; z-index: 10; margin-top: -30px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.feature-item { display: flex; align-items: center; gap: 15px; color: #fff; }
.feature-item i { font-size: 2.5rem; }
.feature-item div h4 { font-size: 1.2rem; margin-bottom: 3px; }
.feature-item div p { font-size: 0.9rem; opacity: 0.9; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-section.reverse { grid-template-columns: 1fr 1fr; }
.split-image { position: relative; }
.split-image img { width: 100%; border-radius: var(--home-radius); box-shadow: 0 15px 35px rgba(0,0,0,0.5); object-fit: cover; height: 500px; transition: transform 0.4s ease; }
.split-image img:hover { transform: translateY(-10px); }
.split-image::before {
    content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%;
    border: 3px solid var(--accent); border-radius: var(--home-radius); z-index: -1; transition: all 0.4s ease;
}
.split-section.reverse .split-image::before { left: auto; right: -20px; }
.split-text h3 { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; }
.split-text p { font-size: 1.1rem; margin-bottom: 1.5rem; color: #ddd; line-height: 1.8; }
.split-text ul { list-style: none; margin-bottom: 2rem; }
.split-text ul li { font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.split-text ul li i { color: var(--accent); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.menu-card {
    background-color: var(--bg-darker); border: 1px solid #333; border-radius: var(--home-radius);
    padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.menu-card:hover { border-color: var(--accent); box-shadow: 0 10px 25px rgba(241, 127, 4, 0.15); transform: translateY(-5px); }
.menu-card-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; }
.menu-card h4 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.menu-card p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; }
.badge-tag { display: inline-block; background-color: rgba(241, 127, 4, 0.2); color: var(--accent); padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-right: 5px; margin-bottom: 10px; }

.mini-gallery-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; max-width: 1000px; margin: 0 auto; }
.mini-gallery-item { overflow: hidden; border-radius: var(--home-radius); position: relative; aspect-ratio: 16/9; }
.mini-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mini-gallery-item:hover img { transform: scale(1.1); }
.mini-gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; padding: 20px;
}
.mini-gallery-item:hover .mini-gallery-overlay { opacity: 1; }
.mini-gallery-overlay span { color: #fff; font-weight: bold; font-size: 1.2rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card { background-color: var(--bg-light); padding: 2.5rem 2rem; border-radius: var(--home-radius); position: relative; border-top: 4px solid var(--accent); }
.quote-icon { position: absolute; top: 20px; right: 20px; font-size: 3rem; color: rgba(255,255,255,0.05); }
.stars-rating { color: #f1c40f; margin-bottom: 15px; font-size: 1.2rem; }
.testimonial-text { font-size: 1.1rem; font-style: italic; color: #ddd; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; background-color: var(--accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; font-weight: bold; font-size: 1.2rem; }
.author-info h5 { color: #fff; font-size: 1.1rem; }
.author-info span { color: var(--text-muted); font-size: 0.9rem; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--bg-light); margin-bottom: 15px; border-radius: 8px; overflow: hidden; border-left: 3px solid transparent; transition: all 0.3s; }
.faq-item:hover { border-left-color: var(--accent); }
.faq-question {
    width: 100%; text-align: left; padding: 20px; background: none; border: none; color: #fff;
    font-size: 1.2rem; font-weight: bold; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-question i { color: var(--accent); transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background-color: rgba(0,0,0,0.2); }
.faq-answer-inner { padding: 0 20px 20px 20px; color: var(--text-muted); line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.bottom-cta {
    background: linear-gradient(45deg, var(--accent), var(--secondary-color)); padding: 5rem 5%; text-align: center;
    border-radius: var(--home-radius); margin: var(--home-spacing) 5%; box-shadow: 0 15px 40px rgba(241, 127, 4, 0.4);
}
.bottom-cta h2 { color: #fff; font-size: 2.8rem; margin-bottom: 1.5rem; }
.bottom-cta p { color: #ffe6cc; font-size: 1.3rem; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.bottom-cta .btn { background-color: #fff; color: var(--accent); padding: 15px 40px; font-size: 1.2rem; border: none; }
.bottom-cta .btn:hover { background-color: var(--bg-darker); color: #fff; }

/* ==========================================================================
   PÁGINA: CONTATO
   ========================================================================== */
.contact-hero {
    position: relative; padding: 8rem 5% 5rem; text-align: center; border-bottom: 3px solid var(--accent);
    background: linear-gradient(rgba(17,17,17,0.85), rgba(17,17,17,0.95)), url('https://lh3.googleusercontent.com/d/1Yb44bGEoI_iSKUci6Rd2kdbtmz3SJz1E') center/cover no-repeat;
}
.contact-hero h1 { font-size: 3.5rem; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.contact-hero p { font-size: 1.2rem; color: #ddd; max-width: 700px; margin: 0 auto; }

.contact-info-section { padding: 0 5% var(--contact-padding); background-color: transparent; }
.contact-info-section .info-grid { transform: translateY(-40px); margin: 0 auto; max-width: 1200px; border-top: 4px solid var(--accent); border-bottom: none; }
.contact-info-section .info-card { display: flex; flex-direction: column; justify-content: space-between; align-items: center; border-top: none; }
.contact-info-section .info-card h3 { color: #fff; }
.contact-info-section .hours-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }

    .btn-contact {
        display: inline-flex; align-items: center; justify-content: center; gap: 10px; background-color: var(--accent);
        color: #fff; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold;
        font-size: 1.1rem; transition: all 0.3s ease; border: 2px solid var(--accent); margin-top: 1.5rem; cursor: pointer;
    }
    .btn-contact i { font-size: 1.1rem; color: inherit; margin-bottom: 0; display: inline; }
    .btn-contact:hover { background-color: transparent; color: var(--accent); }

.map-only-section { max-width: 1200px; margin: 0 auto var(--contact-padding); padding: 0 5%; }
.map-container { width: 100%; height: 500px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(15%) contrast(110%); }

.location-faq { max-width: 1200px; margin: 0 auto var(--contact-padding); padding: 0 5%; }
.location-faq h3 { text-align: center; font-size: 2rem; color: var(--accent); margin-bottom: 2rem; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.faq-box { background-color: var(--bg-light); padding: 2rem; border-radius: var(--radius-md); border-left: 4px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.faq-box h4 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.faq-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   PÁGINA: SOBRE NÓS
   ========================================================================== */
.about-hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-light) 100%); padding: 6rem 5% 4rem;
    text-align: center; border-bottom: 3px solid var(--accent);
}
.about-hero h1 { font-size: 3.5rem; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.about-hero p { font-size: 1.3rem; color: #ddd; max-width: 800px; margin: 0 auto; line-height: 1.8; }

.history-section { padding: var(--about-spacing) 5%; background-color: var(--bg-darker); }
.history-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.history-content h2 { font-size: 2.5rem; color: #fff; margin-bottom: 1.5rem; }
.history-content h2 span { color: var(--accent); }
.history-content p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.history-image { position: relative; }
.history-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 15px 30px rgba(0,0,0,0.6); object-fit: cover; height: 500px; }
.history-image::after {
    content: ''; position: absolute; bottom: -20px; right: -20px; width: 60%; height: 60%;
    border: 4px solid var(--accent); border-radius: var(--radius-lg); z-index: -1;
}

.values-section { padding: var(--about-spacing) 5%; background-color: var(--bg-light); }
.section-heading { text-align: center; margin-bottom: 4rem; }
.section-heading h2 { font-size: 2.8rem; color: var(--accent); margin-bottom: 1rem; }
.section-heading p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.value-card { background-color: var(--bg-darker); padding: 2.5rem; border-radius: var(--radius-md); text-align: center; border-top: 4px solid transparent; transition: all 0.3s ease; }
.value-card:hover { border-top-color: var(--accent); transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.value-icon { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; }
.value-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.value-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.chef-section { padding: var(--about-spacing) 5%; background-color: var(--bg-darker); }
.chef-container {
    background: linear-gradient(rgba(17,17,17,0.9), rgba(17,17,17,0.9)), url('https://lh3.googleusercontent.com/d/1-W-X-O880jGg9Px7DCit2hTPrEERuDQC') center/cover fixed;
    border-radius: var(--radius-lg); padding: 4rem; text-align: center; max-width: 1000px; margin: 0 auto;
    border: 1px solid #333; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.chef-container i { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; }
.chef-container h2 { font-size: 2.5rem; color: #fff; margin-bottom: 1.5rem; }
.chef-container p { font-size: 1.2rem; color: #ddd; line-height: 1.8; margin-bottom: 1.5rem; }

.space-section { padding: var(--about-spacing) 5%; background-color: var(--bg-light); }
.space-container { display: flex; flex-wrap: wrap; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; background-color: var(--bg-darker); border-radius: var(--radius-lg); padding: 3rem; border-left: 5px solid var(--accent); }
.space-text { flex: 1; min-width: 300px; }
.space-text h2 { font-size: 2.3rem; color: #fff; margin-bottom: 1.5rem; }
.space-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.space-features { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 15px; }
.space-feature-item { background-color: rgba(255,255,255,0.03); padding: 15px 20px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 15px; }
.space-feature-item i { font-size: 1.5rem; color: var(--accent); }
.space-feature-item span { color: #fff; font-size: 1.1rem; font-weight: bold; }

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE GERAL)
   ========================================================================== */
@media (max-width: 992px) {
    .split-section, .split-section.reverse { grid-template-columns: 1fr; gap: 2rem; }
    .split-section.reverse .split-image { order: -1; }
    .home-hero h1 { font-size: 3.2rem; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .topbar { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    .history-container { grid-template-columns: 1fr; }
    .history-image::after { display: none; }
    .chef-container { padding: 3rem 1.5rem; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .hero h2 { font-size: 2.2rem; }
    .nav-links { flex-direction: column; gap: 10px; text-align: center; }
    .hours-list li { flex-direction: column; align-items: center; text-align: center; gap: 2px;}
    .gallery-img { height: 220px; }

    .home-hero h1 { font-size: 2.5rem; }
    .home-hero p { font-size: 1.1rem; }
    .features-strip { flex-direction: column; align-items: flex-start; }
    .mini-gallery-container { grid-template-columns: 1fr; }
    .bottom-cta h2 { font-size: 2rem; }
    .bottom-cta { margin: 2rem 5%; padding: 3rem 5%; }
    .split-image img { height: 350px; }

    .contact-hero h1 { font-size: 2.5rem; }
    .contact-info-section .info-grid { transform: translateY(-20px); }
    .map-container { height: 350px; }
}