
#seccionBanner {
    position: relative;
    width: 100%;
    height: auto;
}

    #seccionBanner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

#divBannerContenido {
    position: absolute;
    top: 47%;
    left: 0;
    transform: translateY(-50%);
    width: 1280px;
    right: 0;
    margin: 0 auto;
}

    #divBannerContenido h1 {
        font-family: 'ClanOffc-Bold';
        font-size: 48px;
        color: #ffffff;
        line-height: 1.3;
    }

#btnBajarSeccion {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #btnBajarSeccion img {
        width: 36px;
        height: 36px;
        filter: brightness(0) invert(1);
    }

#seccionIntro {
    padding: 72px 0;
    text-align: center;
    background: #f9f9f9;
}

    #seccionIntro h2 {
        font-family: 'ClanOffc-Bold';
        font-size: 34px;
        color: #48948C;
        margin-bottom: 15px;
    }

    #seccionIntro p {
        font-family: 'ClanOffc-Book';
        font-size: 16px;
        color: #636363;
        line-height: 1.3;
        max-width: 700px;
        margin: 0 auto;
    }


#seccionDestinos {
    padding: 72px 0 113px 0;
    overflow: hidden;
    position: relative;
}

    #seccionDestinos:after {
        content: "";
        width: 100%;
        background: #f9f9f9;
        height: 100px;
        position: absolute;
        top: 0;
        left: 0;
    }

    #seccionDestinos:before {
        content: "";
        width: 100%;
        background: #fff;
        height: 100px;
        position: absolute;
        top: 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        z-index: 1;
        left: 0;
    }



    #seccionDestinos h2 {
        font-family: 'ClanOffc-Bold';
        font-size: 24px;
        color: #48948C;
        text-align: center;
        margin-bottom: 48px;
        padding-right: 0;
        position: relative;
        z-index: 3;
    }

#divTabsDestinos {
    display: flex;
    gap: 32px;
    justify-content: center;
    border-radius: 35px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 25px;
    padding: 8px;
}

.btnTab {
    font-family: 'ClanOffc-Medium';
    font-size: 14px;
    color: #A9A9A9;
    background: none;
    border: none;
    border-radius: 35px;
    padding: 16px 62px;
    display: flex;
    align-items: center;
    outline: none !important;
    transition: all 0.35s ease-in-out;
}

    .btnTab.active {
        background: #F9F9F9;
        color: #48948C;
    }

    .btnTab:hover {
        color: #48948C;
    }

    .btnTab i {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .btnTab .icono-viaje {
        background: url("../images/ofertas/icono-viaje.svg") no-repeat center / contain;
    }

    .btnTab .icono-alojamiento {
        background: url("../images/ofertas/icono-alojamiento.svg") no-repeat center / contain;
    }

    .btnTab .icono-experiencia {
        background: url("../images/ofertas/icono-experiencia.svg") no-repeat center / contain;
    }

    .btnTab.active .icono-viaje,
    .btnTab:hover .icono-viaje {
        background: url("../images/ofertas/icono-viaje-activo.svg") no-repeat center / contain;
    }

    .btnTab.active .icono-alojamiento,
    .btnTab:hover .icono-alojamiento {
        background: url("../images/ofertas/icono-alojamiento-activo.svg") no-repeat center / contain;
    }

    .btnTab.active .icono-experiencia,
    .btnTab:hover .icono-experiencia {
        background: url("../images/ofertas/icono-experiencia-activo.svg") no-repeat center / contain;
    }




#divFiltros {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1280px;
    margin: 0 auto;
}

    #divFiltros span {
        font-family: 'ClanOffc-Bold';
        font-size: 18px;
        color: #48948C;
    }

#divSelects {
    display: flex;
    gap: 16px;
}

    #divSelects select {
        font-family: 'ClanOffc-Medium';
        font-size: 14px;
        color: #636363;
        border: 1px solid #48948C;
        border-radius: 35px;
        padding: 12px 50px 10px 27px;
        cursor: pointer;
        appearance: none;
        background: url(../images/ofertas/icono-select.svg) no-repeat 90% 50% / 14px;
    }

        #divSelects select:hover {
            color: #48948C;
        }

