/* ============================================
   PAQUETES AÉREOS - MODERN STYLES
   VALLE DEL SOL
   ============================================ */

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(251, 240, 54, 0.9);
    color: #003180;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 800px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: white;
}

.hero-btn.primary:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(97, 189, 152, 0.5);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: white;
    color: #003180;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(97, 189, 152, 0.9);
    border-color: #61bd98;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.5);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #fbf036;
    transform: scale(1.4);
    border-color: white;
    box-shadow: 0 0 15px rgba(251, 240, 54, 0.8);
}

.slider-dot:hover {
    background: white;
}

/* Slide Animations */
.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-slide-up.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1 !important; /* Fuerza a Google/navegadores a mantenerlo visible */
        transform: translateY(0);
    }
}

/* Container Custom */
.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Section */
.intro-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #61bd98;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #003180;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #61bd98, #036da7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.3rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Packages Section */
.packages-section {
    padding: 6rem 2rem;
    background: white;
}

.packages-section.bg-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #003180;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: #61bd98;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Packages Grid - 3 columnas */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Package Card */
.package-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #61bd98;
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: #61bd98;
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .card-image img {
    transform: scale(1.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-badge.bestseller {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.card-badge.cultural {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.card-badge.premium {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.card-badge.adventure {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.package-card:hover .card-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: #003180;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-view-btn:hover {
    background: #61bd98;
    color: white;
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    
}

.card-header-info {
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #003180;
    margin-bottom: 0.3rem;
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.card-duration i {
    color: #61bd98;
}

/* Card Price Box */
.card-price-box {
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.card-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.price-amount {
    display: block;
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.price-person {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Card Features */
.card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #61bd98;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Card Highlights */
.card-highlights {
    padding: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #61bd98;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #333;
}

.card-highlights strong {
    color: #003180;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Modern Buttons */
.btn-modern {
    flex: 1;
    min-width: 140px;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-modern.primary {
    background: linear-gradient(135deg, #003180, #036da7);
    color: white;
}

.btn-modern.primary:hover {
    background: linear-gradient(135deg, #036da7, #003180);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 109, 167, 0.4);
}

.btn-modern.secondary {
    background: white;
    color: #003180;
    border: 2px solid #036da7;
}

.btn-modern.secondary:hover {
    background: #036da7;
    color: white;
    transform: translateY(-3px);
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #61bd98;
    box-shadow: 0 15px 40px rgba(97, 189, 152, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    color: #003180;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li::before {
    content: '✓';
    color: #61bd98;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-header h2 i {
    color: #61bd98;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Modern Form */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #003180;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-label i {
    color: #61bd98;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #61bd98;
    background: white;
    box-shadow: 0 0 0 4px rgba(97, 189, 152, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    color: #666;
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.4);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(97, 189, 152, 0.6);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-slider-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .card-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 70px;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    /* Botones del hero en fila */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 3px solid transparent;
        width: auto;
        min-width: 45%;
        justify-content: center;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}


























/* Responsive */
@media (max-width: 991px) {
    .hero-slider-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .card-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 70px;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dates-tabs {
        flex-direction: column;
    }
    
    .date-tab {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .card-actions {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 576px) {
.container-custom {
  width:100%;
    max-width:100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.packages-section {
    padding: 0.2rem 0.2rem;
    background: white;
}



}




/* Responsive - mantener como está hasta 768px */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 70px;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dates-tabs {
        flex-direction: column;
    }
    
    .date-tab {
        width: 100%;
    }
}

/* NUEVO: Solo para móviles pequeños (576px o menos) */
@media (max-width: 576px) {
    /* Botones del hero en fila y con ancho específico */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%; /* Contenedor al 100% */
    }
    
    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 3px solid transparent;
        width: auto; /* Botones con ancho automático */
        min-width: 45%; /* Mínimo 45% para que quepan 2 en fila */
        justify-content: center;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 5761px) {
    .hero-slider-section {
        height: 95vh;
        min-height: 500px;
    }
}




















/* Dates Section */
.dates-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #003180, #036da7);
}

.dates-section .section-header {
    color: white;
}

.dates-section .section-title {
    color: white;
}

.dates-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Dates Tabs */
.dates-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.date-tab {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fbf036;
}

.date-tab.active {
    background: #fbf036;
    color: #003180;
    border-color: #fbf036;
    box-shadow: 0 10px 30px rgba(251, 240, 54, 0.4);
}

/* Dates Content */
.dates-content {
    position: relative;
    min-height: 300px;
}

.dates-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.5s ease;
}

.dates-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Date Card */
.date-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.date-card:hover {
    transform: translateY(-5px);
    border-color: #fbf036;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.date-month {
    font-size: 1rem;
    font-weight: 700;
    color: #fbf036;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.date-days {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.date-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbf036;
    margin-bottom: 1rem;
}

.date-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.date-status.available {
    background: rgba(97, 189, 152, 0.3);
    color: #fff;
    border: 2px solid #61bd98;
}

.date-status.few-left {
    background: rgba(251, 240, 54, 0.3);
    color: #fbf036;
    border: 2px solid #fbf036;
}

.date-status.sold-out {
    background: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}








/* ========================================================================== */
/* ANIMACIONES BLINDADAS (A PRUEBA DE FALLOS)                                 */
/* ========================================================================== */

.animate-slide-up {
    /* 1. Usamos 'both' para que respete el estado inicial (0%) y final (100%) */
    /* 2. Usamos !important para destruir cualquier otra animación que intente sobreescribirla */
    animation: slideUp 0.8s ease both !important; 
}

/* Los delays dictan cuánto tiempo esperan en estado invisible antes de subir */
.animate-slide-up.delay-1 {
    animation-delay: 0.2s !important;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s !important;
}

.animate-slide-up.delay-3 {
    animation-delay: 0.6s !important;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
