/* Paleta de Cores Extraída da Logo */
:root {
    --azul-reiza: #18529D;
    --verde-reiza: #1B2E26;
    --laranja-chama: #EF5824;
    --vermelho-carne: #C53727;
    --bg-body: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-gray: #64748B;
    --borda-suave: #E2E8F0;
    --sombra-card: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    
    /* Gradiente de acento inspirado no fundo da logo */
    --gradiente-logo: linear-gradient(135deg, #6a9ce0, #b364a5, #c4294b);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--verde-reiza);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* --- HEADER --- */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 10px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 5px 0;
    border-bottom: 1px solid var(--borda-suave);
}

header.scrolled .nav-links a {
    color: var(--verde-reiza) !important;
}

header.scrolled .nav-links a:hover {
    color: var(--laranja-chama) !important;
}

header.scrolled .hamburger span {
    background: var(--verde-reiza);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    transition: right 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--laranja-chama) !important;
}

/* --- BOTÕES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--laranja-chama);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(239, 88, 36, 0.4);
}

.btn-primary:hover {
    background-color: var(--vermelho-carne);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 55, 39, 0.5);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--verde-reiza);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    font-size: 1.15rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #FFFFFF;
}

/* --- MENU MOBILE --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: var(--bg-white);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span {
    background: var(--laranja-chama) !important;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -280px;
        width: 250px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        padding: 100px 24px 24px 24px;
        gap: 2rem;
        align-items: flex-start;
        z-index: 1050;
        transition: right 0.3s cubic-bezier(.77,0,.18,1);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        color: var(--verde-reiza);
        font-size: 1.1rem;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo {
        z-index: 1200;
    }
}

/* --- LAYOUT GLOBAL --- */
section {
    padding: 100px 2rem 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azul-reiza);
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--gradiente-logo);
    margin: 15px auto 0;
    border-radius: 5px;
}

/* --- HERO --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 60px;
    background: linear-gradient(to bottom, rgba(27, 46, 38, 0.8), rgba(27, 46, 38, 0.95)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    max-width: 100%;
    margin: 0;
    color: var(--bg-white);
}

.hero-content {
    max-width: 850px;
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: var(--laranja-chama);
    color: var(--bg-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 88, 36, 0.3);
}

#hero h1 {
    font-size: 4.8rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.text-gradient {
    background: var(--gradiente-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

#hero p {
    font-size: 1.25rem;
    color: #E2E8F0;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- PRATOS DO DIA --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--borda-suave);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.card-img-placeholder {
    height: 220px;
    background: var(--bg-body);
    overflow: hidden;
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-placeholder img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.3rem;
    color: var(--azul-reiza);
    margin-bottom: 0.8rem;
}

.card-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vermelho-carne);
}

/* --- CARDÁPIO --- */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--verde-reiza);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item-card {
    display: flex;
    gap: 1.2rem;
    background: var(--bg-white);
    padding: 1.2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--borda-suave);
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    transform: translateX(5px);
    border-color: var(--azul-reiza);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    font-size: 1.15rem;
    color: var(--azul-reiza);
}

.menu-item-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--verde-reiza);
    font-size: 1.1rem;
}

.menu-item-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- CTA RESERVA WHATSAPP --- */
.cta-wrapper {
    background: var(--bg-white);
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--borda-suave);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradiente-logo);
}

.cta-wrapper h3 {
    color: var(--azul-reiza);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 500px;
    margin-inline: auto;
}

/* --- LOCALIZAÇÃO (NOVA SECÇÃO) --- */
.localizacao-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--sombra-card);
    border: 1px solid var(--borda-suave);
}

.local-imagem {
    width: 100%;
    height: 100%;
}

.local-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.local-mapa {
    display: flex;
    flex-direction: column;
}

.local-mapa iframe {
    flex: 1;
    min-height: 300px;
    width: 100%;
    border: none;
}

.local-info {
    padding: 2rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--borda-suave);
}

.local-info p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-mapa {
    background-color: var(--bg-body);
    color: var(--azul-reiza);
    border: 1px solid var(--azul-reiza);
    text-align: center;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-mapa:hover {
    background-color: var(--azul-reiza);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* --- FOOTER --- */
footer {
    background-color: var(--verde-reiza);
    color: #cbd5e1;
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--laranja-chama);
    border-radius: 2px;
}

.footer-logo {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo img {
    filter: brightness(0) invert(1); /* Deixa a logo branca no fundo escuro caso precise */
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-links span.icon {
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--laranja-chama);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #64748B;
    text-align: center;
}

#menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1049;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    #hero h1 { font-size: 2.3rem; }
    #hero p { font-size: 1.1rem; }
    .section-title { font-size: 2.3rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .grid-cards { grid-template-columns: 1fr; }
    .menu-container { grid-template-columns: 1fr; }
    .cta-wrapper { padding: 3rem 1.5rem; border-radius: 20px; }
    .menu-item-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    .menu-item-img {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
        border-radius: 10px;
        object-fit: cover;
    }
    .menu-item-header { width: 100%; }
    .footer-grid { text-align: left; }
    .btn-whatsapp {
    font-size: 1rem;
    padding: 17px 15px;
    }
    #menu-overlay {z-index: 0;}
    /* Localização Responsivo */
    .localizacao-container { grid-template-columns: 1fr; border-radius: 20px; }
    .local-imagem img { height: 250px; min-height: auto; }
    .local-mapa iframe { min-height: 250px; }
    .local-info { padding: 1.5rem; }
}
