@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasons-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasons-Bold.ttf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasons-Italic.ttf') format('opentype');
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex !important; /* Garante que a lista exista */
        position: fixed;
        right: -100%;
        top: 0;
        width: 70%; /* Ajuste a largura conforme desejar */
        height: 100vh;
        background: #000; /* Cor de fundo sólida para não ser transparente */
        z-index: 9999; /* Valor bem alto para ficar na frente de tudo */
        flex-direction: column;
        padding-top: 80px;
        transition: 0.5s ease;
    }

    .nav-links.active {
        right: 0 !important; /* Força a entrada na tela */
    }
}

/* Localize ou adicione este bloco no seu style.css */
.logo-link {
    text-decoration: none !important; /* Remove o sublinhado forçadamente */
    color: inherit !important;        /* Mantém a cor branca do header */
    display: inline-block;
}

.logo-link:active, 
.logo-link:visited, 
.logo-link:hover {
    color: #fff !important; /* Garante que a cor não mude após o clique */
    text-decoration: none !important;
}

.logo {
    /* Garanta que o estilo da fonte permaneça o mesmo */
    font-family: 'The Seasons', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'The Seasons', 'Playfair Display', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, .logo {
   font-family: 'The Seasons', 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #000;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #c5a059; /* Dourado */
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('imgs/estaticas/fachada.jpg') 
                no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #c5a059;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #a38245;
}

/* Menu */
.menu-section {
    padding: 80px 0;
}

.menu-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.menu-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.menu-category h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #c5a059;
}

.menu-item {
    margin-bottom: 25px;
}

.menu-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-item .price {
    float: right;
    font-family: 'The Seasons', serif;
}

.menu-item p {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
}

.localizacao-card {
    display: flex;
    gap: 2.5rem;
    background-color: var(--preto-suave);
    padding: 2.5rem;
    border-radius: 12px;
    align-items: center;
}

.localizacao-info {
    flex: 1;
}

.localizacao-info h2 {
    margin-bottom: 1rem;
}

.localizacao-info p {
    margin-bottom: 0.4rem;
}

.localizacao-info .btn-dark {
    margin-top: 1.5rem;
    display: inline-block;
}

.localizacao-mapa {
    flex: 1;
}

.localizacao-mapa iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: none;
}

@media (max-width: 768px) {
    .localizacao-card {
        flex-direction: column;
    }

    .localizacao-mapa iframe {
        height: 250px;
    }
}


.price-exec {
    font-size: 2rem;
    font-family: 'The Seasons', serif;
    color: #c5a059;
    margin: 20px 0;
}

.btn-dark {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #000;
    color: #666;
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* Seção História */
.restaurante-section {
    padding: 80px 0;
    background-color: #fff;
}

.restaurante-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.restaurante-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Wrapper para imagens no texto */
.restaurante-img-wrapper {
    margin: 40px 0;
}

.restaurante-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit:inherit;
    border: 1px solid #eee;
    padding: 10px;
}

/* Seção História */
.historia-section {
    padding: 80px 0;
    background-color: #fff;
}

.historia-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.historia-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}



/* Wrapper para imagens no texto */
.historia-img-wrapper {
    margin: 40px 0;
}

.historia-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit:inherit;
    border: 1px solid #eee;
    padding: 10px;
}

.img-caption {
    display: block;
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção Chefs */
.chefs-wrapper {
    margin-top: 80px;
}

.subtitle-centralizado {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #c5a059;
}

.chefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.chef-card {
    text-align: center;
    grid-column: span 2;
}

.chef-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%; /* Foto redonda para os chefs */
    border: 3px solid #f9f9f9;
}

.chef-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chef-photo:hover img {
    transform: scale(1.1);
}

.chef-card h4 {
    font-family: 'The Seasons', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.chef-card p {
    font-size: 0.9rem;
    color: #777;
    padding: 0 20px;
}

/* Responsividade para os Chefs */
@media (max-width: 768px) {
    .chefs-grid {
        grid-template-columns: 1fr;
    }
}

/* FEIJOADA FEATURE */

.feijoada-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.feijoada-text h3 {
    font-family: 'The Seasons', 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--amarelo-ouro);
    margin-bottom: 1rem;
}

.feijoada-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--branco-creme);
}

.feijoada-image {
    position: relative;
}

.feijoada-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .feijoada-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feijoada-text h3 {
        font-size: 1.6rem;
    }
}


/* CATERING */

.catering-section {
    padding: 6rem 0;
    background-color: var(--preto);
}

.catering-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.catering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.catering-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--branco-creme);
}

@media (max-width: 768px) {
    .catering-feature {
        grid-template-columns: 1fr;
    }

    .catering-text .section-title {
        text-align: center;
    }
}



/* bosque FEATURE */

.bosque-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.bosque-text h3 {
    font-family: 'The Seasons', 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--amarelo-ouro);
    margin-bottom: 1rem;
}

.bosque-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--branco-creme);
}

.bosque-image {
    position: relative;
}

.bosque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .bosque-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bosque-text h3 {
        font-size: 1.6rem;
    }
}


/* humaita */

.humaita-section {
    padding: 6rem 0;
    background-color: var(--preto);
}

.humaita-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.humaita-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.humaita-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--branco-creme);
}