#divCardsWrapper {
    padding-top: 40px;
    width: 1280px;
    margin: 0 auto;
    position: relative;
}

    #divCardsWrapper .slick-destinos-new {
        width: 115vw;
        position: initial;
    }

    #divCardsWrapper .slick-slide {
        height: auto !important;
        display: flex !important;
        flex-direction: column;
    }

    #divCardsWrapper .slick-track {
        display: flex;
    }




.slick-disabled {
    opacity: 0.6;
}

#divCardsWrapper .slick-destinos-new .slick-prev {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: none;
    outline: none;
    position: absolute;
    left: 43%;
    bottom: -65px;
    z-index: 1;
    top: inherit;
    background: url(../images/ofertas/icono-left.svg) no-repeat center / contain;
}

#divCardsWrapper .slick-destinos-new .slick-next {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: none;
    outline: none;
    position: absolute;
    right: 49%;
    bottom: -65px;
    z-index: 999;
    top: inherit;
    background: url(../images/ofertas/icono-right.svg) no-repeat center / contain;
}

    #divCardsWrapper .slick-destinos-new .slick-prev:before,
    #divCardsWrapper .slick-destinos-new .slick-next:before {
        display: none;
    }

.divCard {
    width: 380px;
    max-width: 380px;
    min-width: 260px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 15px;
    margin-right: 32px;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.divCardImg img {
    width: 100%;
    height: 288px;
    object-fit: cover;
}

.divCardBody {
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-flow: column;
    height: 100%;
}

.spanOferta {
    font-family: 'ClanOffc-Book';
    font-size: 12px;
    color: #262626;
    border: 1px solid #262626;
    border-radius: 5px;
    padding: 5px 15px 3px 15px;
    background: #D8B5CF;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}

.pDestino {
    font-family: 'ClanOffc-Book';
    font-size: 13px;
    color: #636363;
    margin: 16px 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pDestino i {
        background: url(../images/ofertas/icono-destino.svg) no-repeat center / contain;
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }

.divCard h3 {
    font-family: 'ClanOffc-Bold';
    font-size: 24px;
    color: #48948c;
    margin-bottom: 13px;
}

.divTags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: center;
}

    .divTags span {
        font-family: 'ClanOffc-Book';
        font-size: 12px;
        color: #636363;
        border: 1px solid #636363;
        border-radius: 5px;
        padding: 4px 15px 3px 15px;
    }

.pDuracion {
    font-family: 'ClanOffc-Book';
    font-size: 16px;
    color: #262626;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pDuracion i {
        background: url(../images/ofertas/icono-duracion.svg) no-repeat center / contain;
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

.pPrecio {
    font-family: 'ClanOffc-Bold';
    font-size: 56px;
    color: #3D9B93;
    line-height: 1.1;
}

.pAntes {
    font-family: 'ClanOffc-Book';
    font-size: 16px;
    color: #636363;
    margin-bottom: 16px;
}

.btnVerOferta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'ClanOffc-Medium';
    font-size: 14px;
    color: #1E3E3B;
    border: 1px solid #1E3E3B;
    border-radius: 25px;
    padding: 13px 20px 10px 20px;
    text-decoration: none;
    transition: all 0.35s ease-in-out;
    margin-top: auto;
}

    .btnVerOferta:hover {
        color: #3D9B93;
        border: 1px solid #3D9B93;
    }

    .btnVerOferta i {
        background: url(../images/ofertas/icono-boton.svg) no-repeat center / contain;
        width: 24px;
        height: 24px;
        transition: all 0.35s ease-in-out;
        filter: brightness(0);
        opacity: 0.7;
    }

    .btnVerOferta:hover i {
        filter: inherit;
        opacity: 1;
    }

#seccionDestacados {
    padding: 96px 0 113px 0;
    overflow: hidden;
    background: #F0F0F0;
}

#divTabsDestacados {
    display: flex;
    gap: 32px;
    justify-content: center;
    background: #fff;
    width: fit-content;
    margin: 0 auto;
    padding: 8px;
    border-radius: 50px;
}

