* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    padding-top: 60px; /* Espacio para el menú fijo */
    color: #333;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Copos de nieve globales para toda la página */
body::before,
body::after {
    content: '❄️';
    position: fixed;
    top: -20px;
    font-size: 1.2em;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.6;
}

body::before {
    left: 5%;
    animation: snowflake-fall-global 15s linear infinite;
}

body::after {
    left: 95%;
    animation: snowflake-fall-global 18s linear infinite;
    animation-delay: -5s;
}

/* Animación de copos de nieve global - cae por toda la altura */
@keyframes snowflake-fall-global {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0.3;
    }
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 30%, #bbdefb 100%);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

/* Hero Banner - Full Width (40% de pantalla) */
.hero-banner {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(74, 124, 42, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-link {
    display: inline-block;
    color: white;
    text-decoration: underline;
    opacity: 0.9;
    font-size: 1.1em;
    transition: opacity 0.3s;
}

.hero-link:hover {
    opacity: 1;
}

/* Banner Combinado Navidad + Complejo Esgueva */
.hero-combined-banner {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    color: #1565C0;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    max-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-combined-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.hero-navidad-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Logo de fondo integrado */
.navidad-logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navidad-logo-bg {
    max-width: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: blur(1px);
}

.navidad-complejo-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #1565C0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.complejo-esgueva-text {
    color: #2d5016;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.hero-complejo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.navidad-icon {
    font-size: 3em;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

.navidad-text h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #1565C0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navidad-discount {
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px 0;
    color: #1976D2;
}

.navidad-discount-number {
    color: #1565C0;
    font-size: 1.3em;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.navidad-subtext {
    font-size: 1.1em;
    opacity: 0.9;
    color: #1976D2;
    margin-top: 10px;
}

.navidad-extra-text {
    font-size: 0.95em;
    margin-top: 10px;
    opacity: 0.85;
    color: #1976D2;
}

.complejo-hero-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2d5016;
    margin: 0;
}

.complejo-hero-subtitle {
    font-size: 1.3em;
    font-weight: 600;
    color: #2d5016;
    margin: 0;
}

.complejo-hero-description {
    font-size: 1em;
    line-height: 1.6;
    color: #556356;
    margin: 0;
}

.complejo-services-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.complejo-service-card-compact {
    background: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s;
}

.complejo-service-card-compact:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

.complejo-service-card-compact .complejo-service-icon {
    font-size: 1.8em;
    display: block;
    margin-bottom: 5px;
}

.complejo-service-card-compact .complejo-service-title {
    font-size: 0.9em;
    font-weight: 700;
    color: #2d5016;
    margin: 5px 0;
}

.complejo-service-card-compact .complejo-service-desc {
    font-size: 0.75em;
    color: #6a7c66;
    margin: 0;
}

.complejo-hero-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2d5016, #4a7c2a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.3);
}

.complejo-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 80, 22, 0.4);
    color: white;
}

