/* ============================================
   BRASA DE PIEDRA - Professional Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #8B1A1A;
    --color-primary-dark: #6B1010;
    --color-primary-light: #A52A2A;
    --color-secondary: #D4A574;
    --color-dark: #1A1A1A;
    --color-darker: #0D0D0D;
    --color-light: #F5F0EB;
    --color-white: #FFFFFF;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-gold: #C9A96E;
    --color-gold-light: #E8D5B0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(201,169,110,0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-darker);
    background-image: radial-gradient(rgba(201,169,110,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

body.loading {
    overflow: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--color-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: 20px;
}

.loading-flame {
    font-size: 60px;
    display: inline-block;
    animation: flamePulse 1.5s ease-in-out infinite;
}

@keyframes flamePulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.2); filter: brightness(1.3); }
}

.loading-text {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 3px;
    animation: loadingFill 1.5s ease-in-out;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(255,100,0,0.5));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--color-darker);
    z-index: 1001;
    padding: 100px 40px;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
}

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

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

.mobile-nav-list a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-list a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-banner-images {
    position: absolute;
    inset: 0;
    display: flex;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.8) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

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

.hero-image-1 { transform: skewX(-5deg) translateX(-5%); }
.hero-image-2 { transform: skewX(-3deg); }
.hero-image-3 { transform: skewX(-1deg) translateX(5%); }

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(107,16,16,0.6) 50%, rgba(13,13,13,0.9) 100%);
    z-index: 1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230D0D0D' d='M0,40 C360,80 720,0 1080,50 C1260,65 1380,55 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo-large {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-flame {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(255,100,0,0.6));
    animation: flameGlow 3s ease-in-out infinite;
}

@keyframes flameGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255,100,0,0.6)); }
    50% { filter: drop-shadow(0 0 40px rgba(255,100,0,0.9)); }
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    letter-spacing: 8px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-gold);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.3s both;
}

.script-font {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle-small {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-divider span {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.divider-icon {
    color: var(--color-gold);
    font-size: 14px;
}

.hero-description {
    font-family: var(--font-accent);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-banner .btn {
    animation: fadeInUp 1s ease 0.9s both;
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 28px; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 13px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139,26,26,0.4);
}

.btn-glow {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-glow:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 25px;
    position: relative;
}

.section-header::after {
    content: '✦';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 14px;
    animation: sparkleRotate 4s linear infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: translateX(-50%) rotate(0deg) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) rotate(180deg) scale(1.2); opacity: 0.7; }
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title-light {
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(201,169,110,0.15);
}

.section-title-dark-bg {
    color: var(--color-white);
}

.section-description {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

.section-description-light {
    color: rgba(255,255,255,0.7);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle-light {
    color: var(--color-gold-light);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .section-header {
    animation: headerReveal 0.8s ease both;
}

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

.reveal.active .category-tabs {
    animation: tabsReveal 0.6s ease 0.3s both;
}

.reveal.active .tab-btn {
    animation: tabSlideIn 0.4s ease both;
}

.reveal.active .tab-btn:nth-child(1) { animation-delay: 0.4s; }
.reveal.active .tab-btn:nth-child(2) { animation-delay: 0.45s; }
.reveal.active .tab-btn:nth-child(3) { animation-delay: 0.5s; }
.reveal.active .tab-btn:nth-child(4) { animation-delay: 0.55s; }
.reveal.active .tab-btn:nth-child(5) { animation-delay: 0.6s; }
.reveal.active .tab-btn:nth-child(6) { animation-delay: 0.65s; }
.reveal.active .tab-btn:nth-child(7) { animation-delay: 0.7s; }
.reveal.active .tab-btn:nth-child(8) { animation-delay: 0.75s; }
.reveal.active .tab-btn:nth-child(9) { animation-delay: 0.8s; }
.reveal.active .tab-btn:nth-child(10) { animation-delay: 0.85s; }
.reveal.active .tab-btn:nth-child(11) { animation-delay: 0.9s; }
.reveal.active .tab-btn:nth-child(12) { animation-delay: 0.95s; }

@keyframes tabSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

/* Section Dividers - SVG Waves */
.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.section-divider-top {
    position: relative;
}