@media (max-width: 768px) {
    .humaita-feature {
        grid-template-columns: 1fr;
    }

    .humaita-text .section-title {
        text-align: center;
    }
}


/* rangel FEATURE */

.rangel-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.rangel-text h3 {
    font-family: 'The Seasons', 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--amarelo-ouro);
    margin-bottom: 1rem;
}

.rangel-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--branco-creme);
}

.rangel-image {
    position: relative;
}

.rangel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .rangel-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rangel-text h3 {
        font-size: 1.6rem;
    }
}



/* HERO SECUNDÁRIO — MENU */

.menu-hero {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 2rem 0 3rem;
    overflow: hidden;
    border-radius: 16px;
}

/* Animação específica para o Menu com 9 imagens */
@keyframes heroCarousel9 {
    0% { opacity: 0; }
    2% { opacity: 1; }   /* Aparece */
    11% { opacity: 1; }  /* Fica visível (1/9 do tempo) */
    13% { opacity: 0; }  /* Começa a sumir para dar lugar à próxima */
    100% { opacity: 0; }
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroCarousel9 45s infinite; /* 45 segundos no total */
}


/* Imagens */
.slide1 {
    background-image: url("imgs/menu/menu1.jpg");
    animation-delay: 0s;
}

.slide2 {
    background-image: url("imgs/menu/menu2.jpeg");
    animation-delay: 5s;
}

.slide3 {
    background-image: url("imgs/menu/menu3.jpeg");
    animation-delay: 10s;
}

.slide4 {
    background-image: url("imgs/menu/menu4.jpeg");
    animation-delay: 15s;
}

.slide5 {
    background-image: url("imgs/menu/menu5.jpeg");
    animation-delay: 20s;
}

.slide6 {
    background-image: url("imgs/menu/menu6.jpeg");
    animation-delay: 25s;
}

.slide7 {
    background-image: url("imgs/menu/menu7.jpeg");
    animation-delay: 30s;
}

.slide8 {
    background-image: url("imgs/menu/menu8.jpeg");
    animation-delay: 35s;
}

.slide9 {
    background-image: url("imgs/menu/menu9.jpeg");
    animation-delay: 40s;
}

/* Overlay escuro */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.65)
    );
    z-index: 2;
}



/* HERO SECUNDÁRIO — CATERING */
.catering-hero {
    position: relative;
    width: 100%;
    height: 350px; /* Ajuste a altura conforme preferir */
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Nova animação específica para 4 imagens */
@keyframes heroCarousel4 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; } /* Fica visível por 1/4 do tempo */
    30% { opacity: 0; }
    100% { opacity: 0; }
}

/* Aplicando ao Catering */
.cat-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroCarousel4 20s infinite; /* Aumentamos para 20s para facilitar a conta (5s por foto) */
}

/* Substitua os caminhos abaixo pelas fotos dos eventos/catering */
.cat-slide1 {
    background-image: url("imgs/catering/catering1.png"); 
    animation-delay: 0s;
}

.cat-slide2 {
    background-image: url("imgs/catering/catering2.png"); 
    animation-delay: 5s;
}

.cat-slide3 {
    background-image: url("imgs/catering/catering3.png");
    animation-delay: 10s;
}

.cat-slide4 {
    background-image: url("imgs/catering/catering4.png"); 
    animation-delay: 15s;
}

/* Estilos para o Menu Mobile */
.mobile-menu-icon {
    display: none; /* Escondido no desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: flex; /* Aparece no celular */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Escondido fora da tela */
        top: 70px; /* Abaixo do header */
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
        z-index: 999;
    }

    .nav-links.active {
        right: 0; /* Desliza para dentro da tela */
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        margin-left: 0;
    }
}

/* --- AJUSTES DE RESPONSIVIDADE (MOBILE) --- */

/* Esconde o ícone no Desktop */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon .bar {
    width: 30px;
    height: 3px;
    background-color: #c5a059;
    transition: 0.4s;
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .mobile-menu-icon { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }

    .nav-links.active { right: 0; }

    nav ul li { margin: 20px 0; }

    nav ul li a { 
        font-size: 1.4rem; 
        margin-left: 0;
    }

    /* Ajuste de Textos e Seções */
    .hero h1 { font-size: 2.2rem; }
    
    .section-title { 
        font-size: 1.8rem !important; 
        margin-bottom: 30px;
    }

    .hero { height: 60vh; }

    /* Ajuste dos Carrosséis */
    .menu-hero, .catering-hero {
        height: 250px; /* Menor altura no celular para não rolar demais */
    }

    /* Ajuste dos Cards (Chefs e Outros) */
    .chef-photo {
        width: 200px;
        height: 200px;
    }

    .feijoada-feature, .catering-feature, .bosque-feature, .humaita-feature, .rangel-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    /* Inverte ordem no mobile se necessário (imagem em cima do texto) */
    .catering-feature .catering-image { order: -1; }
    .feijoada-image { order: -1; }
}

/* Animação do Ícone X */
.mobile-menu-icon.open .bar:nth-child(1) { transform: rotate(-45deg) translate(-6px, 7px); }
.mobile-menu-icon.open .bar:nth-child(2) { opacity: 0; }
.mobile-menu-icon.open .bar:nth-child(3) { transform: rotate(45deg) translate(-6px, -7px); }