.snowflake {
    position: absolute;
    font-size: 1.5em;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.snowflake-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.snowflake-2 {
    top: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

.snowflake-3 {
    bottom: 20px;
    left: 50px;
    font-size: 1.2em;
    opacity: 0.5;
    animation-delay: 0.5s;
}

.snowflake-4 {
    bottom: 20px;
    right: 50px;
    font-size: 1.2em;
    opacity: 0.5;
    animation-delay: 2s;
}

/* Navidad Banner - Prominente (mantener para compatibilidad) */
.navidad-banner {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    color: #1565C0;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

/* Animación de copos de nieve - mejorada para caer por toda la página */
@keyframes snowflake-fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0.3;
    }
}

.navidad-banner::before {
    content: '❄️';
    position: absolute;
    top: -20px;
    left: 10%;
    font-size: 1.5em;
    animation: snowflake-fall 10s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

.navidad-banner::after {
    content: '❄️';
    position: absolute;
    top: -20px;
    left: 50%;
    font-size: 1.5em;
    animation: snowflake-fall 12s linear infinite;
    animation-delay: -2s;
    z-index: 1;
    opacity: 0.7;
}

.navidad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.navidad-icon {
    font-size: 4em;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

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

.navidad-text h2 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #1565C0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navidad-text p {
    font-size: 1.5em;
    opacity: 0.9;
    font-weight: 600;
    margin-top: 10px;
    color: #1976D2;
}

.navidad-badge {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 50%, #BBDEFB 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.3em;
    animation: bounce 1s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Menú de Navegación - Estilo Pestañas/Botones (CORPORATIVO - VERDE) */
.section-navigation {
    background: #f8f9fa;
    padding: 0;
    border-bottom: 2px solid #2d5016; /* Borde verde corporativo */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 2px solid #dee2e6;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background: #e9ecef;
}

.nav-menu li {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #e9ecef;
    border: none;
    border-right: 1px solid #dee2e6;
    border-bottom: 3px solid transparent;
    position: relative;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    cursor: pointer;
}

.nav-menu li:last-child .nav-link {
    border-right: none;
}

.nav-link:hover {
    background: #ffffff;
    color: #2d5016;
    border-bottom-color: #2d5016;
}

.nav-link.active {
    background: #ffffff;
    color: #2d5016;
    border-bottom-color: #2d5016;
    box-shadow: 0 -2px 8px rgba(45, 80, 22, 0.1);
}

.nav-icon {
    font-size: 1.2em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-text {
    font-size: 0.95em;
    font-weight: 600;
}

.nav-text-mobile {
    display: none;
}

/* Por defecto: mostrar solo elementos desktop */
.nav-mobile-only {
    display: none;
}

.nav-desktop-item {
    display: block;
}

/* En desktop: mostrar solo elementos desktop */
@media (min-width: 769px) {
    .nav-mobile-only {
        display: none;
    }
    
    .nav-desktop-item {
        display: block;
    }
}

/* En móvil: mostrar solo elementos móvil */
@media (max-width: 768px) {
    .nav-desktop-item {
        display: none;
    }
    
    .nav-mobile-only {
        display: block;
    }
    
    .nav-text-desktop {
        display: none;
    }
    
    .nav-text-mobile {
        display: inline;
    }
}

/* Responsive Banner Combinado */
@media (max-width: 768px) {
    .hero-combined-banner {
        min-height: 40vh;
        max-height: 40vh;
        padding: 20px 10px;
        overflow: hidden;
    }
    
    .hero-combined-content {
        gap: 10px;
        padding: 0 5px;
    }
    
    .navidad-logo-background {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        overflow: hidden;
    }
    
    .navidad-logo-bg {
        max-width: 200px;
        max-height: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .navidad-complejo-title {
        font-size: 1.5em;
        letter-spacing: 0.5px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .navidad-text h2 {
        font-size: 1.3em;
    }
    
    .navidad-discount {
        font-size: 0.85em;
        margin: 5px 0;
    }
    
    .navidad-subtext {
        font-size: 0.9em;
        margin-top: 5px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 0; /* Sin padding superior en móvil */
        padding-bottom: 70px; /* Espacio inferior para el menú fijo abajo */
    }
    
    .section-navigation {
        padding: 0;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1); /* Sombra hacia arriba */
        position: fixed;
        bottom: 0; /* Menú en la parte inferior */
        top: auto; /* Anular posición superior */
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000; /* Asegurar que esté por encima de todo */
        background: #f8f9fa;
        border-top: 2px solid #dee2e6; /* Borde superior en lugar de inferior */
        border-bottom: none;
    }
    
    .nav-container {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* Firefox - mostrar scrollbar delgada */
        scrollbar-color: #2d5016 #e9ecef; /* Firefox */
        -ms-overflow-style: -ms-autohiding-scrollbar; /* IE and Edge */
    }
    
    .nav-container::-webkit-scrollbar {
        height: 6px; /* Chrome, Safari, Opera - mostrar scrollbar delgada */
    }
    
    .nav-container::-webkit-scrollbar-track {
        background: #e9ecef;
    }
    
    .nav-container::-webkit-scrollbar-thumb {
        background: #2d5016;
        border-radius: 3px;
    }
    
    .nav-container::-webkit-scrollbar-thumb:hover {
        background: #4a7c2a;
    }
    
    .nav-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 0;
        margin: 0;
        min-width: max-content;
        background: #e9ecef;
    }
    
    .nav-menu li {
        flex: 1 1 0;
        min-width: 0;
    }
    
    .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 12px 8px;
        font-size: 0.85em;
        min-width: 0;
        width: 100%;
        white-space: normal;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.2;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(45, 80, 22, 0.2); /* Feedback táctil en móvil */
        touch-action: manipulation; /* Mejorar respuesta táctil */
    }
    
    .nav-icon {
        font-size: 1.5em;
        margin-bottom: 3px;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 0.7em;
        line-height: 1.2;
        text-align: center;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        word-break: break-word;
        hyphens: auto;
    }
    
    .nav-menu li:last-child .nav-link {
        border-right: 1px solid #dee2e6;
    }
    
    /* En móvil, cambiar borde activo a superior */
    .nav-link {
        border-bottom: none;
        border-top: 3px solid transparent;
    }
    
    .nav-link:hover {
        border-bottom-color: transparent;
        border-top-color: #2d5016;
    }
    
    .nav-link.active {
        background: #ffffff;
        color: #2d5016;
        border-bottom-color: transparent;
        border-top-color: #2d5016;
        box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1); /* Sombra hacia abajo */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0; /* Sin padding superior */
        padding-bottom: 70px; /* Espacio inferior para el menú */
    }
    
    .section-navigation {
        position: fixed;
        bottom: 0; /* Menú en la parte inferior */
        top: auto; /* Anular posición superior */
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .nav-link {
        padding: 10px 6px;
        font-size: 0.75em;
        min-width: 0;
        width: 100%;
        gap: 4px;
    }
    
    .nav-icon {
        font-size: 1.3em;
        margin-bottom: 2px;
    }
    
    .nav-text {
        font-size: 0.65em;
        line-height: 1.1;
    }
}

/* Sección de Gift Cards */
.giftcards-section {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.giftcards-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-title {
    text-align: center;
    color: #2d5016;
    font-size: 2.2em;
    margin-bottom: 30px;
    font-weight: 600;
}

.giftcards-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

/* El número de columnas se define dinámicamente desde PHP */
/* Pero mantenemos responsive para móviles */

@media (max-width: 768px) {
    /* Layout comprimido gift cards móvil */
    .giftcards-compressed-mobile {
        display: block;
        margin: 20px 0;
    }
    
    .giftcard-compressed-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .giftcard-compressed-header h3 {
        font-size: 1.2em;
        color: #2d5016;
        margin-bottom: 10px;
    }
    
    .giftcard-compressed-desc {
        font-size: 0.9em;
        color: #6a7c66;
        line-height: 1.5;
    }
    
    .giftcard-compressed-table {
        overflow-x: auto;
        margin: 20px 0;
    }
    
    .giftcard-compressed-table table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .giftcard-compressed-table thead {
        background: linear-gradient(135deg, #2d5016, #4a7c2a);
        color: white;
    }
    
    .giftcard-compressed-table th {
        padding: 12px 8px;
        font-size: 0.85em;
        font-weight: 700;
        text-align: center;
    }
    
    .giftcard-compressed-table td {
        padding: 15px 8px;
        text-align: center;
        border-bottom: 1px solid #e9ecef;
    }
    
    .giftcard-compressed-table tbody tr:last-child td {
        border-bottom: none;
    }
    
    .personas-cell {
        font-size: 0.9em;
        color: #2d5016;
        text-align: left !important;
        padding-left: 15px !important;
    }
    
    .price-cell {
        vertical-align: middle;
    }
    
    .compressed-price {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .compressed-price .price-original {
        text-decoration: line-through;
        color: #999;
        font-size: 0.8em;
    }
    
    .compressed-price .price-final {
        font-size: 1.1em;
        font-weight: 700;
        color: #dc3545;
    }
    
    .compressed-price .price-per-person {
        font-size: 0.75em;
        color: #666;
    }
    
    .btn-compressed-add {
        background: #2d5016;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        font-size: 0.85em;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        width: 100%;
    }
    
    .btn-compressed-add:hover {
        background: #4a7c2a;
    }
    
    .giftcards-grid-desktop-only {
        display: none !important;
    }
    
    .giftcards-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 769px) {
    /* Ocultar layout comprimido en desktop */
    .giftcards-compressed-mobile {
        display: none !important;
    }
    
    .giftcards-grid-desktop-only {
        display: grid !important;
    }
    
    /* Asegurar que el grid siempre sea visible en desktop */
    .giftcards-grid {
        display: grid !important;
    }
    
    /* Asegurar que las cards sean visibles */
    .giftcard-option {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .giftcards-grid[data-columns="5"],
    .giftcards-grid[data-columns="4"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .giftcards-grid[data-columns="3"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .giftcards-grid[data-columns="2"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .giftcards-grid[data-columns="5"] {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Mural de Fotos - Grid 5x2 */
.photo-mural-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photo-mural-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.mural-photo-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.mural-photo-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.mural-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mural-photo-item:hover img {
    transform: scale(1.1);
}

/* Responsive para mural */
@media (max-width: 1200px) {
    .photo-mural-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .photo-mural-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 8px;
        padding: 0 10px;
    }
    
    .mural-photo-item {
        aspect-ratio: 1 / 1;
        min-height: 150px;
    }
    
    .mural-photo-item img {
        object-fit: cover;
    }
    
    .photo-mural-section {
        padding: 40px 0;
    }
    
    .gallery-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .photo-mural-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 6px;
        padding: 0 8px;
    }
    
    .mural-photo-item {
        aspect-ratio: 1 / 1;
        min-height: 120px;
    }
    
    .gallery-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
}

/* Sección La Cantina */
.cantina-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    color: #1565C0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.cantina-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cantina-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cantina-title {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cantina-subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

.cantina-description {
    font-size: 1.1em;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* Botón cantina - Usa btn-outline-primary de Bootstrap */
.cantina-button {
    /* Extiende Bootstrap btn-outline-primary */
    background: white;
    border: 2px solid #2d5016;
    color: #2d5016;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
}

.cantina-button:hover {
    background: #f0f0f0;
    border-color: #2d5016;
    color: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cantina-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cantina-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive La Cantina */
@media (max-width: 968px) {
    .cantina-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cantina-title {
        font-size: 2.5em;
    }
    
    .cantina-subtitle {
        font-size: 1.3em;
    }
    
    .cantina-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .cantina-section {
        padding: 60px 20px;
    }
    
    .cantina-title {
        font-size: 2em;
    }
    
    .cantina-subtitle {
        font-size: 1.1em;
    }
    
    .cantina-description {
        font-size: 1em;
    }
}

/* Sección Navidad Detallada */
.navidad-detailed-section {
    width: 100%;
    padding: 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    margin-top: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Navidad */
.nav-hero {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    color: #1565C0;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav-hero::before {
    content: '❄️';
    position: absolute;
    top: -20px;
    left: 15%;
    font-size: 1.5em;
    animation: snowflake-fall 10s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

.nav-hero::after {
    content: '❄️';
    position: absolute;
    top: -20px;
    left: 75%;
    font-size: 1.5em;
    animation: snowflake-fall 12s linear infinite;
    animation-delay: -3s;
    z-index: 1;
    opacity: 0.7;
}

.nav-hero-content {
    position: relative;
    z-index: 2;
}

.nav-main-title {
    font-size: 4.5em;
    font-weight: 900;
    margin: 0 0 30px 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
    color: #1565C0;
}

.nav-discount-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 50%, #BBDEFB 100%);
    padding: 30px 50px;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.5);
    animation: pulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

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

.nav-discount-number {
    font-size: 5em;
    font-weight: 900;
    line-height: 1;
    color: white;
}

.nav-discount-text {
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.nav-hero-text {
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    opacity: 0.95;
    color: #1976D2;
}

.nav-validity {
    font-size: 1.1em;
    opacity: 0.85;
    margin: 15px 0 30px 0;
    color: #1976D2;
}

/* Botón CTA Navidad - Usa btn-primary de Bootstrap */
.nav-cta-button {
    /* Extiende Bootstrap btn-primary */
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
    color: white;
}

.nav-cta-button:hover {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
    color: white;
}

/* Sobre el Complejo */
.nav-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 40px;
    align-items: center;
    background: #f8f9fa;
}

.nav-about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1565C0;
    margin: 0 0 20px 0;
}

.nav-about-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Lista de Actividades del Complejo */
.nav-activities-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.nav-activity-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.nav-activity-item:hover {
    border-color: #2196F3;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
    transform: translateX(5px);
}

.nav-activity-icon-small {
    font-size: 2.5em;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
}

.nav-activity-info {
    flex: 1;
}

.nav-activity-info h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1565C0;
    margin: 0 0 10px 0;
}

.nav-activity-info p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.nav-about-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nav-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Actividades */
.nav-activities-section {
    padding: 80px 40px;
    background: white;
}

.nav-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.nav-activity-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.nav-activity-card:hover {
    border-color: #2196F3;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
    transform: translateY(-5px);
}

.nav-activity-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.nav-activity-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1565C0;
    margin: 0 0 15px 0;
}

.nav-activity-content {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
}

/* Responsive Navidad */
@media (max-width: 968px) {
    .nav-about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-about-image {
        order: -1;
        height: 300px;
    }
    
    .nav-main-title {
        font-size: 3em;
    }
    
    .nav-discount-number {
        font-size: 4em;
    }
}

@media (max-width: 768px) {
    .nav-hero {
        padding: 60px 20px;
    }
    
    .nav-main-title {
        font-size: 2.5em;
        letter-spacing: 3px;
    }
    
    .nav-discount-badge {
        padding: 20px 30px;
    }
    
    .nav-discount-number {
        font-size: 3em;
    }
    
    .nav-hero-text {
        font-size: 1.2em;
    }
    
    .nav-activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-activity-icon-small {
        margin: 0 auto;
    }
    
    .nav-about-section,
    .nav-activities-section {
        padding: 60px 20px;
    }
}

/* Sección Experiencias en Grid */
.experiences-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.experiences-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
}

/* Experiencias Hero Cards (móvil) */
.experiences-hero-mobile {
    display: none;
}

.experience-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 25px;
}

.experience-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}

.experience-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-hero-card:hover img { 
    transform: scale(1.08); 
}

.experience-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.experience-hero-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    z-index: 1;
}

.experience-hero-content h3 {
    margin: 0 0 10px;
    font-size: 1.9rem;
    letter-spacing: 0.03em;
}

.experience-hero-content p {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
}

.experience-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    width: fit-content;
}

.experience-hero-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

.experience-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.experience-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.experience-content h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d5016;
    margin: 0 0 15px 0;
}

.experience-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex: 1;
}

/* Botón CTA Experiencias - Usa btn-primary de Bootstrap */
.experiences-cta-button {
    /* Extiende Bootstrap btn-primary */
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

.experiences-cta-button:hover {
    background: linear-gradient(135deg, #3a6820 0%, #5a9a35 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

/* Sección Entorno (2 fotos grandes) */
.entorno-section {
    width: 100%;
    padding: 80px 0;
    background: #1a1a1a;
}

.entorno-title {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Filtros de categorías */
.entorno-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.entorno-filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.entorno-filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.entorno-filter-btn.active {
    background: #2d5016;
    border-color: #4a7c2a;
    color: white;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.entorno-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.entorno-card {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.entorno-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.entorno-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.entorno-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.entorno-card:hover .entorno-card-image img {
    transform: scale(1.15);
}

.entorno-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.entorno-card-content {
    color: white;
    width: 100%;
}

.entorno-card-content h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
    line-height: 1.3;
}

.entorno-card-content p {
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,0.95);
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experiences-title,
    .entorno-title {
        font-size: 2em;
    }
    
    .entorno-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .entorno-card {
        height: 300px;
    }
    
    .entorno-card-overlay {
        opacity: 1;
        padding: 20px;
    }
    
    .entorno-card-content h3 {
        font-size: 1.2em;
    }
    
    .entorno-card-content p {
        font-size: 0.9em;
    }
    
    .entorno-filters {
        gap: 10px;
        padding: 0 15px;
    }
    
    .entorno-filter-btn {
        padding: 10px 18px;
        font-size: 0.9em;
    }
    
    .bf-section-title {
        font-size: 2em;
    }
}

/* Estilos para el mapa de entorno */
.entorno-map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#entorno-map {
    z-index: 1;
}

/* Estilos para los marcadores personalizados */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker div {
    transition: transform 0.2s ease;
}

.custom-marker:hover div {
    transform: scale(1.15);
}

/* Popup del mapa */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
    margin: 15px;
}

/* Responsive para el mapa */

@media (max-width: 768px) {
    .entorno-map-container {
        padding: 0 10px;
    }
    
    #entorno-map {
        height: 400px !important;
    }
    
    .nav-activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.giftcard-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.giftcard-option:hover {
    border-color: #4a7c2a;
    box-shadow: 0 6px 15px rgba(45, 80, 22, 0.15);
    transform: translateY(-3px);
}

.giftcard-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.giftcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.giftcard-image-placeholder {
    font-size: 50px;
    color: white;
    opacity: 0.8;
}

.giftcard-content {
    padding: 15px;
}

.giftcard-content h3 {
    color: #2d5016;
    margin-bottom: 8px;
    font-size: 1.1em;
    line-height: 1.3;
}

.giftcard-desc {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.85em;
    line-height: 1.5;
    min-height: 40px;
}

/* Botón info giftcard - Usa btn-outline-primary de Bootstrap */
.btn-info-giftcard {
    /* Extiende Bootstrap btn-outline-primary */
    background: #f0f4ff;
    border-color: #2d5016;
    color: #2d5016;
    font-size: 0.8em;
}

.btn-info-giftcard:hover {
    background: #e0e8ff;
    border-color: #2d5016;
    color: #2d5016;
    transform: translateY(-1px);
}

.giftcard-price {
    font-size: 1.6em;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 8px;
}

.giftcard-details {
    color: #888;
    font-size: 0.8em;
    margin-bottom: 12px;
}

/* Botón seleccionar giftcard - Usa btn-primary de Bootstrap */
.btn-select-giftcard {
    /* Extiende Bootstrap btn-primary */
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border: none;
    font-size: 0.95em;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-select-giftcard:hover {
    background: linear-gradient(135deg, #3a6820 0%, #5a9a35 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.btn-select-giftcard:active {
    transform: translateY(-1px) scale(0.98);
}

/* Selector de cantidad para Pack Experiencias */
.cart-quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cart-quantity-selector label {
    font-weight: 600;
    color: #2d5016;
    font-size: 0.95rem;
}

.cart-quantity-selector .qty-btn {
    background: #2d5016;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.2s;
    user-select: none;
}

.cart-quantity-selector .qty-btn:hover {
    background: #3a6820;
}

.cart-quantity-selector .qty-btn:active {
    background: #1a3a0c;
}

.cart-quantity-selector input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    padding: 8px 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d5016;
    outline: none;
    -moz-appearance: textfield;
}

.cart-quantity-selector input[type="number"]::-webkit-outer-spin-button,
.cart-quantity-selector input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Mejora del botón Agregar al Carrito */
.giftcard-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

/* Sección Informativa Complejo Esgueva */
.complejo-info-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.complejo-info-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45,80,22,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.complejo-info-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(33,150,243,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.complejo-info-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.complejo-info-title {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.complejo-info-subtitle {
    color: #4a7c2a;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.complejo-info-description {
    color: #6a7c66;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.complejo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.complejo-service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.complejo-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.complejo-service-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.complejo-service-title {
    color: #2d5016;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.complejo-service-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.complejo-info-cta {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #2d5016, #4a7c2a);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(45,80,22,0.3);
    margin-top: 40px;
}

.complejo-info-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,80,22,0.4);
    color: #fff;
    text-decoration: none;
}

/* Mejoras responsive para sección informativa */
@media (max-width: 768px) {
    .complejo-info-section {
        padding: 30px 15px;
        margin: 30px auto;
    }
    
    .complejo-info-title {
        font-size: 2rem;
    }
    
    .complejo-info-subtitle {
        font-size: 1.2rem;
    }
    
    .complejo-info-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .complejo-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .complejo-service-card {
        padding: 20px;
    }
    
    .complejo-info-cta {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 30px;
    }
}

/* Mejoras para selector de cantidad */
.cart-quantity-selector input[type="number"]:focus {
    background: #f0f7ed;
    border: 2px solid #2d5016;
}

.cart-quantity-selector .qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mejoras para checkout */
.btn-checkout-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #ccc !important;
}

.btn-checkout-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

.payment-method-card.selected {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(45, 80, 22, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(45, 80, 22, 0);
    }
}

.alert-message {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffeaa7;
}

.giftcard-info {
    margin-bottom: 40px;
}

.giftcard-card {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.giftcard-card::before {
    content: '🎁';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: -30px;
    right: -30px;
}

.giftcard-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.price {
    font-size: 3em;
    font-weight: bold;
    margin: 20px 0;
}

.description {
    font-size: 1.2em;
    opacity: 0.95;
}

/* Sidebar del carrito */
.cart-sidebar {
    width: 350px;
    background: white;
    border-left: 1px solid #e0e0e0;
    position: fixed;
    right: -350px;
    top: 0;
    height: 100vh;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    padding: 20px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
}

.cart-sidebar-header h2 {
    margin: 0;
    font-size: 1.3em;
    color: white;
}

.btn-close-cart {
    background: transparent;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.btn-close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

#cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 5px;
}

.cart-item-details {
    font-size: 0.9em;
    color: #666;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-price {
    font-weight: bold;
    color: #2d5016;
    font-size: 1.1em;
}

/* Botón eliminar item - Usa btn-danger btn-sm de Bootstrap */
.btn-remove-item {
    /* Extiende Bootstrap btn-danger btn-sm */
    background: #dc3545;
    border: none;
    padding: 5px 10px;
    font-size: 0.9em;
    min-width: 35px;
    height: 35px;
}

.btn-remove-item:hover {
    background: #c82333;
    transform: scale(1.1);
}

.btn-remove-item:active {
    transform: scale(0.95);
}

/* Botón checkout - Usa btn-primary btn-lg de Bootstrap */
.btn-checkout {
    /* Extiende Bootstrap btn-primary btn-lg */
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border: none;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 30px;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-checkout:hover:not(:disabled) {
    background: linear-gradient(135deg, #3a6820 0%, #5a9a35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.5);
}

.btn-checkout:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.3);
}

.btn-checkout::before {
    content: '💳';
    font-size: 1.3em;
    margin-right: 8px;
}

.cart-total-sidebar {
    border-top: 2px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 20px;
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.cart-total-line.total {
    font-size: 1.3em;
    color: #2d5016;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e0e0e0;
}

.cart-sidebar-footer {
    padding: 20px;
    border-top: 2px solid #e0e0e0;
    background: #f8f9fa;
}

/* Botón ver carrito - Usa btn-primary de Bootstrap */
.btn-view-cart {
    /* Extiende Bootstrap btn-primary */
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border: none;
    padding: 12px;
    font-size: 1em;
    font-weight: 600;
}

.btn-view-cart:hover {
    background: linear-gradient(135deg, #3a6820 0%, #5a9a35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* Botón flotante del carrito */
.cart-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: bold;
}

.cart-count.hidden {
    display: none;
}

.checkout-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.checkout-section h2 {
    margin-bottom: 25px;
    color: #2d5016;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #4a7c2a;
    box-shadow: 0 0 0 3px rgba(74, 124, 42, 0.1);
}

/* Botones unificados con Bootstrap */
.btn-primary {
    /* Extiende Bootstrap btn-primary con estilos personalizados */
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1em;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a6820 0%, #5a9a35 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.loading {
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 35vh;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .blackfriday-banner {
        padding: 30px 15px;
    }
    
    .blackfriday-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .blackfriday-icon {
        font-size: 3em;
    }
    
    .blackfriday-text h2 {
        font-size: 2em;
    }
    
    .blackfriday-text p {
        font-size: 1.1em;
    }
    
    .blackfriday-badge {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    
    .giftcards-grid {
        padding: 0 10px;
    }
    
    .giftcards-section {
        padding: 40px 15px;
    }
}

/* Ocultar secciones en móviles */
.hide-on-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    /* Experiencias móvil: mostrar hero cards arriba, grid compacto abajo */
    .experiences-hero-mobile {
        display: block;
        margin-bottom: 30px;
    }
    
    .experiences-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-card {
        min-height: auto;
    }
}

@media (min-width: 769px) {
    .experiences-hero-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .price {
        font-size: 2em;
    }
    
    main {
        padding: 20px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
    
    .giftcards-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content-wrapper {
        flex-direction: column;
    }
    
    /* Widget de Reservas - Ajustes para móvil */
    .widget-reservas-section {
        padding: 20px 10px !important;
        margin: 20px auto !important;
        background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%) !important;
    }
    
    .widget-reservas-container {
        padding: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .widget-reservas-container iframe {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Carrito en móvil - Reposicionar */
    .cart-toggle-btn {
        bottom: 80px !important; /* Más arriba para no interferir con menú */
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        z-index: 1001 !important; /* Por encima del menú */
    }
    
    /* Calendario en móvil - Ajustar ancho */
    /* Calendario móvil - Reducir 5% */
    .calendar-weekdays {
        font-size: 0.76rem !important; /* 0.8rem * 0.95 = 0.76rem */
    }
    
    .calendar-weekday {
        padding: 3.8px 0 !important; /* 4px * 0.95 = 3.8px */
    }
    
    .calendar-day-btn {
        font-size: 0.9025rem !important; /* 0.95rem * 0.95 = 0.9025rem */
        padding: 9.5px 0 !important; /* 10px * 0.95 = 9.5px */
    }
    
    .calendar-grid {
        gap: 3.8px !important; /* 4px * 0.95 = 3.8px */
    }
    
    .calendario-container {
        padding: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 10px auto !important;
    }
    
    #calendario-reservas-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    #calendario-grid {
        gap: 4px !important;
    }
    
    #calendario-grid button {
        min-height: 70px !important;
        padding: 4px 2px !important;
        font-size: 0.85rem !important;
    }
    
    #calendario-grid button span:first-child {
        font-size: 0.95rem !important;
    }
    
    #calendario-grid button span:last-child {
        font-size: 0.65rem !important;
    }
}

