/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #DAA520;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --accent-blue: #00D4FF;
    --accent-purple: #9C27B0;
    --accent-green: #4CAF50;
    --accent-red: #FF6B35;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --shadow-gold: 0 0 30px rgba(218, 165, 32, 0.5);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.6);
    --gradient-gold: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
    --gradient-rainbow: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dda0dd);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.preloader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    animation: logoSpin 2s linear infinite;
    box-shadow: var(--shadow-gold);
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    animation: loadingProgress 3s ease-in-out forwards;
}

.loading-text {
    font-size: 1.1rem;
    opacity: 0.8;
    animation: fadeInOut 2s ease-in-out infinite;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    overflow-x: hidden;
}

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

/* Promotional Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-rainbow);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    z-index: 1001;
    animation: bannerSlide 0.5s ease-out;
    font-weight: 600;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: bannerPulse 2s ease-in-out infinite;
}

.banner-text {
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner-close:hover {
    transform: translateY(-50%) scale(1.2);
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    position: relative;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(15px);
}

.logo:hover .logo-glow {
    opacity: 0.7;
}

.logo:hover .logo-img {
    transform: rotate(360deg) scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.pulse-btn {
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.6);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:active .btn-ripple {
    width: 300px;
    height: 300px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.6));
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--gold);
    animation: starTwinkle 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateX(-50px);
    animation: titleSlideIn 1s ease-out forwards;
}

.title-line:nth-child(1) {
    color: var(--white);
    animation-delay: 0.5s;
}

.title-line.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 1s;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-gold);
    animation: underlineExpand 1s ease-out 1.5s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
}

.magic-btn {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.magic-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.6);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(218, 165, 32, 0.5);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.glass-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.glass-btn:hover .glass-shine {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatingIcon 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; }
.floating-icon:nth-child(2) { top: 20%; right: 10%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; }
.floating-icon:nth-child(4) { bottom: 10%; right: 20%; }

.morphing-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: morphingImage 6s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-gold);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceArrow 2s ease-in-out infinite;
}

.scroll-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.2);
    color: var(--gold-light);
}

/* Features Banner */
.features-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-gray), var(--light-gray));
    position: relative;
    overflow: hidden;
}

.features-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23DAA520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.interactive-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
    transition: left 0.6s ease;
}

.interactive-card:hover::before {
    left: 100%;
}

.interactive-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--black);
}