.section-divider-top::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%230D0D0D' d='M0,40 C360,100 720,0 1080,50 C1260,75 1380,60 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    z-index: 1;
}

.section-divider-bottom {
    position: relative;
}

.section-divider-bottom::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%230D0D0D' d='M0,60 C360,0 720,100 1080,50 C1260,25 1380,40 1440,60 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    z-index: 1;
}

/* Especialidades Section */
.especialidades {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-primary-dark) 30%, var(--color-primary) 70%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.especialidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.especialidades .glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite;
}

.especialidades .glow-orb:nth-child(1) {
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.especialidades .glow-orb:nth-child(2) {
    bottom: 10%;
    right: -100px;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.menu-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.menu-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: menuParticleFloat 8s ease-in-out infinite;
}

@keyframes menuParticleFloat {
    0% { opacity: 0; transform: translateY(100%) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.especialidades::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230D0D0D' d='M0,60 C360,20 720,80 1080,40 C1260,20 1380,50 1440,30 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.category-tabs::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.category-tabs .tab-indicator {
    position: absolute;
    bottom: -18px;
    height: 8px;
    width: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(201,169,110,0.6);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

@keyframes dotPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.5); opacity: 0.5; }
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 30px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(201,169,110,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.tab-btn:hover::before {
    width: 150px;
    height: 150px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.tab-btn:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.tab-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4b87a 100%);
    color: var(--color-dark);
    border-color: var(--color-gold);
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(201,169,110,0.4), 0 0 15px rgba(201,169,110,0.2);
    transform: translateY(-2px);
    animation: activeTabGlow 2s ease-in-out infinite;
}

@keyframes activeTabGlow {
    0%, 100% { box-shadow: 0 5px 25px rgba(201,169,110,0.4), 0 0 15px rgba(201,169,110,0.2); }
    50% { box-shadow: 0 5px 35px rgba(201,169,110,0.5), 0 0 25px rgba(201,169,110,0.3); }
}

.tab-btn.active::before {
    display: none;
}

.tab-btn.active::after {
    display: none;
}

/* Menu Items */
.menu-items-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.5s ease both;
}

.menu-category-count {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.menu-category-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: categoryShimmer 3s linear infinite;
}

@keyframes categoryShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.menu-items-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,169,110,0.3) 20%, rgba(201,169,110,0.3) 80%, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.menu-items-container::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    border: 2px solid rgba(201,169,110,0.3);
    border-radius: 10px;
}

.scroll-indicator-menu {
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollIndicatorMenu 2s ease-in-out infinite;
}

@keyframes scrollIndicatorMenu {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    opacity: 0;
    position: relative;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px rgba(201,169,110,0.5);
    z-index: 5;
}

.menu-item.visible::after {
    opacity: 0.5;
    animation: centerDotPulse 3s ease-in-out infinite;
}

@keyframes centerDotPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,0.5); }
    50% { box-shadow: 0 0 35px rgba(201,169,110,0.8); }
}

.menu-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 30px rgba(201,169,110,0.7);
}

