*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
}

:root {
    --vinho-escuro: #4A1F2F;
    --bege-metalico: #D8C7A0;
    --preto-grafito: #1A1A1A;
    --preto-grafito-claro: #2A2A2A;
    --branco: #FFFFFF;
    --texto-claro: #E5E5E5;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--texto-claro);
    background: var(--vinho-escuro);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.container > * {
    text-align: left;
}

.container > .section-title,
.container > .section-subtitle {
    text-align: center !important;
}

/* Header */
header {
    position: fixed;
    top: 25px;
    left: 75px;
    right: 75px;
    width: calc(100% - 150px);
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(216, 199, 160, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
}

header.scrolled .logo {
    height: 60px;
}

header.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

header nav.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    gap: 3rem;
}

.logo {
    height: 70px;
    transition: transform 0.3s;
    object-fit: contain;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--bege-metalico);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--bege-metalico);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--branco);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(74, 31, 47, 0.8)), url('images/restaurante.png') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    text-align: center;
    padding-top: 100px;
    color: var(--branco);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: fadeIn 1.2s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--bege-metalico);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title br {
    display: block;
    margin: 0.3em 0;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    color: var(--texto-claro);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bege-metalico);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 3;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    border-color: var(--bege-metalico);
    box-shadow: 0 10px 30px rgba(216, 199, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(216, 199, 160, 0.5);
    background: var(--branco);
    color: var(--vinho-escuro);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--bege-metalico);
    color: var(--bege-metalico);
}

.btn-secondary:hover {
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    transform: translateY(-5px);
}

.btn-cta {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    border-color: var(--bege-metalico);
    box-shadow: 0 15px 40px rgba(216, 199, 160, 0.4);
}

.btn-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(216, 199, 160, 0.6);
    background: var(--branco);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--bege-metalico);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    white-space: nowrap;
}

/* Títulos específicos em branco */
.about-section .section-title,
.highlights-section .section-title,
.gallery-section .section-title,
.menu-section .section-title,
.events-section .section-title {
    color: #FFFFFF;
}
}

.section-subtitle {
    text-align: center !important;
    font-size: 1.2rem;
    color: var(--bege-metalico);
    margin: 0 auto 4rem auto;
    opacity: 0.8;
    display: block;
    width: 100%;
    max-width: 100%;
    font-weight: 300;
    padding: 0;
    box-sizing: border-box;
}

/* Garantir que o container centralize título e subtítulo */
.container > .section-title + .section-subtitle {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* About Section */
.about-section {
    background: var(--preto-grafito);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.about-text {
    padding: 2rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--texto-claro);
    opacity: 0.9;
    font-weight: 300;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

/* Highlights Section */
.highlights-section {
    background: var(--preto-grafito-claro);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--preto-grafito);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(216, 199, 160, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bege-metalico), var(--vinho-escuro));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--bege-metalico);
    box-shadow: 0 20px 50px rgba(216, 199, 160, 0.2);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bege-metalico);
    border-radius: 50%;
    color: var(--bege-metalico);
    font-size: 2rem;
    transition: all 0.3s;
}

.highlight-card:hover .highlight-icon {
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    transform: scale(1.1) rotate(5deg);
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--bege-metalico);
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-card p {
    color: var(--texto-claro);
    line-height: 1.7;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--preto-grafito);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    border: 2px solid rgba(216, 199, 160, 0.2);
    transition: all 0.4s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--bege-metalico);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(216, 199, 160, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 31, 47, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--bege-metalico);
    font-size: 2.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--bege-metalico);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--branco);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.lightbox-nav button {
    pointer-events: all;
    background: rgba(216, 199, 160, 0.2);
    border: 2px solid var(--bege-metalico);
    color: var(--bege-metalico);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    transform: scale(1.1);
}

/* Menu Section */
.menu-section {
    background: var(--preto-grafito);
}

/* Menu Tabs Navigation */
.menu-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(216, 199, 160, 0.2);
    padding-bottom: 1rem;
}

.menu-tabs-row-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(216, 199, 160, 0.2);
    padding-bottom: 1rem;
}

.menu-tab {
    background: transparent;
    border: none;
    color: var(--bege-metalico);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.menu-tab i {
    font-size: 1.1rem;
}

.menu-tab:hover {
    opacity: 1;
    color: var(--branco);
}

.menu-tab.active {
    opacity: 1;
    color: var(--vinho-escuro);
    background: var(--bege-metalico);
    border-radius: 8px 8px 0 0;
}

.menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bege-metalico);
}