.btnSwitch {
    font-family: 'ClanOffc-Bold';
    font-size: 18px;
    color: #A9A9A9;
    background: none;
    border: none;
    border-radius: 35px;
    padding: 16px 62px;
    display: flex;
    align-items: center;
    outline: none !important;
    transition: all 0.35s ease-in-out;
}

    .btnSwitch.active {
        background: #F9F9F9;
        color: #48948C;
    }

    .btnSwitch:hover {
        color: #48948C;
    }

    .btnSwitch i {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .btnSwitch .icono-popular {
        background: url("../images/ofertas/icono-popular.svg") no-repeat center / contain;
    }

    .btnSwitch .icono-novedad {
        background: url("../images/ofertas/icono-novedad.svg") no-repeat center / contain;
    }

    .btnSwitch.active .icono-popular,
    .btnSwitch:hover .icono-popular {
        background: url("../images/ofertas/icono-popular-activo.svg") no-repeat center / contain;
    }

    .btnSwitch.active .icono-novedad,
    .btnSwitch:hover .icono-novedad {
        background: url("../images/ofertas/icono-novedad-activo.svg") no-repeat center / contain;
    }


#divCardsWrapper .slick-destacados-new {
    position: initial;
}

    #divCardsWrapper .slick-destacados-new .slick-prev {
        width: 30px;
        height: 30px;
        cursor: pointer;
        border: none;
        outline: none;
        position: absolute;
        left: 44%;
        bottom: -65px;
        z-index: 1;
        top: inherit;
        background: url(../images/ofertas/icono-left.svg) no-repeat center / contain;
    }

    #divCardsWrapper .slick-destacados-new .slick-next {
        width: 30px;
        height: 30px;
        cursor: pointer;
        border: none;
        outline: none;
        position: absolute;
        right: 48%;
        bottom: -65px;
        z-index: 99;
        top: inherit;
        background: url(../images/ofertas/icono-right.svg) no-repeat center / contain;
    }

        #divCardsWrapper .slick-destacados-new .slick-prev:before,
        #divCardsWrapper .slick-destacados-new .slick-next:before {
            display: none;
        }


/*POPUP DETALLE */
#divOfertaModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#divOfertaLayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

#divOfertaContainer {
    position: relative;
    width: 790px;
    max-width: 95%;
    max-height: 90vh;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}


#btnCerrarOferta {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 24px;
    height: 24px;
    border: none;
    background: url(../images/ofertas/icono-cerrar.svg) no-repeat center / contain;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    outline: none;
}

#divOfertaHeader {
    position: relative;
    flex-shrink: 0;
}

#divOfertaSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

    #divOfertaSlider img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    #divOfertaSlider .slick-dots {
        bottom: 18px;
        background: rgba(0, 0, 0, 0.3);
        width: fit-content;
        margin: 0 auto;
        left: 0;
        right: 0;
        display: flex;
        padding: 5.5px;
        border-radius: 25px;
    }

        #divOfertaSlider .slick-dots li {
            margin: 0 2.75px;
            width: auto;
            height: auto;
            background: none;
        }

            #divOfertaSlider .slick-dots li button {
                margin: 0;
                width: 8px;
                height: 8px;
                background: #fff;
                border-radius: 50%;
                padding: 0;
            }

            #divOfertaSlider .slick-dots li.slick-active button {
                width: 20px;
                background: #48948C;
                border-radius: 10px;
            }

            #divOfertaSlider .slick-dots li button:before {
                display: none;
            }

    #divOfertaSlider .slick-prev {
        position: absolute;
        top: 205px;
        left: 38px;
        width: 24px;
        height: 24px;
        border: none;
        background: url(../images/ofertas/icono-slider-left.svg) no-repeat center / contain;
        cursor: pointer;
        z-index: 10;
        padding: 0;
    }

    #divOfertaSlider .slick-next {
        position: absolute;
        top: 205px;
        right: 38px;
        width: 24px;
        height: 24px;
        border: none;
        background: url(../images/ofertas/icono-slider-right.svg) no-repeat center / contain;
        cursor: pointer;
        z-index: 10;
        padding: 0;
    }

        #divOfertaSlider .slick-next:before,
        #divOfertaSlider .slick-prev:before {
            display: none;
        }

#divOfertaScroll {
    overflow: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

#customScrollTrack {
    position: absolute;
    right: -10px;
    top: 25px;
    width: 5px;
    height: calc(100% - 160px);
    background: none;
    border-radius: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

#divOfertaContainer:hover #customScrollTrack {
    opacity: 1;
}

