:root {
            --gold: #4e4e4e;
            --wine: #475252;
            --neutral-light: #F7F5F2;
            --neutral-medium: #E6E2DB;
            --neutral-dark: #222222;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
            --transition: all 0.3s ease;
            --transition-slow: all 0.6s ease;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
            --radius: 4px;
        }
        
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-sans);
            color: var(--neutral-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--font-serif);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--gold);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--wine);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }
        
        .btn-secondary:hover {
            background-color: var(--gold);
            color: white;
        }
        
        /* Header styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(225, 225, 225, 0.8);  
            backdrop-filter: blur(12px);      
            -webkit-backdrop-filter: blur(12px); 
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 0.5rem 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img{
            width: 100px;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));    
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            color: var(--neutral-dark);
            font-weight: 600;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        .nav-menu .active{
            color: #004A7F;
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--neutral-dark);
        }

        /* Hero Video Section */
        .hero-video {
            position: relative;
            height: 90vh;
            min-height: 650px;
            width: 100%;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-controls {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .video-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .video-btn:hover {
            background: var(--gold);
            transform: scale(1.1);
        }
        
        /* CTA fixa à esquerda sobre o vídeo */
        .hero-cta-left {
            position: absolute;
            left: 3%;
            top: 75%;
            z-index: 12;
            background: var(--gold);
            color: white;
            padding: 0.9rem 1.2rem;
            border-radius: 40px;
            font-weight: 700;
            letter-spacing: 0.6px;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            text-decoration: none;
            transform: translateX(-20px);
            opacity: 0;
            transition: transform 0.4s ease, box-shadow 0.25s ease, transform 150ms ease;
            animation: slideInLeft 0.7s ease 0.15s forwards;
        }

        .hero-cta-left i {
            font-size: 1.05rem;
        }

        .hero-cta-left:hover {
            transform: translateX(0) scale(1.03);
            box-shadow: 0 16px 40px rgba(0,0,0,0.32);
        }

        /* Slide-in animation */
        @keyframes slideInLeft {
            from { transform: translateX(-40px); opacity: 0; }
            to   { transform: translateX(0);  opacity: 1; }
        }
        
        /* Restaurant Intro Section */
        .restaurant-intro {
            margin-top: 5%;
            padding: 5rem 0;
            background-color: white;
        }
        
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .intro-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
        
        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .intro-image:hover img {
            transform: scale(1.05);
        }
        
        /* Menu Filter Section */
        .menu-filter {
            padding: 2rem 0;
            background-color: var(--neutral-medium);
        }
        
        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .filter-btn {
            padding: 0.8rem 1.5rem;
            background-color: white;
            border: 2px solid var(--gold);
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--gold);
            color: white;
        }
        
        .search-container {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 1rem 1.5rem;
            padding-right: 50px;
            border: 2px solid var(--neutral-medium);
            border-radius: 30px;
            font-family: var(--font-sans);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(0, 74, 127, 0.1);
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.2rem;
            cursor: pointer;
        }
        
        /* Menu Items Section */
        .menu-items {
            padding: 3rem 0 5rem;
            background-color: white;
        }
        
        .category-title {
            margin: 3rem 0 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--neutral-medium);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .menu-item {
            background-color: var(--neutral-light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .menu-item-image {
            height: 200px;
            overflow: hidden;
        }
        
        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .menu-item:hover .menu-item-image img {
            transform: scale(1.1);
        }
        
        .menu-item-content {
            padding: 1.5rem;
        }
        
        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }
        
        .menu-item-title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        
        .menu-item-price {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.2rem;
            white-space: nowrap;
            margin-left: 1rem;
        }
        
        .menu-item-desc {
            color: var(--neutral-dark);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .menu-item-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .menu-item-category {
            font-size: 0.85rem;
            background-color: var(--neutral-medium);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }
        
        .menu-item-rating {
            color: #FF9529;
            font-size: 0.9rem;
        }
        
        /* Special Offers Section */
        .special-offers {
            padding: 5rem 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .offers-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .special-offers h2 {
            color: white;
        }
        
        .special-offers h2:after {
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--gold);
        }
        
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 3fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .offer-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .offer-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .offer-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .offer-desc {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--gold) 0%, var(--wine) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-section h2:after {
            background-color: white;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .cta-btn {
            position: relative;
            display: inline-block;
            padding: 1.2rem 2.5rem;
            background-color: white;
            color: var(--gold);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            animation: none;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .cta-btn:hover:before {
            transform: translateX(100%);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        /* Footer */
        footer {
            background-color: var(--neutral-dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
            filter: brightness(0) invert(1);
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--neutral-medium);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-family: var(--font-sans);
        }
        
        .newsletter-btn {
            background-color: var(--gold);
            color: white;
            border: none;
            padding: 0 1rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter-btn:hover {
            background-color: var(--wine);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--neutral-medium);
            font-size: 0.9rem;
        }
        
        /* WhatsApp floating button */
        .whatsapp-float {
            position: fixed;
            bottom: 6rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
        }
        
        .whatsapp-float i {
            font-size: 1.8rem;
        }
        
        /* Mobile Menu Styling */
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: linear-gradient(135deg, var(--neutral-light) 0%, white 100%);
            z-index: 1001;
            padding: 5rem 2rem 2rem;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .mobile-menu-container.active {
            right: 0;
        }
        
        .mobile-menu {
            list-style: none;
            margin-top: 2rem;
        }
        
        .mobile-menu li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-menu a {
            color: var(--neutral-dark);
            font-weight: 600;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .mobile-menu a:hover {
            background-color: rgba(0, 74, 127, 0.1);
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .mobile-menu a i {
            width: 24px;
            text-align: center;
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-social {
            margin-top: auto;
            padding-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .intro-content {
                gap: 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .intro-content {
                grid-template-columns: 1fr;
            }
            
            .intro-image {
                height: 300px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }
                    
            .nav-menu {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero-video {
                height: 90vh;
                min-height: 800px;
                margin-top: 60px;
            }
            
            .video-controls {
                bottom: 20px;
                right: 20px;
            }
            
            .video-btn {
                width: 45px;
                height: 45px;
            }
            
            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .filter-container {
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .cta-section {
                padding: 4rem 0;
            }
            
            .cta-section p {
                font-size: 1.1rem;
            }
            
            .cta-btn {
                padding: 1rem 2rem;
            }

            .hero-cta-left {
                left: 50%;
                top: 70%;
                transform: translate(-50%, 0);
                width: calc(100% - 3rem);
                justify-content: center;
                padding: 0.9rem 1rem;
                font-size: 0.95rem;
                border-radius: 999px;
                animation: slideInLeftMobile 0.6s ease 0.15s forwards;
            }
            
            @keyframes slideInLeftMobile {
                from { transform: translate(-50%, -10px); opacity: 0; }
                to   { transform: translate(-50%, 0); opacity: 1; }
            }
        }
        
        @media (max-width: 576px) {
            .logo span {
                font-size: 24px;
            }
            
            .hero-video {
                height: 95vh;
                min-height: 600px;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }
            
            .menu-item-header {
                flex-direction: column;
            }
            
            .menu-item-price {
                margin-left: 0;
                margin-top: 0.5rem;
            }
            
            .menu-item-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .cta-btn {
                width: 90%;
                max-width: 300px;
            }
            
            .mobile-menu-container {
                width: 85%;
            }
            
            .whatsapp-float {
                bottom: 5.5rem;
                right: 1.5rem;
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-float i {
                font-size: 1.5rem;
            }
            
            .offers-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Utility classes */
        .text-center {
            text-align: center;
        }
        
        .text-gold {
            color: var(--gold);
        }
        
        .mb-4 {
            margin-bottom: 2rem;
        }
        
        .mt-4 {
            margin-top: 2rem;
        }
        
        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }













        /* Chefs Section */
.chefs-section {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.chef-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.chef-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.chef-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.chef-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition-slow);
    padding: 2rem;
}

.chef-card:hover .chef-overlay {
    opacity: 1;
}

.chef-card:hover .chef-image img {
    transform: scale(1.1);
}

.chef-info {
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.chef-card:hover .chef-info {
    transform: translateY(0);
}

.chef-info h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.chef-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.chef-desc {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.chef-social {
    display: flex;
    gap: 1rem;
}

.chef-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: var(--transition);
}

.chef-social a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.chef-name {
    padding: 1.5rem;
    text-align: center;
}

.chef-name h3 {
    margin-bottom: 0.5rem;
}

.chef-name p {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive styles for chefs section */
@media (max-width: 768px) {
    .chefs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .chef-image {
        height: 300px;
    }
}
    .hero-video{
        margin-top: -1%;
    }