/* =========================================
   PAQUETES PAGE - ESTILOS ÚNICOS
   ========================================= */

:root {
    --paquetes-primary: #2C3E50;
    --paquetes-secondary: #3498DB;
    --paquetes-accent: #E74C3C;
    --paquetes-gold: #F39C12;
    --paquetes-success: #27AE60;
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-teal: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-sunset: linear-gradient(135deg, #FA709A 0%, #FEE140 100%);
    --gradient-ocean: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
}

/* =========================================
   HERO PAQUETES CON SLIDER
   ========================================= */

.paquetes-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.paquetes-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.7) 100%);
}

.paquetes-hero__content {
    position: relative;
    z-index: 3;
    padding: 150px 20px 100px;
}

.hero-text-wrapper {
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title--highlight {
    display: block;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Price Range Slider */
.price-range-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 28px;
    max-width: 500px;
}

.price-range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
}

.price-range-header span:first-child {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.price-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 12px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.price-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

/* =========================================
   FILTROS AVANZADOS
   ========================================= */

.filters-section {
    padding: 40px 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filters-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--paquetes-primary);
    font-size: 0.9rem;
}

.filter-label i {
    color: var(--paquetes-secondary);
}

.filter-select {
    padding: 14px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--paquetes-primary);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-select:hover {
    border-color: var(--paquetes-secondary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--paquetes-secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-reset {
    padding: 14px 28px;
    background: var(--paquetes-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.filter-reset:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* =========================================
   PAQUETES SECTION
   ========================================= */

.paquetes-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--paquetes-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* =========================================
   PAQUETES GRID
   ========================================= */

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: packageFadeIn 0.6s ease forwards;
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.3s;
}

.package-card:nth-child(4) {
    animation-delay: 0.4s;
}

.package-card:nth-child(5) {
    animation-delay: 0.5s;
}

.package-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes packageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-card--featured {
    grid-column: span 2;
}

/* Package Card Header */
.package-card__header {
    position: relative;
}

.package-card__image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-card__image img {
    transform: scale(1.1);
}

.package-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.package-badge--popular {
    background: rgba(231, 76, 60, 0.95);
    color: #fff;
}

.package-badge--adventure {
    background: rgba(243, 156, 18, 0.95);
    color: #fff;
}

.package-badge--luxury {
    background: rgba(142, 68, 173, 0.95);
    color: #fff;
}

.package-badge--family {
    background: rgba(39, 174, 96, 0.95);
    color: #fff;
}

.package-card__quick-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--paquetes-primary);
}

.quick-info-item i {
    color: var(--paquetes-secondary);
}

/* Package Card Body */
.package-card__body {
    padding: 32px;
}

.package-card__title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.package-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--paquetes-primary);
    line-height: 1.2;
}

.package-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: #FFF9E6;
    border-radius: 50px;
    white-space: nowrap;
}

.package-card__rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.package-card__rating span {
    font-weight: 700;
    color: var(--paquetes-primary);
    font-size: 0.9rem;
}

.package-card__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.package-card__location i {
    color: var(--paquetes-accent);
}

.package-card__description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.package-card__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #F8F9FA;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--paquetes-primary);
}

.feature-tag i {
    color: var(--paquetes-secondary);
    font-size: 1rem;
}

.package-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 2px solid #F0F0F0;
}

.package-card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--paquetes-secondary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.price-note {
    font-size: 0.8rem;
    color: #999;
}

.btn-package {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-package:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 4rem;
    color: #DDD;
    margin-bottom: 24px;
}

.no-results h3 {
    font-size: 1.75rem;
    color: var(--paquetes-primary);
    margin-bottom: 12px;
}

.no-results p {
    color: #666;
    margin-bottom: 32px;
}

/* =========================================
   CTA PAQUETES
   ========================================= */

.cta-paquetes {
    padding: 100px 20px;
    background: var(--gradient-ocean);
    position: relative;
    overflow: hidden;
}

.cta-paquetes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn--white {
    background: #fff;
    color: var(--paquetes-secondary);
}

.btn--white:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* =========================================
   MODAL PAQUETES
   ========================================= */

.modal__content--package {
    max-width: 900px;
}

.modal__info--package {
    padding: 40px;
}

.modal__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.modal__location i {
    color: var(--paquetes-accent);
}

.modal__description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.modal__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.modal__pricing {
    text-align: center;
    margin-bottom: 32px;
}

.modal__price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--paquetes-secondary);
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1200px) {
    .paquetes-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 24px;
    }

    .package-card--featured {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: 100%;
    }

    .filter-reset {
        width: 100%;
        justify-content: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .paquetes-hero__content {
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .price-range-box {
        max-width: 100%;
    }

    .slider-nav {
        justify-content: center;
    }

    .paquetes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card__features {
        grid-template-columns: 1fr;
    }

    .package-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-package {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .package-card__body {
        padding: 24px;
    }

    .package-card__title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .quick-info-item {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* =========================================
   HEADER GLASS
   ========================================= */

.paquetes-page .header--glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.paquetes-page .header--glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}