.menu-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(201,169,110,0.4), transparent 40%, transparent 60%, rgba(201,169,110,0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.menu-item:hover::before {
    opacity: 1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 20px rgba(201,169,110,0.5);
}

.menu-item.visible::after {
    opacity: 0.5;
}

.menu-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.menu-item:not(.reverse) {
    transform: translateX(-50px);
}

.menu-item.reverse {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.menu-item.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.menu-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(201,169,110,0.4), transparent 40%, transparent 60%, rgba(201,169,110,0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.menu-item:hover::before {
    opacity: 1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.menu-item.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item.visible .menu-item-image {
    animation: imageFloat 6s ease-in-out infinite;
}

.menu-item.visible .menu-item-number {
    animation: numberFadeIn 0.5s ease 0.3s both;
}

.menu-item.visible .menu-item-name-wrapper {
    animation: textSlideIn 0.5s ease 0.4s both;
}

.menu-item.visible .menu-item-description {
    animation: textSlideIn 0.5s ease 0.5s both;
}

.menu-item.visible .menu-item-footer {
    animation: textSlideIn 0.5s ease 0.6s both;
}

.menu-item.visible .menu-item-image .corner-accent {
    animation: cornerReveal 0.4s ease 0.4s both;
}

.menu-item.visible .menu-item-image .corner-accent:nth-child(3) { animation-delay: 0.5s; }
.menu-item.visible .menu-item-image .corner-accent:nth-child(4) { animation-delay: 0.6s; }
.menu-item.visible .menu-item-image .corner-accent:nth-child(5) { animation-delay: 0.7s; }

@keyframes cornerReveal {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 0.6; transform: scale(1); }
}

@keyframes cornerReveal {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 0.6; transform: scale(1); }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-0.5deg); }
}

@keyframes numberFadeIn {
    from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

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

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

@keyframes cornerReveal {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 0.6; transform: scale(1); }
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 30px; opacity: 0.5; }
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

@keyframes shimmerSlide {
    from { left: -100%; }
    to { left: 150%; }
}

@keyframes categoryShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

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

@keyframes tabSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes imageLoad {
    from { 
        opacity: 0; 
        transform: scale(1.15);
        filter: blur(10px);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
        filter: blur(0);
    }
}

.menu-item.reverse.visible .menu-item-name-wrapper,
.menu-item.reverse.visible .menu-item-description,
.menu-item.reverse.visible .menu-item-footer {
    animation-name: textSlideInReverse;
}

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

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

.menu-item:hover {
    background: rgba(255,255,255,0.05);
    transform: perspective(1000px) rotateX(0) rotateY(0) translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 50px rgba(201,169,110,0.15);
}

.menu-item:hover .menu-item-image {
    animation: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,169,110,0.2);
}

.menu-item.reverse {
    flex-direction: row-reverse;
}

.menu-item-image {
    flex: 0 0 380px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-item:hover .menu-item-image::before {
    opacity: 1;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201,169,110,0.2);
    border-radius: 15px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.menu-item:hover .menu-item-image::after {
    border-color: rgba(201,169,110,0.5);
    box-shadow: inset 0 0 30px rgba(201,169,110,0.1);
}

.menu-item-image .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 2;
    transition: none;
    pointer-events: none;
}

.menu-item:hover .menu-item-image .shimmer {
    animation: shimmerSlide 0.8s ease forwards;
}

@keyframes shimmerSlide {
    from { left: -100%; }
    to { left: 150%; }
}