#customScrollThumb {
    position: absolute;
    width: 100%;
    background: #C1C1C1;
    border-radius: 10px;
    cursor: grab;
    transition: background 0.25s;
}

    #customScrollThumb:hover,
    #customScrollThumb:active {
        background: #999;
        cursor: grabbing;
    }

#divOfertaPrecio {
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    z-index: 3;
    width: 540px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

#divOfertaPrecioIzq,
#divOfertaPrecioDer {
    width: 49%;
}

#divOfertaPrecioIzq {
    border-right: 1px solid #fff;
}

.slick-oferta-new {
    margin-bottom: 0 !important;
}

#divOfertaPrecioIzq .spanOfertaTipo {
    font-family: 'ClanOffc-Book';
    font-size: 12px;
    color: #262626;
    border: 1px solid #262626;
    border-radius: 5px;
    padding: 5px 15px 3px 15px;
    background: #D8B5CF;
    display: inline-block;
    display: inline-block;
    margin-bottom: 5px;
}

#divOfertaPrecioIzq strong {
    display: block;
    font-family: 'ClanOffc-Bold';
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 3px;
}

#divOfertaPrecioIzq p {
    font-family: 'ClanOffc-Book';
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #divOfertaPrecioIzq p i {
        background: url(../images/ofertas/icono-duracion.svg) no-repeat center / contain;
        width: 24px;
        height: 24px;
        margin-right: 5px;
        filter: brightness(0) invert(1);
    }


#divOfertaPrecioDer strong {
    display: block;
    font-family: 'ClanOffc-Bold';
    font-size: 48px;
    color: #ffffff;
}

#divOfertaPrecioDer p {
    font-family: 'ClanOffc-Book';
    font-size: 12px;
    color: #fff;
    text-align: center;
}

#divOfertaBody {
    padding: 32px 80px;
    background: #ffffff;
}

#divOfertaInfo {
    text-align: center;
    margin-bottom: 32px;
}

    #divOfertaInfo p {
        font-family: 'ClanOffc-Book';
        font-size: 16px;
        color: #454545;
        margin-bottom: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #divOfertaInfo p strong,
        #divOfertaInfo p b {
            font-family: 'ClanOffc-Bold';
        }

        #divOfertaInfo p span {
            font-family: 'ClanOffc-Bold';
            font-size: 18px;
            color: #48948C;
        }

        #divOfertaInfo p i.icono-ubicacion {
            background: url(../images/ofertas/icono-ubicacion.svg) no-repeat center / contain;
            width: 20px;
            height: 20px;
            margin: 0 7px;
        }

.pAgencia {
    gap: 7px !important;
}

    .pAgencia strong {
        font-size: 18px !important;
    }

    .pAgencia span {
        font-size: 24px !important;
    }

.pUbicacion {
    margin-bottom: 15px !important;
}


.linkSitioWeb {
    font-family: 'ClanOffc-Book';
    font-size: 16px;
    color: #454545;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 5px 0 20px 0;
    justify-content: center;
    gap: 8px;
}

    .linkSitioWeb i.icono-facebook {
        background: url(../images/ofertas/icono-facebook.svg) no-repeat center / contain;
        width: 24px;
        height: 24px;
    }

    .linkSitioWeb i.icono-link {
        background: url(../images/ofertas/icono-link.svg) no-repeat center / contain;
        width: 10px;
        height: 10px;
    }

    .linkSitioWeb:hover {
        color: #454545;
    }

.divTagsInfo {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    justify-content: center;
    padding: 0 120px;
}

    .divTagsInfo span {
        font-family: 'ClanOffc-Book';
        font-size: 12px;
        color: #636363;
        border: 1px solid #636363;
        border-radius: 5px;
        padding: 4px 5px 3px 5px;
    }



#divOfertaTabs {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 35px;
    padding: 8px;
}

