:root {
    --azul: #1f3a5f;
    --dourado: #d4af37;
    --branco: #f8f8f8;
    --preto: #111111;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: var(--azul);
    padding: 35px 0;
}
header {
    background: rgba(31, 58, 95, 0.95);
    backdrop-filter: blur(6px);
    padding: 30px 0;
}

.header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    position: relative;
}
.logo-text::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    margin: 12px auto 0;
}

.logo-underline {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.logo-underline svg {
    width: 160px;
}

.nav-center {
    display: flex;
    justify-content: center;
    gap: 60px;
}


.nav-center a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-center a:hover {
    opacity: 0.7;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--branco);
    color: var(--preto);
}

.cta-header {
    background-color: var(--dourado);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.hero {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* IMAGENS DO SLIDER */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: slideImages 12s infinite;
    z-index: -2;
}

/* OVERLAY ESCURO */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,31,51,0.75);
    z-index: -1;
}

/* ANIMAÇÃO */
@keyframes slideImages {
    0% {
        background-image: url("imagens/hero1.jpg");
    }
    33% {
        background-image: url("imagens/hero2.jpg");
    }
    66% {
        background-image: url("imagens/hero3.jpg");
    }
    100% {
        background-image: url("imagens/hero1.jpg");
    }
}

/* BOTÃO PREMIUM RESTAURANTE */
.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: linear-gradient(135deg, #e6c65c, #c9a227);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    margin-top: 30px;
}

/* HOVER SUAVE */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    background: linear-gradient(135deg, #f0d36a, #d4af37);
}

section {
    padding: 80px 60px;
    text-align: center;
}


footer {
    background-color: var(--preto);
    color: white;
    padding: 20px;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .grid-pratos {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .logo-text {
        font-size: 26px;
        letter-spacing: 0.5px;
    }
}

/* === PRATOS PREMIUM === */

.menu-destaque {
    background: linear-gradient(180deg, #16293f 0%, #1f3a5f 100%);
    padding: 120px 20px;
}

.titulo-secao {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dourado);
    margin-bottom: 90px;
}

.grid-pratos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.card-prato {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    transition: 0.4s ease;
}

.card-prato:hover {
    transform: translateY(-12px);
}

.card-prato img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.conteudo-prato {
    padding: 35px;
    text-align: center;
}

.conteudo-prato h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.conteudo-prato p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.85;
}


/* === SEPARADOR === */



/* === LOCALIZAÇÃO === */


.localizacao {
    background-color: #0f1f33;
    padding: 180px 20px; /* aumenta um pouco */
    text-align: center;
    color: white;
}

.localizacao-box {
    max-width: 700px;
    margin: 0 auto;
}

.localizacao h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 30px;
}

.localizacao p {
    font-size: 18px;
    margin: 10px 0;
}

.btn-maps {
    display: inline-block;
    margin-top: 35px;
    background-color: #d4af37;
    color: black;
    padding: 15px 35px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-maps:hover {
    background-color: #c49b2a;
}


/* RESPONSIVO */

.sobre-premium {
    background-color: #1a2f4d;
    padding: 140px 20px;
    text-align: center;
    color: white;
}

.sobre-container {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-premium h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 30px;
}

.sobre-premium p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
}
.mapa {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.menu-destaque,
.localizacao,
.sobre-premium {
    margin: 0;
}
@media (max-width: 768px) {

    .grid-pratos {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .card-prato {
        border-radius: 16px;
    }

    .card-prato img {
        height: 220px;
    }

    .conteudo-prato {
        padding: 25px;
    }

    .conteudo-prato h3 {
        font-size: 22px;
    }

    .conteudo-prato p {
        font-size: 15px;
    }

    .titulo-secao {
        font-size: 34px;
        margin-bottom: 50px;
    }

    .menu-destaque {
        padding: 80px 0;
    }

}
body {
    overflow-x: hidden;
}
@media (max-width: 768px) {

    .nav-center {
        gap: 25px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 26px;
    }

}
@media (max-width: 768px) {

    .grid-pratos {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 25px;
    }

    .card-prato {
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.35);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .card-prato img {
        height: 240px;
    }

    .conteudo-prato {
        padding: 30px 25px 35px;
    }

    .conteudo-prato h3 {
        font-size: 24px;
    }

    .conteudo-prato p {
        font-size: 16px;
        line-height: 1.6;
    }

}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    header {
        padding: 20px 0;
    }

    .logo-text {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .logo-underline svg {
        width: 110px;
    }

    .nav-center {
        gap: 25px;
        font-size: 14px;
    }

}
@media (max-width: 768px) {
    .logo-underline {
        display: none;
    }
}
.social-links {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: 
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.35s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.15);
    background: white;
    color: #0f1f33;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.logo img {
    width: 110px; /* desktop */
    height: auto;
}
@media (max-width: 768px) {
    .logo img {
        width: 200px;
    }
}