.menu-item-image .corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--color-gold);
    border-style: solid;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.menu-item-image .corner-accent.top-left {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.menu-item-image .corner-accent.top-right {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
}

.menu-item-image .corner-accent.bottom-left {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
}

.menu-item-image .corner-accent.bottom-right {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.menu-item:hover .menu-item-image .corner-accent {
    opacity: 0.6;
}

.menu-item.visible .menu-item-image {
    transform: scale(1);
    opacity: 1;
    animation: imageFloat 6s ease-in-out infinite;
    animation-delay: 0.3s;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-item:hover .menu-item-image::before {
    opacity: 1;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201,169,110,0.2);
    border-radius: 15px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.menu-item:hover .menu-item-image::after {
    border-color: rgba(201,169,110,0.5);
    box-shadow: inset 0 0 30px rgba(201,169,110,0.1);
}

.menu-item-image .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 2;
    transition: none;
    pointer-events: none;
}

.menu-item:hover .menu-item-image .shimmer {
    animation: shimmerSlide 0.8s ease forwards;
}

@keyframes shimmerSlide {
    from { left: -100%; }
    to { left: 150%; }
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: imageLoad 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes imageLoad {
    from { 
        opacity: 0; 
        transform: scale(1.15);
        filter: blur(10px);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
        filter: blur(0);
    }
}

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

.menu-item-content {
    flex: 1;
    position: relative;
}

.menu-item-number {
    position: absolute;
    top: -15px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.menu-item:hover .menu-item-number {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(201,169,110,0.25) 0%, rgba(201,169,110,0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #e8d5b0 50%, var(--color-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
    animation: shimmerText 3s linear infinite;
}

.menu-item:hover .menu-item-name {
    transform: translateX(5px);
    animation-duration: 1.5s;
}

.menu-item-name-wrapper {
    position: relative;
    display: inline-block;
}

.menu-item-name-wrapper::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transition: width 0.5s ease;
}

.menu-item:hover .menu-item-name-wrapper::after {
    width: 100%;
}

.menu-item-name-wrapper::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--color-gold);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.menu-item:hover .menu-item-name-wrapper::before {
    height: 80%;
}

.menu-item-description {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid transparent;
}

.menu-item:hover .menu-item-description {
    color: rgba(255,255,255,0.85);
    border-left-color: rgba(201,169,110,0.3);
}

.menu-item-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-item-footer::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0;
    transition: all 0.5s ease;
}

.menu-item.visible .menu-item-footer::before {
    opacity: 0.5;
    animation: lineExpand 0.5s ease 0.7s both;
}

.menu-item.reverse.visible .menu-item-name-wrapper,
.menu-item.reverse.visible .menu-item-description,
.menu-item.reverse.visible .menu-item-footer {
    animation-name: textSlideInReverse;
}

.menu-item-price {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
    color: var(--color-gold);
    font-weight: 700;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 1px;
    border: 1px solid rgba(201,169,110,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 90px;
    text-align: center;
}

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

.menu-item:hover .menu-item-price::before {
    left: 100%;
}

.menu-item:hover .menu-item-price {
    background: linear-gradient(135deg, rgba(201,169,110,0.25) 0%, rgba(201,169,110,0.1) 100%);
    border-color: rgba(201,169,110,0.4);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(201,169,110,0.2);
}

.menu-item-tag {
    font-size: 11px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: tagPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.menu-item-tag::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: tagShimmer 2s linear infinite;
}

@keyframes tagShimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139,26,26,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(139,26,26,0); }
}

/* About Section */
.about-section {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--color-darker) 0%, #1a1210 50%, var(--color-darker) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230D0D0D' d='M0,50 C360,10 720,70 1080,30 C1260,10 1380,40 1440,20 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23151015' d='M0,30 C480,80 960,0 1440,50 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(201,169,110,0.3);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold);
}

.badge-text {
    font-size: 12px;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    text-align: left;
    color: var(--color-gold-light);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
    color: var(--color-white);
}

.about-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Reservations Section */
.reservations-section {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--color-darker) 0%, #151015 50%, var(--color-darker) 100%);
    position: relative;
}