.btnOfertaTab {
    font-family: 'ClanOffc-Medium';
    font-size: 14px;
    color: #A9A9A9;
    background: none;
    border: none;
    border-radius: 35px;
    padding: 16px 82px;
    display: flex;
    align-items: center;
    text-align: left;
    outline: none !important;
    transition: all 0.35s ease-in-out;
}

    .btnOfertaTab.active {
        background: #F9F9F9;
        color: #48948C;
    }

    .btnOfertaTab:hover {
        color: #48948C;
    }

    .btnOfertaTab i {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .btnOfertaTab .icono-actividad {
        background: url("../images/ofertas/icono-actividad.svg") no-repeat center / contain;
    }

    .btnOfertaTab .icono-incluye {
        background: url("../images/ofertas/icono-incluye.svg") no-repeat center / contain;
    }

    .btnOfertaTab.active .icono-actividad,
    .btnOfertaTab:hover .icono-actividad {
        background: url("../images/ofertas/icono-actividad-activo.svg") no-repeat center / contain;
    }

    .btnOfertaTab.active .icono-incluye,
    .btnOfertaTab:hover .icono-incluye {
        background: url("../images/ofertas/icono-incluye-activo.svg") no-repeat center / contain;
    }


.divTabContent {
    display: none;
}

    .divTabContent.active {
        display: block;
    }

.divAcordeon {
    border-bottom: 1px solid #48948C;
    margin-bottom: 5px;
}

    .divAcordeon:last-child {
        border: none;
    }

.btnAcordeon {
    width: 100%;
    text-align: left;
    font-family: 'ClanOffc-Book';
    font-size: 18px;
    color: #454545;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none !important;
}

    .btnAcordeon:hover {
        color: #454545;
    }

    .btnAcordeon span {
        display: flex;
        align-items: center;
    }

    .btnAcordeon b {
        font-family: 'ClanOffc-Bold';
        color: #3D9B93;
        margin-right: 10px;
    }

    .btnAcordeon i.arrow {
        width: 18px;
        height: 18px;
        background: url("../images/ofertas/icono-up.svg") no-repeat center / contain;
        transform: rotate(180deg);
    }

    .btnAcordeon.active i.arrow {
        transform: rotate(0deg);
    }

.small {
    font-size: 16px;
}

.btnAcordeon span i {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

.icono-hospedaje {
    background: url("../images/ofertas/icono-hospedaje.svg") no-repeat center / contain;
}

.icono-alimentacion {
    background: url("../images/ofertas/icono-alimentacion.svg") no-repeat center / contain;
}

.icono-servicio {
    background: url("../images/ofertas/icono-servicio.svg") no-repeat center / contain;
}

.icono-traslado {
    background: url("../images/ofertas/icono-transporte.svg") no-repeat center / contain;
}

.btnAcordeon em {
    font-family: 'ClanOffc-Book';
    font-style: normal;
    border: 1px solid #48948C;
    border-radius: 5px;
    padding: 4px 7px 2px 7px;
    color: #48948C;
    white-space: nowrap;
}

.divAcordeon.no-disponible span {
    opacity: 0.5;
}


.divAcordeonBody {
    font-family: 'ClanOffc-Book';
    font-size: 16px;
    color: #454545;
    padding-bottom: 15px;
    line-height: 1.4;
    display: none;
}

    .divAcordeonBody p {
        margin: 10px 0;
    }

    .divAcordeonBody.texto p {
        margin-bottom: 5px;
    }

    .divAcordeonBody p strong,
    .divAcordeonBody p b {
        font-family: 'ClanOffc-Bold';
    }

    .divAcordeonBody ol,
    .divAcordeonBody ul {
        padding-left: 15px;
        margin: 10px 0;
    }

        .divAcordeonBody ol li {
            list-style-type: decimal;
        }

        .divAcordeonBody ul li {
            list-style-type: disc;
        }

    .divAcordeonBody a {
        text-decoration: underline;
        color: #454545;
    }

        .divAcordeonBody a:hover {
            color: #3D9B93;
        }

.no-border {
    border: none;
}


.divReconocimientos {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .divReconocimientos strong {
        display: block;
        font-family: 'ClanOffc-Bold';
        font-size: 16px;
        color: #48948C;
        margin-bottom: 5px;
        text-align: right;
    }

    .divReconocimientos p {
        font-family: 'ClanOffc-Book';
        font-size: 16px;
        color: #636363;
        margin-bottom: 10px;
        text-align: right;
    }

.divLogos ul {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .divLogos ul li {
        width: 60px;
        position: relative;
        cursor: pointer;
    }

        .divLogos ul li img {
            width: 60px;
            object-fit: contain;
        }

.tooltipLogos {
    display: none;
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: #1E3E3B;
    color: #ffffff;
    font-family: 'ClanOffc-Book';
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    padding: 8px 10px;
    border-radius: 10px;
    width: 270px;
    z-index: 10;
}

    .tooltipLogos::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 0px solid transparent;
        border-top-color: #1E3E3B;
        border-width: 15px;
        border-radius: 0px;
    }

.divLogos ul li:hover .tooltipLogos {
    display: block;
}

.divVideoOferta {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

    .divVideoOferta video,
    .divVideoOferta iframe {
        width: 100% !important;
        height: 330px !important;
        object-fit: cover;
        border-radius: 30px;
    }


#divOfertaFooter {
    flex-shrink: 0;
    padding: 24px 32px;
    text-align: center;
    background: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 19.2px 0 rgba(0, 0, 0, 0.49);
}

    #divOfertaFooter p {
        font-family: 'ClanOffc-Bold';
        font-size: 22px;
        color: #333;
        margin-bottom: 10px;
    }

#btnWhatsapp {
    background: #801063;
    color: #ffffff;
    font-family: 'ClanOffc-Bold';
    font-size: 14px;
    border-radius: 35px;
    padding: 12px 32px;
    text-decoration: none;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease-in-out;
}

    #btnWhatsapp:hover {
        box-shadow: 0px 5px 15px rgb(128 16 99 / 30%);
    }

    #btnWhatsapp i {
        width: 24px;
        height: 24px;
        background: url("../images/ofertas/icono-whatsapp.svg") no-repeat center / contain;
    }

