/* =========================================
   BASE E GLOBAIS (De base.html)
   ========================================= */
:root {
    /* Paleta de Cores Principal */
    --cor-primaria: #f4b901; /* Amarelo principal */
    --cor-secundaria: #1d7b2e; /* Verde principal */

    /* Cores de Fundo / Textos */
    --bg-escuro: #010202; /* Preto/Quase Preto */
    --bg-claro: #ffffff; /* Branco */
    --destaque-amarelo: #feb916; /* Amarelo para fundos/hover */
    --destaque-verde: #037435; /* Verde escuro alternativo */
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-claro);
    color: var(--bg-escuro);
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o rodapé fique no fundo */
}

/* NAVBAR (CABEÇALHO) */
.navbar-custom {
    background-color: var(--bg-escuro);
}

.navbar-custom .navbar-brand {
    color: var(--cor-primaria);
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-custom .navbar-brand:hover {
    color: var(--destaque-amarelo);
}

.navbar-custom .navbar-brand img {
    height: 60px;
    margin-right: 15px;
    border: 2px solid var(--cor-primaria);
    border-radius: 5px;
}

.navbar-custom .nav-link {
    color: #ffffff !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--cor-primaria) !important;
}

/* Menu Mobile Toggle Icon Color */
.navbar-toggler {
    border-color: var(--cor-primaria);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(244, 185, 1, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CONTEÚDO PRINCIPAL */
main {
    flex: 1; /* Preenche o espaço entre o header e o footer */
}

/* FOOTER (RODAPÉ) GIGANTE E INFORMATIVO */
footer {
    background-color: var(--bg-escuro);
    color: var(--bg-claro);
    border-top: 6px solid var(--destaque-verde);
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-heading {
    color: var(--cor-primaria);
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-icon {
    color: var(--destaque-amarelo);
    width: 25px;
    text-align: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 15px;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--cor-primaria);
    text-decoration: none;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--cor-secundaria);
    color: var(--bg-claro);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--destaque-amarelo);
    color: var(--bg-escuro);
    transform: translateY(-3px);
}

.copyright-area {
    background-color: #000000;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* BADGES / DESTAQUES */
.badge-custom {
    background-color: var(--cor-secundaria);
    color: var(--bg-claro);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

/* BOTÕES GLOBAIS PADRONIZADOS */
.btn-principal {
    background-color: var(--cor-primaria);
    color: var(--bg-escuro);
    font-weight: bold;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-principal:hover {
    background-color: var(--destaque-amarelo);
    color: var(--bg-escuro);
    transform: scale(1.05);
}

.btn-secundario {
    background-color: var(--cor-secundaria);
    color: var(--bg-claro);
    font-weight: bold;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    background-color: var(--destaque-verde);
    color: var(--bg-claro);
}

/* =========================================
   ESTILOS ORIGINAIS (HOME, SOBRE, ANIVERSARIOS, CONTATO)
   ========================================= */

.hero-section {
    background: linear-gradient(rgba(1, 2, 2, 0.7), rgba(1, 2, 2, 0.8)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    color: var(--bg-claro);
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cor-primaria);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    padding: 80px 0;
    background-color: var(--bg-claro);
}

.feature-card {
    background-color: var(--bg-claro);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon-wrapper {
    background-color: var(--bg-escuro);
    color: var(--cor-primaria);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: -40px auto 20px;
    border: 4px solid var(--bg-claro);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--cor-primaria);
    color: var(--bg-escuro);
}

.feature-card .card-body {
    padding: 30px;
    text-align: center;
}

.feature-card .card-title {
    color: var(--cor-secundaria);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.about-section {
    background-color: var(--bg-escuro);
    color: var(--bg-claro);
    padding: 80px 0;
    border-top: 5px solid var(--cor-primaria);
    border-bottom: 5px solid var(--cor-primaria);
}

.about-heading {
    color: var(--cor-primaria);
    font-weight: 800;
    text-transform: uppercase;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--cor-secundaria);
    color: var(--bg-claro);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.cta-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    color: var(--bg-escuro);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--cor-secundaria);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-sobre {
    background: linear-gradient(rgba(1, 2, 2, 0.8), rgba(1, 2, 2, 0.9)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: var(--bg-claro);
}

.historia-section {
    padding: 80px 0;
    background-color: var(--bg-claro);
}

.historia-img {
    border-radius: 15px;
    box-shadow: 10px 10px 0px var(--cor-secundaria);
    margin-bottom: 30px;
}

.valores-box {
    background-color: var(--bg-escuro);
    color: var(--bg-claro);
    padding: 40px;
    border-radius: 15px;
    border-bottom: 5px solid var(--cor-primaria);
    height: 100%;
    transition: transform 0.3s ease;
}

.valores-box:hover {
    transform: translateY(-5px);
}

.valores-icon {
    color: var(--cor-primaria);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-eventos {
    background: linear-gradient(rgba(29, 123, 46, 0.8), rgba(1, 2, 2, 0.9)), url('https://images.unsplash.com/photo-1530103862676-de8892795f5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: var(--bg-claro);
}

.pacote-card {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    background: var(--bg-claro);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pacote-card:hover {
    border-color: var(--cor-primaria);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.pacote-destaque {
    background-color: var(--bg-escuro);
    color: var(--bg-claro);
    border-color: var(--bg-escuro);
}

.pacote-destaque:hover {
    border-color: var(--cor-primaria);
}

.pacote-icon {
    font-size: 3.5rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.badge-top {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--cor-primaria);
    color: var(--bg-escuro);
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.contato-header {
    background-color: var(--bg-escuro);
    padding: 60px 0;
    border-bottom: 4px solid var(--cor-primaria);
}

.contact-info-card {
    background: var(--bg-claro);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--cor-secundaria);
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--cor-primaria);
    background: var(--bg-escuro);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fcfcfc;
}

.form-control:focus, .form-select:focus {
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 0.25rem rgba(29, 123, 46, 0.25);
}

/* =========================================
   ESTILOS EXTRAÍDOS (BASE HTML)
   ========================================= */

.skip-to-content {
    position: absolute; top: -50px; left: 0;
    background: var(--cor-primaria, #f4b901);
    color: #000; padding: 8px; z-index: 10000; transition: top 0.3s;
}
.skip-to-content:focus { top: 0; }

#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-escuro, #010202); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; transition: opacity 0.5s ease;
}
.preloader-logo-wrapper {
    position: relative; width: 90px; height: 90px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.preloader-logo-wrapper img {
    width: 76px; height: 76px; border-radius: 50%; object-fit: cover; z-index: 2;
}
.spinner-feijuca {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 4px solid rgba(244, 185, 1, 0.15);
    border-top-color: var(--cor-primaria, #f4b901);
    border-bottom-color: var(--cor-primaria, #f4b901);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
    z-index: 1;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

#navbarDesktop .nav-link {
    font-size: 0.85rem; padding-left: 0.75rem !important; padding-right: 0.75rem !important;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-reserva-menor {
    font-size: 0.85rem; padding: 0.5rem 1.2rem; text-transform: uppercase; letter-spacing: 0.5px;
}

.floating-whatsapp {
    position: fixed; bottom: 30px; left: 30px; width: 55px; height: 55px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff; border-radius: 50%; text-align: center; font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s ease;
    animation: pulse-whatsapp-modern 2.5s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-3px); color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-whatsapp-modern {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px;
    background-color: var(--cor-secundaria, #1d7b2e); color: white; border-radius: 8px;
    display: none; align-items: center; justify-content: center; font-size: 18px;
    z-index: 999; cursor: pointer; box-shadow: 0 4px 8px rgba(0,0,0,0.2); transition: all 0.3s;
}
.back-to-top:hover {
    background-color: var(--cor-primaria, #f4b901); color: #000; transform: translateY(-3px);
}

#cookie-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 900px; background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 20px 25px; border-radius: 16px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1); z-index: 1050; display: none;
    align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; color: #f1f1f1;
}
#cookie-banner p, #cookie-banner div { margin: 0; font-size: 0.9rem; line-height: 1.5; }
#cookie-banner .cookie-text { flex: 1; min-width: 250px; }

.top-bar { background-color: #0b3d17; color: #ccc; font-size: 0.85rem; padding: 5px 0; }
.top-bar a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.top-bar a:hover { color: var(--cor-primaria); }

/* =========================================
   ESTILOS EXTRAÍDOS (INDEX HTML)
   ========================================= */

.hero-carousel { height: 95vh; min-height: 750px; position: relative; }
.hero-carousel .carousel-inner, .hero-carousel .carousel-item { height: 100%; }
.slide-bg { height: 100%; background-size: cover; background-position: center; position: relative; }
.slide-bg::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(1,2,2,0.9) 0%, rgba(1,2,2,0.4) 100%);
}
.carousel-caption { top: 45%; transform: translateY(-50%); bottom: initial; text-align: left; left: 12%; right: 12%; }
.carousel-control-prev, .carousel-control-next { width: 8%; }
.hero-carousel .carousel-indicators { bottom: 80px; z-index: 15; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.4rem; font-weight: 300; color: #eee; margin-bottom: 40px; max-width: 600px; }
.hero-highlight { color: var(--cor-primaria); }

.features-wrapper { margin-top: -60px; position: relative; z-index: 10; }
.feature-box { background: #fff; border-radius: 12px; padding: 30px 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.4s ease, box-shadow 0.4s ease; height: 100%; border-bottom: 4px solid transparent; }
.feature-box:hover { transform: translateY(-10px); border-bottom-color: var(--cor-primaria); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.feature-icon { width: 70px; height: 70px; background: var(--bg-escuro); color: var(--cor-primaria); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; transition: background 0.3s; }
.feature-box:hover .feature-icon { background: var(--cor-primaria); color: var(--bg-escuro); }

.about-image-wrapper { position: relative; padding-bottom: 40px; }
.img-main { border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); width: 85%; }
.img-overlap { position: absolute; bottom: 0; right: 0; width: 55%; border: 10px solid #fff; border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.menu-tabs-section { background-color: var(--bg-escuro); color: #fff; padding: 100px 0; }
.menu-tabs-section .section-title { color: #fff; }
.nav-pills-custom .nav-link { color: #fff; font-weight: bold; font-size: 1.2rem; border-radius: 30px; padding: 12px 30px; margin: 0 10px; border: 2px solid transparent; }
.nav-pills-custom .nav-link.active { background-color: var(--cor-primaria); color: var(--bg-escuro); }
.nav-pills-custom .nav-link:hover:not(.active) { border-color: var(--cor-primaria); color: var(--cor-primaria); }
.menu-preview-item { display: flex; align-items: center; border-bottom: 1px dashed rgba(255,255,255,0.2); padding: 20px 0; }
.menu-item-price { font-size: 1.3rem; font-weight: bold; color: var(--cor-primaria); white-space: nowrap; }

.parallax-section { background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); background-attachment: fixed; background-position: center; background-size: cover; padding: 120px 0; position: relative; text-align: center; }
.parallax-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(29, 123, 46, 0.85); }
.parallax-content { position: relative; z-index: 2; color: #fff; }

.gallery-item { overflow: hidden; border-radius: 12px; margin-bottom: 24px; position: relative; cursor: pointer; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s ease; }
.gallery-overlay i { color: #fff; font-size: 2rem; transform: scale(0); transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.testimonial-card { background: #fcfcfc; border: 1px solid #eee; border-radius: 15px; padding: 40px 30px; text-align: center; position: relative; height: 100%; }
.quote-icon { position: absolute; top: 20px; left: 20px; font-size: 3rem; color: rgba(244, 185, 1, 0.2); z-index: 0; }
.stars { color: #f4b901; margin-bottom: 15px; }

.accordion-button { font-weight: bold; color: var(--bg-escuro); }
.accordion-button:not(.collapsed) { background-color: rgba(244, 185, 1, 0.1); color: var(--bg-escuro); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,0.1); }

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-carousel { min-height: 650px; height: 85vh; }
    .carousel-caption { left: 8%; right: 8%; top: 40%; }
    .img-overlap { width: 70%; }
    .nav-pills-custom .nav-link { padding: 10px 15px; font-size: 1rem; margin-bottom: 10px; }
    .hero-carousel .carousel-indicators { bottom: 30px; }
}

/* =========================================
   ESTILOS EXTRAÍDOS (CARDAPIO HTML)
   ========================================= */

header .sticky-top { position: relative !important; top: auto !important; z-index: 1000; }
.menu-nav-wrapper { position: sticky; top: 15px; z-index: 1050; display: flex; justify-content: center; padding: 0 10px; margin-top: 15px; margin-bottom: -35px; }
.menu-nav-pill { width: fit-content; max-width: 95%; background: rgba(15, 15, 15, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 50px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15); padding: 8px 15px; transition: all 0.3s ease; }
.menu-nav-scroll { display: flex; overflow-x: auto; white-space: nowrap; gap: 12px; padding: 8px 5px; align-items: center; scrollbar-width: none; }
.menu-nav-scroll::-webkit-scrollbar { display: none; }
.menu-category-btn { background: rgba(255, 255, 255, 0.08); color: #f1f1f1; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px; padding: 10px 24px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; flex-shrink: 0; }
.menu-category-btn:hover, .menu-category-btn.active { background: var(--cor-primaria); color: #000; border-color: var(--cor-primaria); box-shadow: 0 4px 15px rgba(244, 185, 1, 0.4); transform: translateY(-2px); }

.hero-cardapio { background: linear-gradient(rgba(1, 2, 2, 0.85), rgba(1, 2, 2, 0.95)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed; background-size: cover; padding: 130px 0 100px; text-align: center; color: #fff; border-bottom: 5px solid var(--cor-primaria); }
.hero-cardapio h1 { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 800; letter-spacing: 1px; }
.menu-section-header { margin-bottom: 50px; text-align: center; }
.menu-section-title { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; margin-bottom: 15px; position: relative; display: inline-block; }
.menu-section-title::after { content: ""; display: block; width: 60px; height: 3px; background-color: var(--cor-primaria); margin: 15px auto 0; border-radius: 2px; }
.menu-section-subtitle { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }
.menu-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; border: 1px solid #f0f0f0; display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--cor-primaria); }
.menu-card-img { height: 220px; width: 100%; object-fit: cover; border-bottom: 3px solid var(--cor-primaria); }
.menu-card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.menu-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; gap: 15px; }
.menu-card-title { font-weight: 700; font-size: 1.3rem; color: var(--bg-escuro); margin: 0; line-height: 1.2; }
.menu-card-price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--cor-secundaria); font-size: 1.4rem; white-space: nowrap; }
.menu-card-desc { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.menu-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }

.badge-menu { font-size: 0.75rem; font-weight: 700; padding: 5px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-destaque { background-color: var(--cor-primaria); color: #000; }
.badge-veggie { background-color: #2e7d32; color: #fff; }
.badge-spicy { background-color: #c62828; color: #fff; }
.badge-glutenfree { background-color: #8d6e63; color: #fff; }
.badge-novo { background-color: #1565c0; color: #fff; }

.dark-menu-section { background-color: var(--bg-escuro); color: #fff; }
.dark-menu-section .menu-section-title { color: #fff; }
.dark-menu-section .menu-section-subtitle { color: #aaa; }
.dark-menu-section .menu-card { background: #111; border-color: #222; box-shadow: 0 5px 25px rgba(0,0,0,0.5); }
.dark-menu-section .menu-card:hover { border-color: var(--cor-primaria); box-shadow: 0 15px 35px rgba(0,0,0,0.7); }
.dark-menu-section .menu-card-title { color: #fff; }
.dark-menu-section .menu-card-desc { color: #aaa; }
.dark-menu-section .menu-card-price { color: var(--cor-primaria); }
.dark-menu-section .menu-card-img { border-bottom-color: var(--cor-secundaria); }

.menu-list-item { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); transition: all 0.2s ease; }
.menu-list-item:hover { padding-left: 10px; background: rgba(255,255,255,0.02); }
.menu-list-info { flex-grow: 1; padding-right: 20px; }
.menu-list-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 5px; color: #fff; }
.menu-list-desc { font-size: 0.9rem; color: #999; margin: 0; }
.menu-list-price { font-weight: 700; font-size: 1.25rem; color: var(--cor-primaria); white-space: nowrap; }

.info-banner { background-color: #f4f4f4; border-radius: 20px; padding: 50px; margin: 60px 0; display: flex; align-items: center; gap: 40px; }
.info-banner-dark { background-color: #1a1a1a; border: 1px solid #333; }
.info-banner-icon { font-size: 4rem; color: var(--cor-primaria); }

.faq-menu .accordion-button { background-color: #1a1a1a; color: #fff; border: 1px solid #333; }
.faq-menu .accordion-button:not(.collapsed) { background-color: rgba(244, 185, 1, 0.1); color: var(--cor-primaria); box-shadow: none; border-bottom: none; }
.faq-menu .accordion-body { background-color: #1a1a1a; color: #aaa; border: 1px solid #333; border-top: none; }

@media (max-width: 768px) {
    .hero-cardapio h1 { font-size: 2.8rem; }
    .menu-section-title { font-size: 2.2rem; }
    .info-banner { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px; }
    .menu-nav-wrapper { top: 10px; }
}

/* =========================================
   ESTILOS EXTRAÍDOS (CONTATO HTML)
   ========================================= */

.contato-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center;
}
.cards-sobrepostos { margin-top: -80px; position: relative; z-index: 10; }
.contato-card { transition: all 0.4s ease; border: none; }
.contato-card:hover { transform: translateY(-10px); box-shadow: 0 1rem 3rem rgba(0,0,0,0.15) !important; }
.icon-circle-lg { width: 80px; height: 80px; background-color: var(--cor-secundaria, #e67e22); color: white; font-size: 2rem; margin: 0 auto 1.5rem auto; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.banner-whatsapp { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 8px solid #25D366; }
.btn-whatsapp-lg { background-color: #25D366; color: white; font-size: 1.2rem; transition: all 0.3s ease; }
.btn-whatsapp-lg:hover { background-color: #128C7E; color: white; transform: scale(1.05); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4) !important; }
.map-container iframe { transition: all 0.3s ease; }
.map-container:hover iframe { opacity: 0.9; }