    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: linear-gradient(135deg, #f8f5f0 0%, #f2ede5 50%, #ede6db 100%);
            color: #2c1810;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: white;
            border-radius: 20px;
            border: 2px solid rgba(218, 165, 32, 0.3);
            box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15);
        }

        .logo {
            width: 250px;
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
        }

        .restaurant-title {
            font-family: 'Playfair Display', serif;
            font-size: 3em;
            color: #DAA520;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .subtitle {
            font-size: 1.2em;
            color: #B8860B;
            font-style: italic;
            margin-bottom: 20px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .menu-section {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(218, 165, 32, 0.2);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .menu-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(218, 165, 32, 0.2);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2em;
            color: #DAA520;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #DAA520, #B8860B);
            border-radius: 2px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(218, 165, 32, 0.2);
            transition: padding 0.3s ease;
        }

        .menu-item:hover {
            padding: 20px 10px;
            background: rgba(218, 165, 32, 0.05);
            border-radius: 8px;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .item-info {
            flex: 1;
            padding-right: 20px;
        }

        .item-name {
            font-weight: 600;
            font-size: 1.1em;
            color: #DAA520;
            margin-bottom: 8px;
            text-transform: capitalize;
        }

        .item-description {
            font-size: 0.95em;
            color: #5d4037;
            line-height: 1.5;
        }

        .item-price {
            font-size: 1.2em;
            font-weight: 600;
            color: #ff6b47;
            white-space: nowrap;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .special-box {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid #DAA520;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
        }

        .special-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .special-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8em;
            color: #DAA520;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .special-content {
            position: relative;
            z-index: 1;
        }

        .box-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .box-item {
            background: rgba(218, 165, 32, 0.1);
            padding: 10px;
            border-radius: 8px;
            font-size: 0.9em;
            color: #5d4037;
            border: 1px solid rgba(218, 165, 32, 0.3);
        }

        .footer {
            text-align: center;
            padding: 20px 20px;
            margin-top: 50px;
            border-top: 2px solid rgba(218, 165, 32, 0.3);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
        }

        .footer-text {
            color: #B8860B;
            font-size: 1.1em;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .menu-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .restaurant-title {
                font-size: 2.2em;
            }
            
            .menu-section {
                padding: 20px;
            }
            
            .menu-item {
                flex-direction: column;
                align-items: stretch;
            }
            
            .item-info {
                padding-right: 0;
                margin-bottom: 10px;
            }
            
            .item-price {
                text-align: right;
                font-size: 1.3em;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .footer.fade-in {
    animation-delay: 1s;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}








body {
            font-family: 'Lato', sans-serif;
            background: linear-gradient(135deg, #f8f5f0 0%, #f2ede5 50%, #ede6db 100%);
            color: #2c1810;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
            padding: 40px 20px 20px 20px;
            background: white;
            border-radius: 20px;
            border: 2px solid rgba(218, 165, 32, 0.3);
            box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15);
        }

        .logo {
            width: 250px;
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
        }

        .restaurant-title {
            font-family: 'Playfair Display', serif;
            font-size: 3em;
            color: #DAA520;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .subtitle {
            font-size: 1.2em;
            color: #B8860B;
            font-style: italic;
            margin-bottom: 30px;
        }

        /* Navegación */
        .nav-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0;
            margin-top: 20px;
            background: linear-gradient(135deg, #DAA520, #B8860B);
            border-radius: 50px;
            padding: 10px;
            box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
        }

        .nav-item {
            text-decoration: none;
            padding: 15px 30px;
            color: white;
            font-weight: 500;
            font-size: 1.1em;
            border-radius: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            transition: left 0.3s ease;
        }

        .nav-item:hover::before {
            left: 0;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .nav-item.active {
            background: rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
        }



    .nav-left {
    display: flex;
    gap: 0;
}

.flag-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.flag-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.flag-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

        /* Contenido principal */
        .main-content {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 60px 40px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid rgba(218, 165, 32, 0.2);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .main-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        .coming-soon {
            font-family: 'Playfair Display', serif;
            font-size: 3.5em;
            color: #DAA520;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease;
        }

        .main-text {
            font-size: 1.3em;
            color: #5d4037;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .feature-item {
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(218, 165, 32, 0.05));
            padding: 30px 20px;
            border-radius: 15px;
            border: 1px solid rgba(218, 165, 32, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(218, 165, 32, 0.2);
        }

        .feature-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

        .feature-text {
            font-size: 1.1em;
            color: #5d4037;
            font-weight: 500;
        }

        .final-message {
            font-size: 1.4em;
            color: #DAA520;
            font-style: italic;
            margin-top: 40px;
            font-weight: 600;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .cta-text {
            font-size: 1.6em;
            color: #ff6b47;
            font-weight: bold;
            margin-top: 30px;
            animation: pulse 2s infinite;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 25px 20px;
            margin-top: 50px;
            border-top: 2px solid rgba(218, 165, 32, 0.3);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
        }

        .footer-text {
            color: #B8860B;
            font-size: 1.1em;
            font-style: italic;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128c7e;
        }

        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .restaurant-title {
                font-size: 2.2em;
            }
            
            .coming-soon {
                font-size: 2.5em;
            }
            
            .main-text {
                font-size: 1.1em;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 5px;
                border-radius: 15px;
                padding: 15px;
            }
            
            .nav-item {
                padding: 12px 20px;
                text-align: center;
            }
            
            .main-content {
                padding: 40px 20px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
        }



        .hero-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    margin: 30px auto 40px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 90%;
        margin: 20px auto 30px auto;
    }
}