/* Estilos Gerais */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #c0392b;
    --text-color: #f0f0f0;
    --light-color: #f8f9fa;
    --dark-color: #121212;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
    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: 0.5s;
}

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

.btn.primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(212, 175, 55, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn.primary:hover {
    background-color: var(--dark-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    animation: fadeIn 1s ease-out;
}

section:nth-child(even) {
    background-color: var(--dark-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    cursor: pointer;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
    background-color: var(--dark-color);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    transition: transform 0.3s ease, color 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Estilos para o menu mobile */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav ul {
    width: 100%;
    list-style: none;
    padding: 20px;
    text-align: center;
}

.mobile-nav ul li {
    margin: 15px 0;
    opacity: 0;
    animation: fadeInUp 0.3s forwards;
}

.mobile-nav ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav ul li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav ul li:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav ul li:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav ul li:nth-child(7) { animation-delay: 0.7s; }

.mobile-nav ul li a {
    color: var(--light-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--primary-color);
}

/* Impedir rolagem quando o menu está aberto */
body.no-scroll {
    overflow: hidden;
}

.mobile-nav ul li a {
    font-size: 20px;
    padding: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('background.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    filter: brightness(0.92) contrast(1.05) saturate(0.9);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.05) 30%,
                rgba(0, 0, 0, 0.2) 60%, 
                rgba(0, 0, 0, 0.4) 80%);
    backdrop-filter: blur(0);
}

.hero .overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
                rgba(0, 0, 0, 0.5) 0%, 
                rgba(0, 0, 0, 0.4) 20%, 
                rgba(0, 0, 0, 0.3) 40%, 
                rgba(0, 0, 0, 0.1) 60%, 
                rgba(0, 0, 0, 0) 80%);
    z-index: 1;
}

.hero .overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6) 50%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1.2s ease;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease 0.3s;
    animation-fill-mode: both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    animation: fadeIn 1.5s ease 0.6s;
    animation-fill-mode: both;
}

.cta-buttons .btn {
    margin: 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

.about-text {
    flex: 1;
    min-width: 300px;
    animation: slideInRight 1s ease-out;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Menu Section */
.menu {
    background-color: var(--secondary-color);
}

.menu-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
    /* Garantindo que o container ocupe toda a largura disponível */
    box-sizing: border-box;
}

.full-menu-image {
    max-width: 85%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(212, 175, 55, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-radius 0.3s ease;
    border: 2px solid transparent;
    filter: brightness(0.7) contrast(1.2) saturate(0.9);
    margin: 0 auto;
    display: block;
    position: relative;
    left: 300px;
}

.full-menu-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 8px 15px rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    filter: brightness(0.7) contrast(1.2);
}

/* Estilos para os botões de alternância de idioma do menu */
.menu-language-toggle {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
    gap: 5px;
}

.menu-lang-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.menu-lang-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.menu-lang-btn.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu-category {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-category i {
    margin-right: 8px;
    font-size: 18px;
    color: var(--primary-color);
}

.menu-category.active,
.menu-category:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.menu-category.active i,
.menu-category:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.menu-category-items {
    display: none;
}

.menu-category-items.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.menu-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: pulse 1s infinite;
}

.menu-item-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
    flex: 1;
}

.menu-item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.menu-item-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.menu-item-info .price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.menu-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-color);
}

/* Hours Section */
.hours {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.hours .section-header h2 {
    color: var(--primary-color);
}

.hours-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
}

