/* Index Page Specific Styles - Summary Page with Cards */

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.section,
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Large - Homepage version */
.hero-large {
    min-height: 100vh;
}

/* Main Countdown - Mobile First */
.countdown-main {
    border-radius: 16px;
    padding: 0.75rem 0.25rem;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.15rem;
    box-sizing: border-box;
}

.countdown-main .countdown-item {
    text-align: center;
    padding: 0 0.25rem;
}

.countdown-main .countdown-value {
    display: block;
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.25rem;
}

/* Colores específicos para cada unidad */
.countdown-days {
    color: #FFD700; /* Amarillo dorado */
}

.countdown-hours {
    color: #FF6B35; /* Naranja */
}

.countdown-minutes {
    color: #06B6D4; /* Celeste/Cyan */
}

.countdown-seconds {
    color: #10B981; /* Verde agua */
}

.countdown-main .countdown-unit {
    display: block;
    font-size: clamp(0.65rem, 2.5vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* Countdown Finished Message */
.countdown-main.finished {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.countdown-finished {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Promo Slider - Mobile First (inside navbar) */
.promo-slider {
    background: linear-gradient(90deg, #C41E3A 0%, #8B1429 100%);
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.promo-slide {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 0 15px;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-slide:hover {
    text-decoration: underline;
    color: #FFD700;
}

/* Tablet 576px+ */
@media (min-width: 576px) {
    .promo-slider {
        height: 45px;
    }

    .promo-slide {
        font-size: 14px;
        padding: 0 20px;
    }
}

/* Desktop 992px+ */
@media (min-width: 992px) {
    .promo-slider {
        height: 50px;
    }

    .promo-slide {
        font-size: 15px;
        font-weight: 700;
    }
}

/* Large Desktop/TV 1400px+ */
@media (min-width: 1400px) {
    .promo-slider {
        height: 55px;
    }

    .promo-slide {
        font-size: 16px;
        max-width: 1400px;
    }
}

/* Offer Modal - Mobile First */
.offer-modal {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.offer-modal.active {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.offer-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.offer-modal-content {
    position: relative;
    background: #1a2840;
    margin: 10px auto;
    max-width: 340px; /* Más estrecho para móviles */
    width: calc(100% - 20px); /* Con margen de 10px a cada lado */
    border-radius: 12px;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px); /* Dynamic viewport height for mobile */
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Responsive modal size */
@media (min-width: 768px) {
    .offer-modal-content {
        margin: 30px auto;
        max-height: calc(100vh - 60px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1;
}

.offer-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.offer-modal-close svg {
    stroke: #ffffff;
}

/* Navigation Arrows */
.offer-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.offer-modal-prev {
    left: 10px;
}

.offer-modal-next {
    right: 10px;
}

.offer-modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.offer-modal-nav svg {
    stroke: #ffffff;
    stroke-width: 3;
}

/* Offer Indicators */
.offer-modal-indicators {
    position: absolute;
    bottom: 45px; /* Aumentado para evitar sobreposición con footer Inca Lake 2026 */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.offer-modal-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.offer-modal-indicator.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

.offer-modal-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Hide nav on mobile for better UX */
@media (max-width: 575px) {
    .offer-modal-nav {
        width: 35px;
        height: 35px;
    }

    .offer-modal-prev {
        left: 5px;
    }

    .offer-modal-next {
        right: 5px;
    }
}

.offer-modal-body {
    padding: 0;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

/* Buy Online Button */
.offer-buy-button {
    position: absolute;
    top: 22px;
    left: 20px;
    background: #DC2626;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: none;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    z-index: 2;
}

.offer-buy-button:hover {
    background: #B91C1C;
    transform: scale(1.05);
}

/* Price Badge */
.offer-price-circle {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 2;
}

/* Mobile: Only price centered */
@media (max-width: 575px) {
    .offer-title {
        margin-top: 75px;
    }
}

/* Desktop: Show button and price */
@media (min-width: 576px) {
    .offer-buy-button {
        display: inline-flex;
    }

    .offer-title {
        margin-top: 80px;
    }
}

.offer-price-prefix {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.offer-price-label {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.offer-price {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.offer-price-old {
    font-size: 11px;
    color: #fff;
    text-decoration: line-through;
    opacity: 0.85;
    margin-left: 6px;
    font-weight: 600;
}

/* Modal Title */
.offer-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 80px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Horarios Badge */
.offer-schedules-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.offer-schedules-badge {
    background: #06B6D4;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.offer-time-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-time-badge svg {
    flex-shrink: 0;
}

/* Mobile: Smaller time badges */
@media (max-width: 575px) {
    .offer-time-badge {
        padding: 4px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .offer-time-badge svg {
        width: 12px;
        height: 12px;
    }
}

/* Duration */
.offer-duration-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.offer-duration-badge svg {
    flex-shrink: 0;
    stroke: #10B981;
}

.offer-duration-badge strong {
    font-weight: 700;
}

/* Section Headings */
.offer-section-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

/* Includes */
.offer-includes {
    margin-bottom: 16px;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-includes li {
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #E5E7EB;
    font-size: 14px;
    line-height: 1.5;
}

.offer-includes li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 4px;
    font-size: 16px;
}

/* Not Includes */
.offer-not-includes {
    margin-bottom: 16px;
}

.offer-not-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-not-includes li {
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: #E5E7EB;
    font-size: 13px;
    line-height: 1.4;
}

.offer-not-includes li::before {
    content: "✕";
    color: #EF4444;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 2px;
    font-size: 14px;
}

/* Promotion */
.offer-promotion-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0;
    line-height: 1.5;
}

/* WhatsApp Button */
.offer-whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 16px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.offer-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Offer Schedules */
.offer-schedules {
    margin-bottom: 16px;
    background: #F5F3FF;
    padding: 14px;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.offer-schedules h3 {
    font-size: 14px;
    font-weight: 700;
    color: #5B21B6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-schedules h3 svg {
    stroke: #7C3AED;
    flex-shrink: 0;
}

.schedule-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.schedule-badge {
    background: #fff;
    color: #5B21B6;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #7C3AED;
    box-shadow: 0 2px 4px rgba(124, 58, 237, 0.1);
}

/* Offer Duration */
.offer-duration {
    background: #ECFDF5;
    color: #065F46;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    border: 2px solid #10B981;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.offer-duration svg {
    stroke: #10B981;
    flex-shrink: 0;
}

.offer-duration strong {
    color: #065F46;
}


/* Offer Promotion */
.offer-promotion {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    color: #78350F;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid #F59E0B;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-promotion svg {
    stroke: #F59E0B;
    flex-shrink: 0;
}

/* Tablet 576px+ */
@media (min-width: 576px) {
    .offer-modal-content {
        margin: 50px auto;
        max-width: 400px; /* Ancho intermedio para tablets */
    }

    .offer-modal-body {
        padding: 30px 20px 20px; /* Menos padding para mantenerlo compacto */
    }
}

/* Desktop 992px+ */
@media (min-width: 992px) {
    .offer-modal-content {
        max-width: 500px; /* Más estrecho también en desktop */
    }
}

/* Hero Title and Location Container - Mobile First */
.hero-title-location {
    text-align: center;
    margin: 1.5rem 0 2rem;
    padding: 0 1rem;
}

/* Hero Main Title */
.hero-main-title {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    white-space: nowrap;
}

/* Hero Search Container - Google Style */
.hero-search-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    z-index: 9999;
}

.hero-search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.hero-search-box:hover,
.hero-search-box:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.hero-search-box .search-icon {
    color: #9CA3AF;
    flex-shrink: 0;
    min-width: 20px;
    min-height: 20px;
}

.hero-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 15px;
    color: #1a1a2e;
    background: transparent;
}

.hero-search-input::placeholder {
    color: #9CA3AF;
}

/* Hero Search Button */
.hero-search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-search-btn svg {
    color: #ffffff;
    width: 16px;
    height: 16px;
}

.hero-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hero-search-btn:active {
    transform: scale(0.95);
}

/* Search Results Count */
.search-results-count {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInSlide 0.3s ease;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-results-count:hover {
    background: rgba(37, 99, 235, 1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    transform: translateX(-50%) translateY(-2px);
}

.search-results-count:active {
    transform: translateX(-50%) translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Results Dropdown */
.hero-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.hero-search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-name {
    font-size: 15px;
    color: #1a1a2e !important;
    font-weight: 500;
    margin-bottom: 4px;
}

.search-result-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #6b7280 !important;
}

.search-result-date,
.search-result-order {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #9CA3AF;
    font-size: 14px;
}

.search-clear {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.search-clear:hover {
    color: #6B7280;
}

.search-clear svg {
    width: 16px;
    height: 16px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-modal.active {
    display: flex;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0;
    background: #ffffff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 3px solid #e0e7ff;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.search-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 24px 20px;
    border-bottom: 2px solid #f3f4f6;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.search-modal-title {
    flex: 1;
}

.search-modal-title h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.search-modal-title p {
    margin: 0;
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
}

.search-modal-close {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-modal-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
    transform: rotate(90deg);
}

.search-modal-close:active {
    transform: rotate(90deg) scale(0.9);
}

.search-modal-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fafbfc;
}

.search-modal-body::-webkit-scrollbar {
    width: 8px;
}

.search-modal-body::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.search-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.search-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.search-modal-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #9CA3AF;
}

.search-modal-empty svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.search-modal-empty p {
    font-size: 15px;
    margin: 0;
}

.search-modal-item {
    padding: 18px 24px;
    margin: 8px 12px;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.search-modal-item:hover {
    background: #ffffff;
    border-color: #e0e7ff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.search-modal-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.15);
}

.search-modal-item:first-child {
    margin-top: 12px;
}

.search-modal-item:last-child {
    margin-bottom: 12px;
}

.search-modal-item::after {
    content: 'Ver detalles →';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    opacity: 0;
    transition: all 0.2s ease;
    pointer-events: none;
}

.search-modal-item:hover::after {
    opacity: 1;
    color: #2563eb;
    transform: translateY(-50%) translateX(0);
}

.search-modal-name {
    font-size: 16px;
    color: #1a1a2e !important;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    padding-right: 100px;
}

.search-modal-item:hover .search-modal-name {
    color: #2563eb !important;
}

.search-modal-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #6b7280 !important;
    flex-wrap: wrap;
}

.search-modal-date,
.search-modal-order {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.search-modal-date svg,
.search-modal-order svg {
    width: 14px;
    height: 14px;
    color: #2563eb;
}

.search-modal-no-results {
    padding: 60px 20px;
    text-align: center;
    color: #9CA3AF;
}

.search-modal-no-results svg {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.search-modal-no-results p {
    font-size: 15px;
    font-weight: 500;
}

/* Responsive */
@media (min-width: 640px) {
    .search-modal {
        padding: 20px;
    }

    .search-modal-content {
        border-radius: 20px;
        max-height: calc(100vh - 40px);
    }

    .search-modal-header {
        padding: 28px 28px 24px;
    }

    .search-modal-item {
        margin: 8px 16px;
        padding: 20px 28px;
    }

    .search-modal-item::after {
        right: 28px;
    }
}

/* Hero Location */
.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-location svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.hero-dates {
    color: #ffd700 !important;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 1rem 0 2rem 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 2rem 0;
    opacity: 0.95;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.intro-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Cards Section */
.cards-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.section-description {
    text-align: center;
    color: #5a5a5a;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 3rem auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Section Card */
.section-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.section-card:hover::before {
    transform: scaleX(1);
}

.section-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.section-card:hover .card-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.card-icon-large svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.section-card h3 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-card p {
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

/* CTA Card Special Styling */
.section-card-cta {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    border: 2px solid #ffd700;
}

.section-card-cta::before {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
}

.section-card-cta h3,
.section-card-cta p {
    color: #ffffff;
}

.section-card-cta .card-icon-large {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-card-cta:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 50px rgba(72, 187, 120, 0.4);
}

.card-badge-whatsapp {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

/* Why Visit Section */
.why-section {
    padding: 5rem 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.why-icon svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

.why-card h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Tablet and Desktop - Progressive Enhancement */
@media (min-width: 576px) {
    .countdown-main {
        gap: 1.5rem;
        max-width: 700px;
        padding: 1.5rem 2rem;
    }

    .countdown-main .countdown-value {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 0.5rem;
    }

    .countdown-main .countdown-unit {
        font-size: 0.875rem;
        letter-spacing: 1px;
    }

    .hero-main-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 1.5rem;
    }

    .hero-location svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .hero-dates {
        font-size: 1.2rem;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .intro-stat .stat-number {
        font-size: 2rem;
    }

    .cards-section {
        padding: 3rem 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-card {
        padding: 2rem;
    }

    .card-icon-large {
        width: 70px;
        height: 70px;
    }

    .card-icon-large svg {
        width: 35px;
        height: 35px;
    }

    .why-section {
        padding: 3rem 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-dates {
        font-size: 1rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-card h3 {
        font-size: 1.4rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .hero-large {
        min-height: 40vh !important;
    }

    .section-card,
    .why-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .cta-section {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* 2 de Febrero Section */
.feb2-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feb2-content {
    margin-top: 2rem;
}

.feb2-intro {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.feb2-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a2e;
    margin: 0;
}

.feb2-activities h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.activity-card {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid #ffd700;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

.activity-content h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin: 0 0 0.75rem 0;
}

.activity-content p {
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}

.activity-time {
    display: inline-block;
    background: #f3f4f6;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Calendar Section */
.calendar-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.calendar-section .section-header {
    margin-bottom: 3rem;
}

.calendar-section .section-title,
.calendar-section .section-subtitle,
.calendar-section .section-description {
    color: #ffffff !important;
}

/* Activities Carousel */
.activities-carousel {
    position: relative;
    padding: 0 50px 60px;
    margin-bottom: 2rem;
}

.activities-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.activities-carousel .calendar-day {
    width: 100%;
}

/* Swiper Navigation Buttons */
.activities-carousel .swiper-button-prev,
.activities-carousel .swiper-button-next {
    color: #FFD700;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.activities-carousel .swiper-button-prev:after,
.activities-carousel .swiper-button-next:after {
    font-size: 20px;
}

.activities-carousel .swiper-button-prev:hover,
.activities-carousel .swiper-button-next:hover {
    background: rgba(255, 215, 0, 0.3);
}

/* Swiper Pagination */
.activities-carousel .swiper-pagination {
    bottom: 20px;
}

.activities-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.activities-carousel .swiper-pagination-bullet-active {
    background: #FFD700;
    width: 30px;
    border-radius: 5px;
}

.calendar-day {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.calendar-day.featured {
    border: 3px solid #10b981;
}

.calendar-day.main-day {
    border: 3px solid #ffd700;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 30%);
}

.calendar-badge-top {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffd700;
    color: #1a1a2e;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.calendar-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

.calendar-day.featured .calendar-day-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.calendar-day.main-day .calendar-day-header {
    background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
    color: #1a1a2e;
}

.calendar-date {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.calendar-info {
    display: flex;
    flex-direction: column;
}

.calendar-month {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-weekday {
    font-size: 0.9rem;
    opacity: 0.9;
}

.calendar-day-content {
    padding: 1.5rem;
}

.calendar-day-content h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.calendar-events {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.calendar-events li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.calendar-events li:last-child {
    border-bottom: none;
}

.event-time {
    background: #f3f4f6;
    color: #2563eb;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.event-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.event-badge.originarias {
    background: #dbeafe;
    color: #1d4ed8;
}

.event-badge.luces {
    background: #fef3c7;
    color: #b45309;
}

.event-badge.religiosa {
    background: #fce7f3;
    color: #be123c;
}

.event-name {
    font-size: 0.9rem;
    color: #6b7280;
    flex: 1;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.calendar-link:hover {
    color: #1d4ed8;
    gap: 0.75rem;
}

.calendar-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive calendar */
@media (max-width: 768px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        flex-direction: column;
        text-align: center;
    }

    .activity-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .calendar-date {
        font-size: 2.5rem;
    }

    .calendar-month {
        font-size: 1rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .section-card,
    .why-card,
    .card-icon-large,
    .why-icon,
    .scroll-indicator,
    .calendar-day,
    .activity-card {
        transition: none;
        animation: none;
    }
}


/* Modern Card Design for Modal - Added for better visual appeal */
.offer-card-modal {
    background: #ffffff;
}

.offer-card-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 24px;
    position: relative;
}

.offer-badge-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FB923C, #F97316);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.offer-title-modal {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-title-modal svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.offer-subtitle-modal {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-card-modal-body {
    padding: 24px;
}

.offer-price-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.offer-price-label {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.offer-price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.offer-price-currency {
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 600;
}

.offer-price-value {
    color: #0ea5e9;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.offer-price-person {
    color: #64748b;
    font-size: 14px;
}

.offer-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 20px;
    margin-left: 12px;
}

.offer-discount-percentage {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 12px;
}

.offer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.offer-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.offer-info-item svg {
    width: 20px;
    height: 20px;
    stroke: #10b981;
    flex-shrink: 0;
}

.offer-info-item strong {
    color: #334155;
    font-size: 14px;
}

.offer-includes-section {
    margin-bottom: 24px;
}

.offer-section-title-modern {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-section-title-modern svg {
    width: 20px;
    height: 20px;
    stroke: #10b981;
}

.offer-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.offer-includes-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.offer-includes-item svg {
    width: 20px;
    height: 20px;
    stroke: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-not-includes-item {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left-color: #ef4444;
}

.offer-not-includes-item svg {
    stroke: #ef4444;
}

.offer-cta-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.offer-whatsapp-btn-modern {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.offer-whatsapp-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.offer-buy-btn-modern {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.offer-buy-btn-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.offer-promotion-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

/* Carousel de Ofertas - Cards pequeñas */
.offers-carousel-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 40px;
    background: rgba(26, 40, 64, 0.95);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.offers-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 5px 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.offers-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.offer-card {
    flex: 0 0 100px; /* Tamaño cuadrado pequeño */
    width: 100px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.offer-card-image {
    width: 100%;
    height: 70px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #e0e0e0; /* Placeholder color */
}

.offer-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.offer-card-content {
    padding: 6px 8px;
    text-align: center;
}

.offer-card-title {
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.offer-card-price {
    font-size: 14px;
    font-weight: 700;
    color: #1976d2;
    margin: 0;
}

/* Navegación del carousel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-nav:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-nav svg {
    stroke: #1a2840;
}

/* Responsive - Tablets */
@media (min-width: 576px) {
    .offers-carousel-container {
        padding: 15px 50px;
    }
    
    .offer-card {
        flex: 0 0 110px;
        width: 110px;
        height: 130px;
    }
    
    .offer-card-image {
        height: 75px;
    }
    
    .offer-card-title {
        font-size: 12px;
    }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
    .offers-carousel-container {
        padding: 20px 60px;
    }
    
    .offer-card {
        flex: 0 0 120px;
        width: 120px;
        height: 145px;
    }
    
    .offer-card-image {
        height: 85px;
    }
    
    .offer-card-title {
        font-size: 13px;
    }
    
    .offer-card-price {
        font-size: 16px;
    }
}

/* Live Band (Cintillo EN VIVO) */
.live-band {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    z-index: 10001 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.live-band-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-text-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 24px;
}

.live-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    animation: slideText 15s linear infinite;
}

@keyframes slideText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .live-band {
        top: 70px;
    }

    .live-band-content {
        padding: 10px 40px;
    }

    .live-badge {
        font-size: 14px;
        padding: 6px 16px;
    }

    .live-dot {
        width: 10px;
        height: 10px;
    }

    .live-text {
        font-size: 15px;
    }
}

/* Ajustar menú móvil cuando live-band está visible */
@media (max-width: 768px) {
    /* Cuando el live-band está visible, empujar el menú hacia abajo */
    .live-band ~ .nav-menu,
    body:has(.live-band[style*="display: block"]) .nav-menu {
        top: calc(60px + 32px); /* navbar height + live-band height */
        max-height: calc(100vh - 60px - 32px);
    }
}

/* Alternativa más compatible - usar clase en body */
body.live-band-active .nav-menu {
    top: calc(60px + 32px);
    max-height: calc(100vh - 92px);
}

@media (min-width: 769px) {
    body.live-band-active .nav-menu {
        top: calc(70px + 36px);
    }
}

/* ============================================
   MOBILE FIX - Pantallas muy pequeñas (≤400px)
   ============================================ */
@media (max-width: 400px) {
    .countdown-main {
        max-width: 100%;
        padding: 0.5rem 0.25rem;
        gap: 0.25rem;
    }

    .countdown-main .countdown-value {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }

    .countdown-main .countdown-unit {
        font-size: 0.6rem;
    }

    .hero-search-container {
        max-width: 100%;
        padding: 0;
    }

    .hero-search-box {
        max-width: 100%;
        padding: 6px 10px;
    }

    .hero-search-input {
        font-size: 14px;
        padding: 0 8px;
    }

    .hero-search-btn {
        width: 32px;
        height: 32px;
    }

    .hero-title-location {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-main-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }

    .next-event-preview {
        max-width: 100%;
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}