.reservations-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%231a1210' d='M0,40 C480,80 960,0 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.reservations-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%2312100f' d='M0,50 C360,10 720,70 1080,30 C1260,10 1380,40 1440,20 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.reservations-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.reservations-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.reservations-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(201,169,110,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    color: var(--color-gold);
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.reservations-form-container {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.reservations-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Location Section */
.location-section {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--color-darker) 0%, #12100f 50%, var(--color-darker) 100%);
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23151015' d='M0,60 C360,20 720,80 1080,40 C1260,20 1380,50 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.location-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230D0D0D' d='M0,40 C480,80 960,0 1440,50 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-map {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(201,169,110,0.2);
}

.location-map iframe {
    filter: grayscale(50%) brightness(0.8);
    transition: var(--transition);
}

.location-map:hover iframe {
    filter: grayscale(20%) brightness(0.9);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,169,110,0.3);
}

.location-card h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.location-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 140px 0 140px;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-primary-dark) 50%, var(--color-darker) 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%2312100f' d='M0,30 C480,80 960,0 1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230D0D0D' d='M0,50 C360,10 720,70 1080,30 C1260,10 1380,40 1440,20 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

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

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-author h4 {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--color-gold);
    font-size: 12px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background: var(--color-darker);
    color: var(--color-white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230D0D0D' d='M0,40 C480,80 960,0 1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.footer-top {
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 3px;
}

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-nav-section h4,
.footer-info-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.footer-contact-list li {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-schedule-title {
    margin-top: 20px;
}

.footer-schedule {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 40px rgba(37,211,102,0.6); }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

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

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

@keyframes shimmerText {
    to { background-position: 200% center; }
}

@keyframes shimmerSlide {
    from { left: -100%; }
    to { left: 150%; }
}

@keyframes categoryShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

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

@keyframes tabSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes imageLoad {
    from { 
        opacity: 0; 
        transform: scale(1.15);
        filter: blur(10px);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes centerDotPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,0.5); }
    50% { box-shadow: 0 0 35px rgba(201,169,110,0.8); }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

@keyframes scrollIndicatorMenu {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

@keyframes activeTabGlow {
    0%, 100% { box-shadow: 0 5px 25px rgba(201,169,110,0.4), 0 0 15px rgba(201,169,110,0.2); }
    50% { box-shadow: 0 5px 35px rgba(201,169,110,0.5), 0 0 25px rgba(201,169,110,0.3); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

@keyframes menuParticleFloat {
    0% { opacity: 0; transform: translateY(100%) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139,26,26,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(139,26,26,0); }
}

@keyframes tagShimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

@keyframes sparkleRotate {
    0%, 100% { transform: translateX(-50%) rotate(0deg) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) rotate(180deg) scale(1.2); opacity: 0.7; }
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 30px; opacity: 0.5; }
}

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

@keyframes cornerReveal {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 0.6; transform: scale(1); }
}

/* Responsive */

/* Tablet */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-banner-images {
        flex-direction: column;
    }
    
    .hero-image {
        transform: none !important;
        flex: 1;
    }
    
    .hero-image img {
        height: 100%;
    }
    
    .hero-brand {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-badge {
        right: 20px;
        bottom: -15px;
        padding: 20px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .reservations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .menu-item-image {
        flex: 0 0 300px;
        height: 220px;
    }
    
    .menu-item {
        gap: 30px;
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    html {
        scroll-padding-top: 70px;
    }
    
    body {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 0;
    }
    
    .header.scrolled {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
    
    .lang-toggle {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    /* Hero Mobile */
    .hero-banner {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-banner-images {
        opacity: 0.6;
    }
    
    .hero-banner-overlay {
        background: linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.85) 50%, rgba(13,13,13,0.95) 100%);
    }
    
    .hero-flame {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .hero-brand {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin-bottom: 8px;
    }
    
    .hero-subtitle-small {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .hero-divider span {
        width: 40px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-banner .btn {
        padding: 14px 35px;
        font-size: 12px;
    }
    
    .hero-banner::after {
        height: 50px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .section-header::before {
        width: 50px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Especialidades Mobile */
    .especialidades {
        padding: 80px 0 60px;
    }
    
    .especialidades::after {
        height: 40px;
        bottom: -40px;
    }
    
    .especialidades .glow-orb {
        width: 150px;
        height: 150px;
    }
    
    .menu-particles {
        display: none;
    }
    
    /* Category Tabs - Horizontal Scroll */
    .category-tabs {
        gap: 8px;
        margin-bottom: 35px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 15px 15px;
        margin-left: -15px;
        margin-right: -15px;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tabs::before {
        display: none;
    }
    
    .category-tabs::after {
        display: none;
    }
    
    .category-tabs .tab-indicator {
        display: none;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
        scroll-snap-align: start;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-btn::before,
    .tab-btn::after {
        display: none;
    }
    
    .tab-btn.active {
        animation: none;
    }
    
    /* Menu Items Mobile */
    .menu-items-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .menu-items-container::before {
        display: none;
    }
    
    .menu-items-container::after {
        display: none;
    }
    
    .scroll-indicator-menu {
        display: none;
    }
    
    .menu-category-header {
        margin-bottom: 25px;
    }
    
    .menu-category-count {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .menu-item {
        flex-direction: column !important;
        gap: 20px;
        padding: 20px;
        margin-bottom: 40px;
        transform: translateY(30px) !important;
        border-radius: 15px;
    }
    
    .menu-item::after {
        display: none;
    }
    
    .menu-item::before {
        display: none;
    }
    
    .menu-item.visible {
        transform: translateY(0) !important;
    }
    
    .menu-item.visible .menu-item-image {
        animation: none;
    }
    
    .menu-item:hover {
        transform: translateY(-3px) scale(1.01) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .menu-item-image {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 12px;
    }
    
    .menu-item-image .corner-accent {
        display: none;
    }
    
    .menu-item-image .shimmer {
        display: none;
    }
    
    .menu-item-image img {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
    
    .menu-item-number {
        font-size: 40px;
        top: -8px;
        right: 5px;
        opacity: 0.5;
    }
    
    .menu-item-name {
        font-size: 1.3rem;
        margin-bottom: 10px;
        animation: none !important;
    }
    
    .menu-item-name-wrapper {
        animation: none !important;
    }
    
    .menu-item-name-wrapper::before {
        display: none;
    }
    
    .menu-item-name-wrapper::after {
        width: 40px;
    }
    
    .menu-item-description {
        font-size: 13px;
        line-height: 1.7;
        padding-left: 12px;
        margin-bottom: 15px;
        animation: none !important;
    }
    
    .menu-item-footer {
        gap: 12px;
        animation: none !important;
    }
    
    .menu-item-footer::before {
        display: none;
    }
    
    .menu-item-price {
        padding: 8px 18px;
        font-size: 14px;
        min-width: 80px;
    }
    
    .menu-item-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    /* About Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-section::before,
    .about-section::after {
        height: 40px;
    }
    
    .about-section::before {
        top: -40px;
    }
    
    .about-section::after {
        bottom: -40px;
    }
    
    .about-image {
        padding: 0 10px;
    }
    
    .about-image img {
        border-radius: 12px;
    }
    
    .about-image-badge {
        right: 15px;
        bottom: -12px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .about-content {
        padding: 0 10px;
    }
    
    .about-content .section-subtitle {
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .about-text {
        font-size: 14px;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Reservations Mobile */
    .reservations-section {
        padding: 60px 0;
    }
    
    .reservations-section::before,
    .reservations-section::after {
        height: 40px;
    }
    
    .reservations-section::before {
        top: -40px;
    }
    
    .reservations-section::after {
        bottom: -40px;
    }
    
    .reservations-info {
        padding: 0 10px;
        text-align: center;
    }
    
    .reservations-info .section-subtitle,
    .reservations-info .section-title {
        text-align: center;
    }
    
    .reservations-description {
        font-size: 14px;
        text-align: center;
    }
    
    .reservations-contact {
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-item strong {
        font-size: 13px;
    }
    
    .contact-item p {
        font-size: 13px;
    }
    
    .reservations-form-container {
        padding: 25px 20px;
        border-radius: 12px;
        margin: 0 10px;
    }
    
    .reservations-form {
        gap: 16px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 48px;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reservations-form .btn {
        padding: 16px;
        font-size: 14px;
        min-height: 52px;
        border-radius: 10px;
    }
    
    /* Location Mobile */
    .location-section {
        padding: 60px 0;
    }
    
    .location-section::before,
    .location-section::after {
        height: 40px;
    }
    
    .location-section::before {
        top: -40px;
    }
    
    .location-section::after {
        bottom: -40px;
    }
    
    .location-grid {
        gap: 25px;
        padding: 0 10px;
    }
    
    .location-map {
        height: 250px;
        border-radius: 12px;
    }
    
    .location-card {
        padding: 20px;
        border-radius: 10px;
    }
    
    .location-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .location-card p {
        font-size: 13px;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section::before,
    .testimonials-section::after {
        height: 40px;
    }
    
    .testimonials-section::before {
        top: -40px;
    }
    
    .testimonials-section::after {
        bottom: -40px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .testimonial-stars {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .testimonial-author h4 {
        font-size: 13px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Footer Mobile */
    .footer::before {
        height: 40px;
        top: -40px;
    }
    
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 10px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo .logo-text {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .footer-nav-section h4,
    .footer-info-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
        display: block;
    }
    
    .footer-contact-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-schedule {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
        padding: 0 10px;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    /* Mobile Menu Improvements */
    .mobile-menu {
        width: 100%;
        max-width: 320px;
        padding: 80px 30px;
    }
    
    .mobile-nav-list a {
        font-size: 18px;
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero Small Mobile */
    .hero-banner {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-flame {
        font-size: 30px;
    }
    
    .hero-brand {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-subtitle-small {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .hero-divider {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-divider span {
        width: 30px;
    }
    
    .divider-icon {
        font-size: 10px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-banner .btn {
        padding: 12px 28px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .scroll-indicator span {
        width: 22px;
        height: 36px;
    }
    
    /* Tabs Small Mobile */
    .category-tabs {
        padding: 0 10px 12px;
        margin-left: -10px;
        margin-right: -10px;
        gap: 6px;
    }
    
    .tab-btn {
        padding: 8px 14px;
        font-size: 11px;
        min-height: 40px;
    }
    
    /* Menu Items Small Mobile */
    .menu-item {
        padding: 15px;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .menu-item-image {
        aspect-ratio: 4 / 3;
        border-radius: 10px;
    }
    
    .menu-item-number {
        font-size: 32px;
        top: -5px;
    }
    
    .menu-item-name {
        font-size: 1.15rem;
    }
    
    .menu-item-description {
        font-size: 12px;
        padding-left: 10px;
    }
    
    .menu-item-price {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .menu-item-tag {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    /* About Small Mobile */
    .about-section {
        padding: 50px 0;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    /* Reservations Small Mobile */
    .reservations-form-container {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    /* Location Small Mobile */
    .location-map {
        height: 200px;
    }
    
    .location-card {
        padding: 15px;
    }
    
    /* Testimonials Small Mobile */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    /* Footer Small Mobile */
    .footer-top {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* WhatsApp Small Mobile */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-brand {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .tab-btn {
        padding: 7px 12px;
        font-size: 10px;
        min-height: 38px;
    }
    
    .menu-item {
        padding: 12px;
    }
    
    .menu-item-name {
        font-size: 1.05rem;
    }
    
    .menu-item-description {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .menu-item-image {
        animation: none !important;
    }
    
    .menu-item-name {
        animation: none !important;
    }
    
    .particle,
    .menu-particle,
    .glow-orb {
        display: none;
    }
    
    .hero-banner:hover .hero-image img {
        transform: none;
    }
    
    .menu-item:hover .menu-item-image img {
        transform: none;
    }
    
    .tab-btn:hover {
        transform: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .menu-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .menu-item:active {
        transform: scale(0.98);
        background: rgba(255,255,255,0.05);
    }
    
    .tab-btn:active {
        transform: scale(0.95);
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .social-link:active {
        transform: scale(0.9);
    }
    
    .slider-btn:active {
        transform: scale(0.9);
    }
    
    .location-card:active {
        transform: scale(0.98);
    }
    
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

/* Safe Area for Notch Devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .mobile-menu {
        padding-right: max(30px, env(safe-area-inset-right));
        padding-left: max(30px, env(safe-area-inset-left));
    }
    
    .whatsapp-btn {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .footer-bottom {
        padding-bottom: max(25px, env(safe-area-inset-bottom));
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-banner-content {
        padding: 0 30px;
    }
    
    .hero-flame {
        font-size: 28px;
    }
    
    .hero-brand {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .especialidades {
        padding: 50px 0;
    }
    
    .category-tabs {
        margin-bottom: 25px;
    }
    
    .menu-item {
        margin-bottom: 25px;
    }
    
    .menu-item-image {
        aspect-ratio: 16 / 9;
    }
}
