/* ===== VARIABLES Y RESET ===== */
:root {
    --color-dark: #0f0f0f;
    --color-dark-lighter: #1a1a1a;
    --color-gold: #d4af37;
    --color-gold-light: #e6c158;
    --color-gold-dark: #b8941f;
    --color-light: #f5f5f5;
    --color-gray: #8a8a8a;
    --color-gray-dark: #3a3a3a;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== LAYOUT GENERAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--color-light);
}

.section-description {
    color: var(--color-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 20px auto;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 10px;
    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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== HEADER Y NAVEGACIÓN ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    height: var(--header-height);
}

header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1001;
}

/* Navegación Desktop */
.nav-desktop {
    display: flex;
    gap: 40px;
    position: relative;
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Botón Reserva */
.btn-reserva {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-reserva:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* ===== HAMBURGUESA MÓVIL ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-light);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

/* ===== NAVEGACIÓN MÓVIL ===== */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile-content {
    width: 100%;
    max-width: 400px;
    padding: 0 30px;
}

.nav-mobile-links {
    list-style: none;
    margin-bottom: 40px;
}

.nav-mobile-links li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.nav-mobile.active .nav-mobile-links li {
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile-links li:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile-links li:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile-links li:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile-links li:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile-links li:nth-child(6) { transition-delay: 0.35s; }

.nav-mobile-links a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 139, 139, 0.1);
    transition: var(--transition);
    font-family: 'Cormorant Garamond', serif;
}

.nav-mobile-links a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

.btn-reserva-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
}

.nav-mobile.active .btn-reserva-mobile {
    opacity: 1;
    transform: translateY(0);
}

.btn-reserva-mobile:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Capa de partículas doradas - responsive */
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.25) 0%, transparent 25%),
        /* Imagen de fondo */
        url('imagenes/Ubicacion/Ubi3.jpeg') center/cover no-repeat;
    z-index: -2;
    
    /* Efectos base que funcionan en todos los dispositivos */
    filter: brightness(1.15) contrast(1.2) saturate(1.25);
    
    /* Animación solo en desktop para mejor performance en móvil */
    animation: goldenPulse 10s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        125deg,
        rgba(212, 175, 55, 0.2) 0%,
        rgba(15, 15, 15, 0.6) 45%,
        rgba(15, 15, 15, 0.75) 100%
    );
    z-index: -1;
    
    /* Mejorar legibilidad en móviles */
    background: linear-gradient(
        125deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(15, 15, 15, 0.7) 35%,
        rgba(15, 15, 15, 0.85) 100%
    );
}

@keyframes goldenPulse {
    0%, 100% {
        filter: brightness(1.15) contrast(1.2) saturate(1.25);
        background-size: 100% auto;
    }
    50% {
        filter: brightness(1.25) contrast(1.3) saturate(1.35);
        background-size: 105% auto;
    }
}

/* ===== RESPONSIVE OPTIMIZATIONS ===== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-background {
        /* Reducir intensidad de partículas en tablets */
        background: 
            radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 20%),
            radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 20%),
            url('imagenes/Ubicacion/Ubi3.jpeg') center/cover no-repeat;
        
        /* Ajustar efectos visuales */
        filter: brightness(1.1) contrast(1.15) saturate(1.2);
    }
    
    .hero-overlay {
        background: linear-gradient(
            125deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(15, 15, 15, 0.75) 40%,
            rgba(15, 15, 15, 0.9) 100%
        );
    }
}

