/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
}

h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Header e Navegação (Desktop) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; 
    background-color: #ffffff; 
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Bloco da Logo */
.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.brand-name {
    color: #14693c; 
    font-family: 'Bodoni FLF', 'Bodoni Moda', serif;
    font-size: 2.8rem; 
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); 
}

.brand-subtitle {
    color: #14693c; 
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 3px; 
    margin-top: 0px; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); 
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #000;
}

nav a.ativo {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #000;
}

/* =========================================
   SESSÃO HERO PRINCIPAL (FUNDO VERDE)
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #14693c; 
    color: #fff;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2; 
}

/* TEXTOS CENTRAIS DA HOME (COMPUTADOR) */
.hero-content h1 {
    font-family: 'Bodoni FLF', 'Bodoni Moda', serif;
    font-size: 4.4rem; 
    font-weight: 700;
    color: #f8eebd; 
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; 
    font-weight: 600;
    font-style: normal; 
    text-transform: uppercase;
    color: #f8eebd; 
    letter-spacing: 6px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* =========================================
   ASSINATURA INFERIOR "logo3" (COMPUTADOR)
   ========================================= */
.hero-bottom-logo {
    position: absolute;
    bottom: 15px; 
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2; 
    color: #f4ebc8; 
}

.bottom-lunion {
    font-family: 'Bodoni FLF', 'Bodoni Moda', serif;
    font-size: 2.5rem; 
    font-weight: 700; 
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bottom-diner {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; 
    font-weight: 400;
    letter-spacing: 6px; 
    margin-top: 5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.bottom-chef {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.45rem; 
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* =========================================
   CABEÇALHO DAS SUBPÁGINAS
   ========================================= */
.subpage-hero {
    height: 40vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #14693c; 
    color: #fff;
    padding: 0 20px;
    margin-top: 80px; 
}

.subpage-hero h1 {
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

/* =========================================
   ESTRUTURA GERAL E SEÇÕES
   ========================================= */
.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.text-content {
    text-align: justify;
    text-align-last: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-light, .section-dark {
    padding: 100px 20px;
}

.section-light {
    background-color: #fafafa;
    color: #333;
}

.section-dark {
    background-color: #1a1a1a;
    color: #f4f4f4;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0a0a0a;
    color: #777;
    font-size: 0.8rem;
}

/* =========================================
   REGRAS PARA CELULAR (Abaixo de 768px)
   ========================================= */
@media (max-width: 768px) {
    header {
        padding: 25px 20px; 
    }

    .brand-name {
        font-size: 2.25rem; 
        font-weight: 700; 
        letter-spacing: 4px;
        line-height: 1.1;
    }
    
    .brand-subtitle {
        font-size: 0.75rem; 
        letter-spacing: 2px; 
        margin-top: 0px; 
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        scale: 1.4; 
    }

    nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff; 
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 55px; 
        text-align: center;
    }

    nav a {
        font-size: 1.72rem; 
        font-weight: 700; 
        color: #14693c; 
        letter-spacing: 2px;
    }

    nav a.ativo {
        text-decoration: none;
        border-bottom: 5px solid #14693c; 
        padding-bottom: 5px;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content {
        margin-top: -12vh; 
    }

    /* TEXTOS CENTRAIS DA HOME (CELULAR) */
    .hero-content h1 {
        font-size: 2.45rem; 
        line-height: 1.2; 
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.95rem; 
    }

    .hero-bottom-logo {
        bottom: 15px; 
    }

    .bottom-lunion {
        font-size: 1.6rem; 
        font-weight: 700; 
    }

    .bottom-diner {
        font-size: 0.45rem; 
        letter-spacing: 4px;
    }

    .bottom-chef {
        font-size: 0.35rem; 
        letter-spacing: 3px;
    }

    .subpage-hero {
        height: 30vh;
        margin-top: 90px;
    }
    
    .subpage-hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-light, .section-dark {
        padding: 60px 20px;
    }
}