main {
    background: none !important;
}


body.dark #seccionIntro,
body.dark #divTabsDestinos,
body.dark .divCardBody {
    background: #262626 !important;
}

    body.dark #seccionIntro p {
        color: #ffffff !important;
    }

body.dark #seccionDestinos,
body.dark .btnTab.active {
    background: #454545 !important;
}

    body.dark #seccionDestinos h2,
    body.dark .btnTab.active {
        color: #C6DEDB !important;
    }

body.dark #divFiltros span {
    color: #F0F0F0 !important;
}

body.dark #divSelects select {
    color: #F0F0F0;
    border: 1px solid #F0F0F0;
}

    body.dark #divSelects select option {
        background-color: #1a1a1a;
        color: #F0F0F0;
    }

body.dark .btnTab.active .icono-viaje {
    background: url("../images/ofertas/icono-viaje-dark.svg") no-repeat center / contain;
}

body.dark .btnTab.active .icono-alojamiento {
    background: url("../images/ofertas/icono-alojamiento-dark.svg") no-repeat center / contain;
}

body.dark .btnTab.active .icono-experiencia {
    background: url("../images/ofertas/icono-experiencia-dark.svg") no-repeat center / contain;
}

body.dark #divSelects select {
    background: url(../images/ofertas/icono-select-dark.svg) no-repeat 90% 50% / 14px;
}

body.dark .pDestino {
    color: #F0F0F0;
}

body.dark .pDuracion i {
    filter: brightness(0) invert(1);
}

body.dark .divTags span {
    color: #F0F0F0;
    border: 1px solid #F0F0F0;
}

body.dark .pDuracion {
    color: #F0F0F0;
}

body.dark .pAntes {
    color: #F0F0F0;
}

body.dark .btnVerOferta {
    color: #ffffff;
    border: 1px solid #ffffff;
}

    body.dark .btnVerOferta i {
        filter: brightness(0) invert(1);
    }

body.dark .divCard {
    box-shadow: 0px 0px 0px rgb(255 255 255 / 8%);
    border: 1px solid #4d4d4d;
}

body.dark #divCardsWrapper .slick-destinos-new .slick-prev,
body.dark #divCardsWrapper .slick-destacados-new .slick-prev {
    background: url(../images/ofertas/icono-left-dark.svg) no-repeat center / contain;
}

body.dark #divCardsWrapper .slick-destinos-new .slick-next,
body.dark #divCardsWrapper .slick-destacados-new .slick-next {
    background: url(../images/ofertas/icono-right-dark.svg) no-repeat center / contain;
}

body.dark #seccionDestacados {
    background: #262626;
}

body.dark #divTabsDestacados {
    background: #454545;
}

body.dark .btnSwitch.active {
    background: #262626;
}

body.dark #divOfertaFooter p {
    color: #fff;
}

body.dark #divOfertaBody {
    background: #262626;
}

body.dark #divOfertaFooter {
    background: #454545;
}