.interactive-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Wok Section */
.wok-section {
    padding: 6rem 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-badge i {
    color: var(--gold);
    animation: fireFlicker 1.5s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.glitch-text {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    animation: glitchEffect 3s ease-in-out infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: #ff0000;
    animation: glitchBefore 3s ease-in-out infinite;
    z-index: -1;
}

.glitch-text::after {
    color: #00ffff;
    animation: glitchAfter 3s ease-in-out infinite;
    z-index: -2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.wok-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wok-image-container {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.wok-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(1.1);
}

.wok-img.active-img {
    opacity: 1;
    transform: scale(1);
}

.image-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.img-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.img-btn.active,
.img-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.steam-effect {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.steam {
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
    animation: steamRise 2s ease-in-out infinite;
}

.steam:nth-child(2) { animation-delay: 0.3s; }
.steam:nth-child(3) { animation-delay: 0.6s; }

.wok-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ingredients {
    margin-bottom: 2rem;
}

.color-change-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.color-change-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.color-change-card:hover::before {
    opacity: 0.1;
}

.color-change-card:hover {
    border-color: var(--accent-green);
    transform: translateX(10px);
}

.color-change-card[data-color="#FF6B35"]:hover::before {
    background: var(--accent-red);
}

.color-change-card[data-color="#FF6B35"]:hover {
    border-color: var(--accent-red);
}

.color-change-card[data-color="#9C27B0"]:hover::before {
    background: var(--accent-purple);
}

.color-change-card[data-color="#9C27B0"]:hover {
    border-color: var(--accent-purple);
}

.ingredient-group h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neon-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.neon-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 15px;
    z-index: -1;
    animation: neonPulse 2s ease-in-out infinite;
}

.price-container {
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.price-detail {
    font-size: 1rem;
    color: var(--white);
}

.extra-price {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.rainbow-btn {
    background: var(--gradient-rainbow);
    background-size: 300% 300%;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: rainbowShift 3s ease-in-out infinite;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rainbow-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.rainbow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-rainbow);
    background-size: 300% 300%;
    animation: rainbowShift 2s ease-in-out infinite reverse;
    z-index: -1;
}

/* Otros Platos */
.otros-platos {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

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

.hover-transform {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-transform:hover {
    transform: translateY(-15px) rotateY(5deg);
}

.plato-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.plato-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.plato-card:hover .card-overlay {
    opacity: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.plato-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.plato-card:hover .plato-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plato-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.plato-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.plato-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.plato-card:hover .plato-info h3 {
    transform: translateX(10px);
}

.plato-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.price-symbol {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.glow-btn {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.glow-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6);
}

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

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

/* Menu Completo */
.menu-completo {
    padding: 6rem 0;
    background: var(--dark-gray);
    position: relative;
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.menu-category {
    margin-bottom: 4rem;
    opacity: 1;
    transition: all 0.5s ease;
}

.menu-category.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.category-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.category-title::before,
.category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.interactive-menu-item {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.menu-item-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.1;
    transition: left 0.5s ease;
    z-index: 1;
}

.interactive-menu-item:hover .menu-item-bg {
    left: 0;
}

.interactive-menu-item:hover {
    border-color: var(--gold);
    transform: translateX(10px) scale(1.02);
}

.menu-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.interactive-menu-item:hover .menu-img {
    transform: rotate(5deg) scale(1.1);
}

.menu-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.menu-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.interactive-menu-item:hover .menu-name {
    color: var(--gold);
}

.menu-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-order-menu {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-order-menu:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

.item-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    filter: blur(8px);
}

.interactive-menu-item:hover .item-glow {
    opacity: 0.3;
}

/* Testimonials Banner */
.testimonials-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    position: relative;
    overflow: hidden;
}

.testimonials-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
}

.testimonial-item {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 0.2rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #ccc;
    font-size: 0.9rem;
}

/* Contacto Corporativo */
.contacto-corporativo {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
}

.glass-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.glass-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    filter: blur(10px);
}

.form-group input:focus + .input-glow,
.form-group textarea:focus + .input-glow {
    opacity: 0.3;
}

.holographic-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: holographicShift 4s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.holographic-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.holographic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 300% 300%;
    animation: holographicShift 3s ease-in-out infinite reverse;
    z-index: -1;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: footerBgMove 15s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    position: relative;
}

.footer-logo-img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: logoPulse 2s ease-in-out infinite;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(10deg);
}

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

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section p:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-section i {
    color: var(--gold);
    width: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.1;
    transition: left 0.3s ease;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    position: relative;
    z-index: 1;
}

.footer-logo-center-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo-center-img:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: var(--shadow-gold);
}

.footer-slogan {
    font-family: var(--font-primary);
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    animation: sloganGlow 3s ease-in-out infinite;
}

/* WhatsApp Float */
.animated-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatBounce 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.animated-float:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
}

.float-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 2s ease-out infinite;
}

/* Animations */
@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes bannerSlide {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

@keyframes bannerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 0 40px rgba(218, 165, 32, 0.8); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes titleSlideIn {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

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

@keyframes floatingIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes morphingImage {
    0%, 100% { border-radius: 20px; }
    25% { border-radius: 50px 20px 50px 20px; }
    50% { border-radius: 20px 50px 20px 50px; }
    75% { border-radius: 50px; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; filter: blur(20px); }
    50% { opacity: 0.6; filter: blur(25px); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes patternMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-20px); }
    50% { transform: translateX(-20px) translateY(20px); }
    75% { transform: translateX(20px) translateY(20px); }
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(0.9) rotate(2deg); }
    75% { transform: scale(1.05) rotate(-1deg); }
}

@keyframes glitchEffect {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50% { transform: translateX(0); }
}

@keyframes glitchBefore {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-1px); }
    20% { transform: translateX(1px); }
}

@keyframes glitchAfter {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(1px); }
    20% { transform: translateX(-1px); }
}

@keyframes steamRise {
    0% { transform: translateY(0) scaleX(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scaleX(0.8); opacity: 0.5; }
    100% { transform: translateY(-40px) scaleX(0.6); opacity: 0; }
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(218, 165, 32, 0.5); }
    50% { box-shadow: 0 0 20px rgba(218, 165, 32, 0.8); }
}

@keyframes holographicShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes footerBgMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(30px) translateY(-20px); }
    66% { transform: translateX(-20px) translateY(30px); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes sloganGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(218, 165, 32, 0.5); }
    50% { text-shadow: 0 0 20px rgba(218, 165, 32, 0.8); }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rippleEffect {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .header {
        top: 30px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero {
        padding-top: 160px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .wok-content {
        grid-template-columns: 1fr;
    }
    
    .platos-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .glass-form {
        padding: 2rem 1rem;
    }
    
    .animated-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .magic-btn,
    .glass-btn {
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Focus */
*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Preloader Hide */
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