/* Móviles */
@media (max-width: 768px) {
    .hero-background {
        /* Eliminar animaciones para mejor performance en móviles */
        animation: none;
        
        /* Partículas más sutiles en móvil */
        background: 
            radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 15%),
            radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 15%),
            url('imagenes/Ubicacion/Ubi3.jpeg') center/cover no-repeat;
        
        /* Efectos más conservadores para móvil */
        filter: brightness(1.05) contrast(1.1) saturate(1.15);
        
        /* Asegurar que la imagen cubra bien en móvil */
        background-position: center 30%;
    }
    
    .hero-overlay {
        /* Overlay más oscuro en móvil para mejor legibilidad del texto */
        background: linear-gradient(
            to bottom,
            rgba(15, 15, 15, 0.4) 0%,
            rgba(15, 15, 15, 0.8) 50%,
            rgba(15, 15, 15, 0.95) 100%
        );
    }
    
    /* Desactivar completamente animaciones en móviles antiguos */
    @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
        .hero-background {
            animation: none;
            filter: brightness(1.05) contrast(1.1);
        }
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-background {
        /* Simplificar aún más para móviles pequeños */
        background: 
            radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
            url('imagenes/Ubicacion/Ubi3.jpeg') center/cover no-repeat;
        
        filter: brightness(1.05) contrast(1.05);
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(15, 15, 15, 0.3) 0%,
            rgba(15, 15, 15, 0.85) 60%,
            rgba(15, 15, 15, 0.95) 100%
        );
    }
}

/* Modo alto contraste para mejor accesibilidad */
@media (prefers-contrast: high) {
    .hero-background {
        filter: brightness(1.2) contrast(1.4);
    }
    
    .hero-overlay {
        background: rgba(15, 15, 15, 0.9);
    }
}

/* Modo movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .hero-background {
        animation: none;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-background {
        background-position: center 40%;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(15, 15, 15, 0.5) 0%,
            rgba(15, 15, 15, 0.85) 70%,
            rgba(15, 15, 15, 0.95) 100%
        );
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--color-light);
}

.title-line {
    display: block;
    font-weight: 700;
    letter-spacing: 3px;
}

.title-subline {
    display: block;
    font-size:3rem;
    color: var(--color-gold);
    font-weight: bold;
    letter-spacing: 8px;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    font-weight: bold;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.scroll-indicator {
    width: 6px;
    height: 40px;
    background: var(--color-gold);
    margin: 10px auto 0;
    position: relative;
    animation: scrollBounce 1s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--color-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-light);
}

.about-content p {
    color: var(--color-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-light);
}

.feature p {
    color: var(--color-gray);
    margin: 0;
    font-size: 1rem;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 5px;
}

/* ===== MENU SECTION ===== */
.menu {
    background: var(--color-dark-lighter);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid white;
    color: var(--color-gray);
    border-radius: 70px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: gold;
    border-color: var(--color-gold);
}

.filter-btn.active::before,
.filter-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background: var(--color-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.menu-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-badge.new {
    background: #e74c3c;
    color: white;
}

.menu-card-content {
    padding: 25px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.menu-card-title {
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 5px;
}

.menu-card-price {
    font-size: 1.4rem;
    color: var(--color-gold);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.menu-card-description {
    color: var(--color-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: rgba(139, 139, 139, 0.1);
    color: var(--color-gray);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.menu-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-cta p {
    color: var(--color-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-light);
}

.gallery-content p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ===== LOCATION SECTION ===== */
.location {
    background: var(--color-dark-lighter);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-light);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--color-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p,
.contact-text a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--color-gold);
}

.transport-info {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-gold);
}

.transport-info h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.transport-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transport-item {
    display: flex;
    align-items: center;
    color: var(--color-gray);
}

.transport-item i {
    color: var(--color-gold);
    margin-right: 10px;
    width: 20px;
}

.location-map {
    height: 100%;
}

.map-container {
    height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--color-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(139, 139, 139, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-description {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 139, 139, 0.1);
    color: var(--color-gray);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-section h3 {
    color: var(--color-light);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray);
}

.footer-contact-item i {
    color: var(--color-gold);
    width: 16px;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: var(--color-gray);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(139, 139, 139, 0.1);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(139, 139, 139, 0.1);
    border: 1px solid rgba(139, 139, 139, 0.2);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--color-light);
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--color-gold);
    color: var(--color-dark);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--color-gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 139, 139, 0.1);
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* ===== ANIMACIONES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-container,
    .location-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .btn-reserva {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-subline {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
    }
}