.hours-card {
    max-width: 400px;
    width: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.hours-info {
    flex: 1;
    text-align: center;
}

.hours-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.hours-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.hours-day {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.hours-day:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.hours-day:last-child {
    margin-bottom: 0;
}

.hours-day h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.reservation {
    flex: 1;
    min-width: 300px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reservation h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.reservation p {
    margin-bottom: 20px;
}

/* Location Section */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-address {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.location-address:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.location-address i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.location-address p {
    font-size: 18px;
    color: var(--text-color);
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.address-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.address-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.address-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.address-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.address-details p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-categories {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .menu-category {
        width: 100%;
        margin: 0;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .menu-language-toggle {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .menu-lang-btn {
        padding: 8px 16px;
        margin: 0 5px;
    }
    
    .full-menu-image {
        max-width: 100%;
        left: 0;
    }
    
    .menu-image {
        padding: 0 10px;
        left: 0;
        position: relative;
    }
    
    .language-selector {
        width: 100%;
    }
    
    .language-toggle {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .language-dropdown {
        width: 160px;
        right: 0;
    }
}

@media (max-width: 576px) {
    .gallery-carousel-container {
        height: 250px;
    }
    
    .gallery-info h3 {
        font-size: 16px;
    }
    
    .gallery-info p {
        font-size: 12px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .cta-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .address-info {
        flex-direction: column;
    }
    
    .menu-categories {
        padding: 0 10px;
    }
    
    .menu-category {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .menu-lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .full-menu-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .language-selector-mobile {
        width: 100%;
    }
    
    .language-toggle-mobile {
        width: 90%;
        padding: 10px;
        margin: 8px auto;
    }
    
    .language-dropdown-mobile {
        width: 90%;
    }
    
    .language-dropdown-mobile a {
        padding: 10px;
        font-size: 14px;
    }
}

/* Estilos para o seletor de idiomas */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-toggle .current-lang {
    margin: 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.language-toggle .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.language-selector:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--dark-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--light-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.language-dropdown a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.lang-flag {
    margin-right: 10px;
    font-size: 16px;
}

/* Estilos para o seletor de idiomas mobile */
.language-selector-mobile {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.language-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 50px;
    margin: 15px auto;
    width: 80%;
    max-width: 200px;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-toggle-mobile:hover, 
.language-toggle-mobile:active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.language-toggle-mobile .current-lang {
    margin: 0 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.language-toggle-mobile .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.language-selector-mobile.active .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown-mobile {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.9);
    margin: 5px auto;
    border-radius: 12px;
    width: 80%;
    max-width: 200px;
    z-index: 100;
}

.language-selector-mobile.active .language-dropdown-mobile {
    max-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.language-dropdown-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: var(--light-color);
}

.language-dropdown-mobile a:hover,
.language-dropdown-mobile a:active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.language-dropdown-mobile a:last-child {
    border-bottom: none;
}

/* Melhorando a responsividade do seletor de idiomas mobile */
@media (max-width: 480px) {
    .language-selector-mobile {
        width: 100%;
        margin: 15px 0;
    }
    
    .language-toggle-mobile {
        width: 95%;
        padding: 12px;
        margin: 10px auto;
        font-size: 16px;
        font-weight: bold;
    }
    
    .language-dropdown-mobile {
        width: 95%;
        background-color: rgba(0, 0, 0, 0.9);
    }
    
    .language-selector-mobile.active .language-dropdown-mobile {
        max-height: 300px;
        padding: 10px 0;
    }
    
    .language-dropdown-mobile a {
        padding: 14px;
        font-size: 16px;
    }
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: 'Georgia', serif;
    font-size: 80px;
    position: absolute;
    left: -15px;
    top: -40px;
    color: rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-color);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.rating {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--primary-color);
}

/* Galeria */
.gallery {
    background-color: var(--dark-color);
}

.gallery-carousel {
    max-width: 900px;
    margin: 30px auto 0;
    position: relative;
}

.gallery-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.gallery-slide.active img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    z-index: 3;
}

.gallery-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
}

.gallery-info p {
    color: var(--light-color);
    font-size: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.4s, opacity 0.5s ease 0.4s;
}

.gallery-slide.active .gallery-info h3,
.gallery-slide.active .gallery-info p {
    transform: translateY(0);
    opacity: 1;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-carousel-container {
        height: 400px;
    }
    
    .gallery-info h3 {
        font-size: 20px;
    }
    
    .gallery-info p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery-carousel-container {
        height: 350px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
}

/* Recrutamento */
.careers {
    background-color: var(--secondary-color);
}

.careers-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.careers-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.careers-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.careers-list {
    margin: 20px 0;
    padding-left: 20px;
}

.careers-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.careers-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.careers-cta {
    margin-top: 30px;
    text-align: center;
}

.careers-cta p {
    margin-bottom: 15px;
    font-weight: 500;
}

.careers-cta .btn {
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    cursor: pointer;
}

.footer-logo p {
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-list li a i {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-list li a:hover i {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.contact-list li a span {
    font-size: 15px;
}

.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-color);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    animation: pulse 1s infinite;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 14px;
}

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

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .menu-category-items.active {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .about-content,
    .hours-content,
    .contact-content {
        flex-direction: column;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-image {
        width: 100%;
        height: 200px;
    }

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

    .language-selector {
        width: 100%;
    }
    
    .language-toggle {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .language-dropdown {
        width: 160px;
        right: 0;
    }
}

@media (max-width: 576px) {
    .gallery-carousel-container {
        height: 250px;
    }
    
    .gallery-info h3 {
        font-size: 16px;
    }
    
    .gallery-info p {
        font-size: 12px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .address-info {
        flex-direction: column;
    }
    
    .language-selector-mobile {
        width: 100%;
    }
    
    .language-toggle-mobile {
        width: 90%;
        padding: 10px;
        margin: 8px auto;
    }
    
    .language-dropdown-mobile {
        width: 90%;
    }
    
    .language-dropdown-mobile a {
        padding: 10px;
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-color);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: fadeIn 1s ease-out;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, var(--secondary-color), #222);
    border-left: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.rating {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .testimonial {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        gap: 20px;
    }
    
    .testimonial {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Estilos para o carrossel de galeria */
.gallery-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-carousel-container {
    position: relative;
    height: 500px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease, transform 1.5s ease;
    transform: scale(1.05);
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--light-color);
    border-radius: 0 0 15px 15px;
}

.gallery-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Ajustes para o seletor de idioma no mobile */
@media (max-width: 768px) {
    .mobile-nav ul li.language-selector-mobile {
        margin-top: 20px;
    }
    
    .language-toggle-mobile {
        background-color: rgba(255, 255, 255, 0.2);
        font-size: 16px;
        padding: 12px 20px;
        color: white;
    }
    
    .gallery-carousel-container {
        height: 350px;
    }
    
    .gallery-info h3 {
        font-size: 18px;
    }
    
    .gallery-info p {
        font-size: 14px;
    }
}
    
    .language-toggle-mobile:active,
    .language-toggle-mobile:focus {
        background-color: var(--primary-color);
        color: var(--dark-color);
    }
    
    .language-dropdown-mobile {
        background-color: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .language-dropdown-mobile a {
        font-weight: 500;
    }
/* Remove extra closing brace as it has no matching opening brace */