body.dark #divOfertaInfo p strong,
body.dark #divOfertaInfo p b,
body.dark #divOfertaInfo p {
    color: #F9F9F9;
}

    body.dark #divOfertaInfo p i.icono-ubicacion {
        background: url(../images/ofertas/icono-ubicacion-dark.svg) no-repeat center / contain;
    }

body.dark .linkSitioWeb,
body.dark .linkSitioWeb:hover {
    color: #f9f9f9;
}

body.dark .divTagsInfo span {
    color: #f9f9f9;
    border: 1px solid #f9f9f9;
}

body.dark .btnOfertaTab.active {
    background: #262626;
}

body.dark #divOfertaTabs {
    background: #454545;
}

body.dark .divAcordeonBody {
    color: #ffffff;
}

body.dark .divReconocimientos {
    background: none;
}

    body.dark .divReconocimientos strong {
        color: #C6DEDB;
    }

    body.dark .divReconocimientos p {
        color: #ffffff;
    }

body.dark .btnAcordeon span i,
body.dark .linkSitioWeb i.icono-facebook,
body.dark .linkSitioWeb i.icono-link {
    filter: brightness(0) invert(1);
}

body.dark .btnAcordeon {
    color: #f9f9f9;
}

    body.dark .btnAcordeon:hover {
        color: #f9f9f9;
    }

body.dark #seccionDestinos:after {
    content: "";
    background: #262626;
}

body.dark #seccionDestinos:before {
    content: "";
    background: #454545;
}


@media screen and (min-width: 760px) {
    #divOfertaScroll {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        #divOfertaScroll::-webkit-scrollbar {
            display: none;
        }
}

@media screen and (max-width:1024px) {
    #divBannerContenido,
    #divFiltros,
    #divCardsWrapper {
        width: 90%;
    }

    #divBannerContenido {
        top: 50%;
    }

        #divBannerContenido h1 {
            font-size: 32px;
        }

    #seccionIntro h2 {
        font-size: 28px;
    }

    .pPrecio {
        font-size: 38px;
        line-height: 1.1;
    }

    .divCard h3 {
        font-size: 20px;
    }

    .divCard {
        width: 95%;
        max-width: inherit;
        min-width: auto;
        margin-bottom: 15px;
        margin-right: 5%;
    }

    .btnTab {
        padding: 16px 42px;
    }

    .btnOfertaTab {
        padding: 16px 60px;
    }

    #btnCerrarOferta {
        top: -30px;
        right: -3px;
    }

    #divCardsWrapper .slick-destinos-new .slick-prev {
        left: 45%;
    }

    #divCardsWrapper .slick-destinos-new .slick-next {
        right: 42%;
    }

    #divCardsWrapper .slick-destacados-new .slick-prev {
        left: 42%;
    }

    #divCardsWrapper .slick-destacados-new .slick-next {
        right: 43%;
    }

    #divSelects {
        gap: 7px;
    }

        #divSelects select {
            padding: 12px 10px 10px 10px;
        }

    .btnSwitch {
        font-size: 16px;
    }

        .btnSwitch i {
            width: 18px;
            height: 18px;
        }
}

