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

/* Variables de colores */
:root {
    --pizarra-black: #1a1a1a;
    --chalk-white: #f8f8f8;
    --gold-accent: #E5B639;
    --gold-dark: #d4a429;
    --chalk-gray: #e0e0e0;
    --shadow-color: rgba(229, 182, 57, 0.3);
}

/* Tipografías */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--chalk-white);
    background: var(--pizarra-black);
    overflow-x: hidden;
}

/* Efecto de textura de pizarra */
.carta-body {
    background: 
        radial-gradient(circle at 20% 80%, rgba(229, 182, 57, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 182, 57, 0.05) 0%, transparent 50%),
        var(--pizarra-black);
    min-height: 100vh;
    position: relative;
}

/* Fondo con imagen de pizza en horno de leña */
.carta-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('../img/bg-rsv2.webp') center center / cover no-repeat,
        radial-gradient(circle at 20% 20%, rgba(26, 26, 26, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 26, 26, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 26, 26, 0.7) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Header */
.carta-header {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 0 1rem 2rem 1rem;
    border: 1px solid rgba(229, 182, 57, 0.3);
}

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

.logo-container {
    margin-bottom: 1rem;
}

.main-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--shadow-color));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border-radius: 2px;
}

.subtitle {
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    color: var(--chalk-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* Navegación */
.carta-nav {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(229, 182, 57, 0.2);
    border-radius: 15px;
    margin: 0 1rem;
    border: 1px solid rgba(229, 182, 57, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
}

.nav-item {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    color: var(--chalk-white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(229, 182, 57, 0.1);
    font-size: 1rem;
}

.nav-item:hover {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-color);
    background: rgba(229, 182, 57, 0.2);
}

/* Secciones principales */
.carta-main {
    position: relative;
    z-index: 5;
}

.carta-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-container {
    position: relative;
}

/* Headers de sección */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

/* Logo de sección eliminado - solo se mantiene el logo principal */

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '~';
    font-size: 2rem;
    color: var(--chalk-gray);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-title::before {
    left: -3rem;
}

.section-title::after {
    right: -3rem;
}

.chalk-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--chalk-white), transparent);
    margin: 1rem auto;
    position: relative;
}

.chalk-divider::before,
.chalk-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
}

.chalk-divider::before {
    left: -15px;
}

.chalk-divider::after {
    right: -15px;
}

