
.cont-hero-group{
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
}

.img-hero-group{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.cont-text-hero-img{
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; text-align: center;
}

.fw-600{
    font-weight: 600
}

.fw-700{
    font-weight: 700
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.overlay .text-white {
    margin: 0 auto;
    width: 80%; 
}

/* ============================================================
   Landing de destino — diagramación responsive (mobile + desktop)
   Estilos movidos desde inline. Carruseles con Swiper.
   ============================================================ */

.pd-hero-title {
    font-size: 40px;
    margin: 0;
}

/* ---- Carrusel de paquetes + galería (Swiper) ---- */
.pd-packages {
    margin-top: 24px;
    margin-bottom: 8px;
}

.packages-swiper,
.gallery-swiper {
    position: relative;
    padding: 8px 4px 46px;
}

.packages-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.packages-swiper .swiper-slide .package-card {
    width: 100%;
    height: 100%;
}

.packages-swiper .swiper-button-next,
.packages-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3276d8;
    color: #fff;
    box-shadow: 0 4px 12px rgba(50, 118, 216, .35);
}

.packages-swiper .swiper-button-next::after,
.packages-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.packages-swiper .swiper-button-disabled,
.gallery-swiper .swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.packages-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active {
    background: #3276d8;
}

@media (max-width: 767.98px) {
    .packages-swiper .swiper-button-next,
    .packages-swiper .swiper-button-prev,
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        display: none;
    }
}

/* ---- Sección de contenido ---- */
.pd-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 48px 0;
}

.pd-section-head {
    margin-bottom: 40px;
}

.pd-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #212529;
    line-height: 1.3;
    margin: 0 0 12px;
}

.pd-section-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    border-radius: 2px;
}

.pd-section-lead {
    font-size: 16px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* ---- Features ---- */
.pd-feature-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    padding: 24px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pd-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .15);
}

.pd-feature-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    margin-bottom: 16px;
}

.pd-feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px;
}

.pd-feature-card__text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ---- Galería ---- */
.pd-gallery {
    margin-top: 48px;
}

.pd-gallery__title {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 4px;
}

.pd-gallery__sub {
    color: #6c757d;
    margin: 0;
}

.pd-gallery__slide {
    position: relative;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}

.pd-gallery__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.pd-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    padding: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

/* ---- CTA viaje personalizado ---- */
.pd-cta {
    position: relative;
    margin-top: 48px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 110, 253, .3);
    padding: 40px 24px;
    color: #fff;
    text-align: center;
}

.pd-cta__decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    filter: blur(40px);
}

.pd-cta__decoration--1 {
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
}

.pd-cta__decoration--2 {
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .08);
    filter: blur(50px);
}

.pd-cta__inner {
    position: relative;
    z-index: 1;
}

.pd-cta__badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pd-cta__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
}

.pd-cta__text {
    font-size: 16px;
    opacity: .95;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.pd-cta__benefits {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    font-size: 14px;
}

.pd-cta__benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-cta__btn {
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 36px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pd-cta__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .4);
}

.pd-cta__note {
    font-size: 13px;
    opacity: .8;
    margin: 16px 0 0;
}

/* ---- Desktop ---- */
@media (min-width: 992px) {
    .pd-hero-title { font-size: 64px; }
    .pd-content { padding: 64px 0; }
    .pd-section-title { font-size: 32px; }
    .pd-section-lead { font-size: 18px; }
    .pd-gallery__title { font-size: 26px; }
    .pd-gallery__slide img { height: 340px; }
    .pd-cta { padding: 56px 40px; }
    .pd-cta__title { font-size: 30px; }
}