/* Menu Category Content */
.menu-category-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.menu-category-content.active {
    display: block;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-item {
    background: var(--preto-grafito-claro);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(216, 199, 160, 0.1);
}

.menu-item:hover {
    border-color: rgba(216, 199, 160, 0.3);
    transform: translateX(5px);
}

.menu-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--bege-metalico);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item p {
    color: var(--texto-claro);
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
}

.menu-item .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bege-metalico);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.subcategory-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--bege-metalico);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(216, 199, 160, 0.3);
    font-weight: 600;
}

.subcategory-title:first-child {
    margin-top: 0;
}

.menu-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Events Section */
.events-section {
    background: var(--preto-grafito);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.events-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(216, 199, 160, 0.2);
    min-height: 400px;
}

.events-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.events-image:hover img {
    transform: scale(1.05);
}

.events-text {
    padding: 2rem;
}

.events-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--texto-claro);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--vinho-escuro) 0%, var(--preto-grafito) 100%);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(216, 199, 160, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-title br {
    display: block;
    margin: 0.4em 0;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--texto-claro);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    text-align: center;
}

.cta-content .btn-cta {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--vinho-escuro);
    color: var(--bege-metalico);
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 120px;
    opacity: 0.9;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 2rem;
    align-items: start;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--bege-metalico);
}

/* Títulos específicos do footer em branco: Endereço, Horário de Funcionamento, Contato */
.footer-info .footer-section:first-child h4,
.footer-info .footer-section:nth-child(2) h4,
.footer-info .footer-section:nth-child(3) h4 {
    color: #FFFFFF;
}

.footer-section p {
    color: #FFFFFF;
    line-height: 1.8;
    opacity: 0.95;
    font-size: 0.95rem;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-section a i {
    margin-right: 0.5rem;
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bege-metalico);
    border-radius: 50%;
    color: var(--bege-metalico);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 199, 160, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: var(--texto-claro);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(216, 199, 160, 0.1);
    border: 2px solid var(--bege-metalico);
    color: var(--bege-metalico);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 199, 160, 0.3), transparent);
    transition: left 0.5s;
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle:hover {
    background: var(--bege-metalico);
    color: var(--vinho-escuro);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(216, 199, 160, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, var(--vinho-escuro) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        gap: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border-right: 1px solid rgba(216, 199, 160, 0.3);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(216, 199, 160, 0.15);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-menu a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        color: var(--bege-metalico);
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--bege-metalico);
        transition: height 0.3s ease;
    }

    .nav-menu a:hover {
        color: #fff;
        padding-left: 1rem;
    }

    .nav-menu a:hover::before {
        height: 60%;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Overlay escuro quando menu está aberto */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 100%;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .about-content,
    .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-tabs,
    .menu-tabs-row-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .menu-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .menu-item .price {
        align-self: flex-end;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        right: 0;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    header {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        padding: 0.5rem 1rem;
        border-radius: 15px;
        margin: 0;
        box-sizing: border-box;
    }

    header nav.container {
        padding: 0 10px;
        max-width: 100%;
    }

    header.scrolled {
        padding: 0.4rem 1rem;
    }

    .logo {
        height: 50px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding-top: 2rem;
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
    }

    section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow-x: hidden;
    }

    .section-title {
        white-space: normal;
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 100px 15px 60px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        left: 0;
        right: 0;
        background: var(--vinho-escuro) url('images/restaurante.png') center center / cover no-repeat;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(74, 31, 47, 0.8));
        z-index: 1;
    }

    .hero-logo {
        width: 180px;
        height: auto;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-image {
        height: auto;
        min-height: 350px;
        border-radius: 12px;
        padding: 0;
        margin-top: -2rem;
    }

    .about-image img {
        width: 100%;
        max-height: none;
        height: auto;
        padding: 0;
        border-radius: 12px;
    }

    .about-text {
        padding: 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .menu-tabs,
    .menu-tabs-row-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .menu-tab {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .menu-item h4 {
        font-size: 1.1rem;
    }

    .events-content {
        gap: 2rem;
    }

    .video-container {
        height: 250px;
        border-radius: 12px;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .cta-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-info {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }

    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero,
    .about-section,
    .highlights-section,
    .gallery-section,
    .menu-section,
    .events-section,
    .cta-section,
    .footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .hero-overlay {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    video {
        max-width: 100%;
        height: auto;
    }

    * {
        box-sizing: border-box;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bege-metalico);
    color: var(--preto-grafito);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--vinho-escuro);
    color: var(--bege-metalico);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