.section-note {
    font-family: 'Kalam', cursive;
    color: var(--chalk-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* Grid de menú */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Items del menú */
.menu-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(229, 182, 57, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--gold-accent);
    background: rgba(0, 0, 0, 0.7);
}

.menu-item.featured {
    border: 2px solid var(--gold-accent);
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.menu-item.featured::before {
    content: '⭐';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold-accent);
    color: var(--pizarra-black);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.menu-item.kids {
    border-color: #ff6b6b;
    background: rgba(0, 0, 0, 0.6);
}

.menu-item.kids::before {
    content: '👶';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}

.item-name {
    font-family: 'Kalam', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.item-subtitle {
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    color: var(--chalk-gray);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.item-description {
    font-family: 'Open Sans', sans-serif;
    color: var(--chalk-white);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.item-options {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(229, 182, 57, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--gold-accent);
}

.option-item {
    color: var(--chalk-white);
    font-size: 0.85rem;
    margin: 0.2rem 0;
    padding: 0.2rem 0;
    font-weight: 500;
}

.item-price {
    font-family: 'Kalam', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-accent);
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--gold-accent);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Oferta de vino */
.wine-offer {
    background: rgba(0, 0, 0, 0.6);
    border: 2px dashed var(--gold-accent);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
}

.wine-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wine-text {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    color: var(--chalk-white);
}

.wine-price {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Footer */
.carta-footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 1rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--gold-accent);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 2rem 1rem 0 1rem;
    border: 1px solid rgba(229, 182, 57, 0.3);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.motivation-text {
    margin-bottom: 2rem;
}

.motivation-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.motivation-text p {
    font-family: 'Kalam', cursive;
    color: var(--chalk-gray);
    margin-bottom: 0.5rem;
    font-style: italic;
    font-size: 1rem;
}

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

.footer-section {
    background: rgba(229, 182, 57, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(229, 182, 57, 0.2);
    backdrop-filter: blur(10px);
}

.footer-section-title {
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Kalam', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 0.5rem;
}

.location-info {
    margin-bottom: 0;
}

.location-info h4 {
    font-family: 'Kalam', cursive;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
    font-size: 1.2rem;
}

.location-info p {
    font-family: 'Open Sans', sans-serif;
    color: var(--chalk-gray);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info p {
    font-family: 'Open Sans', sans-serif;
    color: var(--chalk-gray);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.useful-links {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px dotted var(--gold-accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(229, 182, 57, 0.1);
    display: inline-block;
    min-width: 200px;
}

.footer-link:hover {
    background: rgba(229, 182, 57, 0.2);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.maps-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px dotted var(--gold-accent);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.maps-link:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
    transform: translateY(-1px);
}

/* Estilos para iconos en línea con texto */
.whatsapp-icon {
    vertical-align: middle;
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

/* Estilos para enlace de WhatsApp */
.whatsapp-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px dotted var(--gold-accent);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.whatsapp-link:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
    transform: translateY(-1px);
}

.footer-logo {
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 182, 57, 0.3);
}

.footer-logo p {
    font-size: 0.8rem;
    color: var(--chalk-gray);
    margin-bottom: 0.5rem;
}

.runem-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.runem-link:hover {
    transform: scale(1.05);
}

.runem-logo {
    width: 80px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.runem-logo:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .nav-container {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.2rem;
    }
    
    .main-logo {
        width: 150px;
    }
    
    /* Logo de sección eliminado */
}

@media (max-width: 480px) {
    .carta-header {
        padding: 1.5rem 1rem;
    }
    
    .carta-section {
        padding: 2rem 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .item-name {
        font-size: 1.2rem;
    }
    
    .item-price {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
}

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

.menu-item {
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(even) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Efectos de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efectos de hover especiales para elementos featured */
.menu-item.featured:hover {
    background: rgba(229, 182, 57, 0.15);
    box-shadow: 0 15px 40px rgba(229, 182, 57, 0.4);
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

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

/* Efectos de partículas en hover */
.menu-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(229, 182, 57, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 182, 57, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 15px;
}

/* Estilos para alérgenos */
.allergens {
    display: flex;
    gap: 0.3rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.allergens img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.allergens img:hover {
    opacity: 1;
}

/* Leyenda de alérgenos */
.allergens-legend {
    padding: 2rem 0;
    margin-top: 2rem;
}

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

.allergen-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(229, 182, 57, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.allergen-item:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(229, 182, 57, 0.2);
}

.allergen-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    opacity: 0.9;
}

.allergen-info h4 {
    color: var(--gold-accent);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.allergen-info p {
    color: var(--chalk-white);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.allergens-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(229, 182, 57, 0.3);
    backdrop-filter: blur(10px);
}

.allergens-note p {
    color: var(--chalk-white);
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
}

/* Menú flotante colapsable */
.floating-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-toggle {
    background: var(--gold-accent);
    color: var(--pizarra-black);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(229, 182, 57, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.floating-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(229, 182, 57, 0.6);
    background: var(--gold-dark);
}

.toggle-icon {
    font-size: 1.2rem;
}

.toggle-text {
    font-family: 'Kalam', cursive;
}

.floating-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold-accent);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gold-accent);
}

.floating-nav-header h3 {
    color: var(--gold-accent);
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.close-floating {
    background: none;
    border: none;
    color: var(--chalk-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-floating:hover {
    background: var(--gold-accent);
    color: var(--pizarra-black);
}

.floating-nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.floating-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    color: var(--chalk-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
}

.floating-nav-item:hover {
    background: rgba(229, 182, 57, 0.2);
    color: var(--gold-accent);
    transform: translateX(5px);
}

.floating-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.floating-text {
    flex: 1;
}

.floating-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 182, 57, 0.3);
}

.floating-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem;
    background: var(--gold-accent);
    color: var(--pizarra-black);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.floating-action:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.action-icon {
    font-size: 1rem;
}

/* Responsive para menú flotante */
@media (max-width: 768px) {
    .floating-menu {
        top: 1rem;
        right: 1rem;
    }
    
    .floating-toggle {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .floating-nav {
        min-width: 250px;
        padding: 1rem;
    }
    
    .floating-nav-header h3 {
        font-size: 1.1rem;
    }
    
    .floating-nav-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .floating-action {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Ajustes responsive para navegación redondeada */
    .carta-nav {
        margin: 0 0.5rem;
        border-radius: 10px;
    }
    
    .carta-header {
        margin: 0 0.5rem 1rem 0.5rem;
        border-radius: 10px;
    }
    
    .carta-footer {
        margin: 1rem 0.5rem 0 0.5rem;
        border-radius: 10px;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        padding: 1rem;
    }
}

/* Estilos para botones de reserva */
.reserva-btn {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--pizarra-black) !important;
    font-weight: 700;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(229, 182, 57, 0.4);
    animation: pulse 2s infinite;
}

.reserva-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 182, 57, 0.6);
}

.reserva-action {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--pizarra-black) !important;
    font-weight: 700;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(229, 182, 57, 0.4);
}

.reserva-action:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 182, 57, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(229, 182, 57, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(229, 182, 57, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(229, 182, 57, 0.4);
    }
}