@media screen and (max-width:768px) {


    #seccionBanner img {
        width: 100%;
        height: 408px;
    }

    #divBannerContenido {
        position: relative;
        top: inherit;
        transform: initial;
        margin-top: 40px;
    }

        #divBannerContenido h1 {
            font-size: 32px;
            color: #48948c;
            text-align: center;
            line-height: 1.2;
        }

    #btnBajarSeccion {
        position: relative;
        bottom: inherit;
        left: 0;
        transform: inherit;
        width: 36px;
        height: 36px;
        right: 0;
        margin: 20px auto 30px auto;
    }

        #btnBajarSeccion img {
            width: 26px;
            height: 26px;
        }

    #seccionIntro {
        padding: 50px 5%;
    }

        #seccionIntro h2 {
            font-size: 24px;
        }

    #seccionDestinos {
        padding: 50px 5%;
    }

        #seccionDestinos h2 {
            margin-bottom: 24px;
            padding: 0 15%;
            font-size: 22px;
        }

    #divFiltros span {
        display: none;
    }

    #divTabsDestinos {
        gap: 10px;
    }

    .btnTab {
        flex-flow: column;
        justify-content: center;
        gap: 5px;
        padding: 5px 24px;
    }

        .btnTab i {
            width: 16px;
            height: 16px;
            margin-right: 0;
        }

        .btnTab span {
            display: none;
        }

        .btnTab.active span {
            display: block;
        }

    #divSelects {
        flex-flow: row wrap;
    }

        #divSelects select {
            padding: 8px 26px 6px 10px;
        }

    .divCard {
        width: 300px;
        max-width: inherit;
        min-width: auto;
        margin-right: 16px;
    }

    .divCardImg img {
        width: 100%;
        height: 250px;
    }

    .pPrecio {
        font-size: 46px;
        line-height: 1.1;
    }

    #divOfertaContainer {
        width: 100%;
        max-height: 85vh;
    }

    .fullwidth {
        width: 100%;
        margin-right: 0;
    }

    #divCardsWrapper .slick-destacados-new .slick-prev {
        left: 39%;
    }

    #divCardsWrapper .slick-destacados-new .slick-next {
        right: 37%;
    }

    #seccionDestinos {
        padding: 50px 5% 113px 5%;
    }

    #divCardsWrapper .slick-destinos-new .slick-prev {
        left: 39%;
    }

    #divCardsWrapper .slick-destinos-new .slick-next {
        right: 37%;
    }

    #seccionDestacados {
        padding: 76px 0 113px 0;
    }

    #divTabsDestacados {
        gap: 15px;
        width: 95%;
    }

    .btnSwitch {
        padding: 12px 0;
        width: 50%;
        justify-content: center;
        font-size: 14px;
    }

    #seccionDestacados {
        padding: 50px 5% 113px 5%;
    }

    #divOfertaSlider img {
        width: 100%;
        height: 415px;
    }

    #btnBajarSeccion img {
        filter: inherit;
    }


    #divOfertaPrecio {
        border-radius: 8px;
        width: 235px;
        flex-flow: column;
    }

    #divOfertaPrecioIzq {
        width: 100%;
        border: none;
        border-bottom: 1px solid #fff;
    }

    #divOfertaPrecioDer {
        width: 100%;
    }

    #divOfertaPrecioIzq p {
        font-size: 14px;
    }

        #divOfertaPrecioIzq p i {
            width: 22px;
            height: 22px;
        }

    #divOfertaPrecioIzq strong {
        font-size: 18px;
    }

    #divOfertaPrecioDer strong {
        font-size: 34px;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    #divOfertaSlider .slick-dots li button {
        width: 7px;
        height: 7px;
    }

    #divOfertaSlider .slick-dots li {
        margin: 0 1.75px;
    }

    .pAgencia strong {
        display: none;
    }

    #divOfertaBody {
        padding: 35px 30px;
    }

    .divAcordeonBody {
        font-size: 14px;
        line-height: 1.6;
    }

    .divTagsInfo {
        padding: 0 0;
    }

    #divOfertaTabs {
        gap: 10px;
    }

    .btnOfertaTab {
        padding: 16px 0;
        width: 50%;
        justify-content: center;
    }

        .btnOfertaTab span {
            display: none;
        }

        .btnOfertaTab.active span {
            display: block;
        }

    .divLogos {
        width: 100%;
    }

    .divReconocimientos {
        flex-flow: column;
        padding: 25px 10px;
        background: none;
    }

    .divTextoLogos {
        width: 100%;
    }

    .divReconocimientos strong {
        text-align: center;
    }

    .divReconocimientos p {
        text-align: center;
        margin-bottom: 15px;
    }

    .tooltipLogos {
        width: 200px;
    }

    .divVideoOferta video,
    .divVideoOferta iframe {
        width: 100% !important;
        height: 163px !important;
        border-radius: 15px;
    }

    #divOfertaFooter p {
        font-size: 18px;
    }

    #divOfertaFooter {
        padding: 24px 20px;
    }

    .btnAcordeon span {
        flex-flow: row wrap;
    }

        .btnAcordeon span i {
            width: 22px;
            height: 22px;
            margin-right: 10px;
            margin-bottom: 5px;
        }

    #divOfertaSlider .slick-prev {
        left: 20px;
    }

    #divOfertaSlider .slick-next {
        right: 20px;
    }

    #btnCerrarOferta {
        top: -35px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .small {
        font-size: 15px;
    }
}
