/* PORTADA  */

.title-portada {
    color: var(--black-50);
    text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.35);
    font-size: 72px;
    letter-spacing: -0.03em;
    line-height: 85%;
}

.nuestros-servicios {
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 85%;
    color: var(--black-50);
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

.cat-menu {
    height: 250px;
    width: 200%;
    max-width: 200px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.cat-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.cat-menu:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.cat-menu .normal {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.cat-menu .normal .d-flex:first-child a {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: var(--secondary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-menu:hover .normal .d-flex:first-child a {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.cat-menu .normal h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-50);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    line-height: 85%;

    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-menu:hover .normal h3 {
    left: 20px;
    text-align: center;
    transform: translate(calc(100px - 50% - 20px), -110px);
}

.cat-menu .cat-menu-large {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.cat-menu .cat-menu-large a {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    padding: 8px 0;
    overflow: hidden;
    background: var(--secondary-600);
    border-radius: 50%;
    color: transparent;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-menu:hover .cat-menu-large a {
    opacity: 1;
    pointer-events: auto;
    width: 110px;
    border-radius: 1000px;
    color: var(--black-50);
    padding: 8px 16px;
    transform: translate(calc(-100px + 50% + 15px), 115px);
    cursor: pointer;
}

.cat-menu .cat-menu-large a svg {
    min-width: 20px;
}

/* CARD DE HOTELES PORTADA  */

.card-vertical {
    border-radius: 25px;
    box-shadow: 4px 4px 32px rgba(68, 68, 68, 0.15);
    background-color: var(--black-50);
}

.card-vertical img {
    border-radius: 25px 25px 0px 0px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-vertical .info-wrapper {
    padding: 12px;
}

.card-vertical .tipo-plan {
    font-size: 12px;
    line-height: 20px;
    color: var(--tertiary-500);
    background-color: rgba(0, 159, 227, 0.15);
    padding: 2px 8px;
    border-radius: 16px;
}

.card-vertical .fecha-card {
    color: var(--black-950);
    line-height: 24px;
    font-weight: 400;
    font-size: 13px;
}

.card-vertical h5 {
    color: var(--black-950);
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-vertical ul {
    list-style: none;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: var(--black-500);
    font-weight: 400;
}

.card-vertical ul li {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-vertical .booking-wrapper {
    padding-top: 12px;
    border-top: 1px solid var(--black-200);
}

.card-vertical .booking-wrapper span {
    line-height: 24px;
    font-weight: 600;
    font-size: 24px;
    color: var(--black-950);
}

.card-vertical .booking-wrapper span small {
    font-size: 14px;
}

.booking-btn {
    box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
    border-radius: 100px;
    background-color: var(--secondary-600);
    padding: 8px 18px;
    font-size: 16px;
    color: var(--black-50) !important;
    border: none;
    line-height: 24px;
    outline: none;
    font-weight: 500;
}

@media (max-width: 480px) {
    .booking-btn {
        font-size: 12px;
    }

    .destinos-bg p {
        font-size: 18px !important;
        line-height: 18px !important;
    }

    .destinos-bg h5 {
        font-size: 32px;
    }

    .swiper-nav {
        margin-top: 36px;
    }

    .h1-mobile {
        line-height: 90% !important;
        margin-bottom: 16px !important;
    }

    .vuelos-section {
        padding: 80px 20px !important;
    }

    .vuelos-section h1 {
        font-size: 40px !important;
    }

    .vuelos-section p {
        font-size: 24px !important;
        line-height: 24px !important;
    }
}

.booking-btn:hover,
.booking-btn:focus {
    background-color: var(--secondary-800);
    cursor: pointer;
    outline: none;
}

.booking-btn i {
    margin-right: 12px;
    font-size: 12px;
}

/* VUELOS  */

.vuelos-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vuelos-section {
    position: relative;
    padding: 120px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vuelos-section h1 {
    font-size: 52px;
    letter-spacing: -0.05em;
    line-height: 80%;
    color: var(--black-50);
}

.vuelos-section p {
    font-size: 28px !important;
    letter-spacing: -0.05em;
    line-height: 28px;
    font-weight: 500;
    color: var(--black-50) !important;
    margin-bottom: 32px;
}

/* BANNER  */

.banner-wrapper img {
    border-radius: 25px;
}

/* .banner-wrapper img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
} */

/* BANNER CONTACTO  */

.banner-contacto-wrapper {
    background: linear-gradient(90deg, #009fe3, #2d2e83);
    border-radius: 25px;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}

.banner-contacto-wrapper .grupo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    right: 0;
    top: -22px;
}

.banner-contacto-wrapper .grupo-2 {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    left: 0;
    top: 0;
}

.banner-contacto-wrapper h1 {
    font-size: 40px;
    letter-spacing: -0.05em;
    line-height: 80%;
    color: var(--black-50);
}

.banner-contacto-wrapper p {
    font-size: 24px;
    letter-spacing: -0.05em;
    line-height: 28px;
    font-weight: 500;
    color: var(--black-50);
}

.banner-contacto-wrapper>div {
    position: relative;
    z-index: 2;
}

/* DESTINOS  */

.destinos-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 56px 32px;
    overflow: hidden;
}

.destinos-bg h5 {
    font-size: 40px;
    letter-spacing: -0.05em;
    line-height: 80%;
    color: var(--black-50);
}

.destinos-bg p {
    font-size: 24px !important;
    letter-spacing: -0.05em;
    line-height: 28px !important;
    font-weight: 500;
    color: var(--black-50) !important;
}

.destinos-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.destinos-bg h5,
.destinos-bg p,
.destinos-bg a {
    position: relative;
    z-index: 2;
}

/* METAS  */

.metas-wrapper h1 {
    font-size: 48px;
    letter-spacing: -0.03em;
    line-height: 90%;
    background: linear-gradient(90deg, #009fe3, #2d2e83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metas-wrapper p {
    font-size: 18px;
    line-height: 120%;
    color: var(--black-800) !important;
}

.metas-wrapper .metas-info span {
    font-size: 64px;
    line-height: 64px;
    color: rgba(149, 27, 129, 0.5);
    width: 100px;
}

.metas-wrapper .metas-info p {
    color: var(--black-700) !important;
    margin-left: 16px;
    width: 100%;
}

/* MODAL  */

.modal-desing {
    border-radius: 16px !important;
    border: none;
}

.modal-desing p {
    font-size: 14px;
    line-height: 80%;
    color: var(--black-500);
}

.modal-desing .close:focus,
.modal-desing .close:hover {
    outline: none;
}

.modal-desing .modal-header {
    border-bottom: none;
}

.secondary-btn-desing {
    box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
    border-radius: 100px;
    background: linear-gradient(90deg, #009fe3, #2d2e83);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 16px;
    color: var(--black-50);
    outline: none;
    width: 100%;
    border: none;
    gap: 8px;
}

.secondary-btn-desing:hover,
.secondary-btn-desing:focus {
    outline: none;
    background: linear-gradient(90deg, #018cc7, #25276d);
    cursor: pointer;
}

.form-group-genessis label {
    font-size: 14px;
    line-height: 80%;
    color: var(--black-800);
    font-weight: 400;
}

.form-group-genessis input {
    border-radius: 25px;
    border: 1px solid #d3d3d3;
    padding: 16px;
    text-align: left;
    font-size: 14px;
    color: var(--black-800);
    outline: none;
    margin-bottom: 1rem;
    height: calc(2.25rem + 2px);
}

.form-group-genessis input:focus {
    outline: none;
    border-color: none;
    box-shadow: none;
}

.form-group-genessis input::placeholder {
    color: var(--black-400);
    opacity: 1;
}

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

@media (min-width:768px) and (max-width:1024px) {
    .banner-contacto-wrapper h1 {
        font-size: 36px !important;
    }

    .banner-contacto-wrapper p {
        font-size: 20px !important;
        line-height: 20px !important;
    }

    .banner-contacto-btn-wrapper {
        flex-direction: column;
        align-items: end !important;
    }

    .cat-menu {
        height: 215px;
    }
}

@media (max-width: 480px) {
    .banner-contacto-wrapper {
        margin: 0 4px;
        padding: 40px 24px;
    }

    .banner-contacto-wrapper h1 {
        font-size: 32px;
    }

    .banner-contacto-wrapper p {
        font-size: 18px;
        line-height: 18px;
    }

    .banner-contacto-btn-wrapper {
        flex-direction: column;
        align-items: end !important;
    }

    .grupo {
        height: 200px;
        top: 0 !important;
    }

    .grupo-2 {
        height: 150px;
        top: auto !important;
        bottom: 0 !important;
    }

    .title-portada-index {
        font-size: 32px !important;
        line-height: 32px !important;
    }
}

@media (max-width: 350px) {
    .banner-contacto-wrapper p {
        margin-bottom: 24px;
    }
}

.fondo-banner,
.fondo-banner .cont-banner {
    height: 90dvh;
}

@media (max-width:767px) {

    .fondo-banner,
    .fondo-banner .cont-banner {
        height: auto;
    }

    .cat-menu {
        height: 200px;
        max-width: 160px;
        border-radius: 20px;
    }

    .cat-menu .normal h3 {
        font-size: 18px;
        bottom: 15px;
        left: 15px;
    }

    .cat-menu:hover .normal h3 {
        transform: translate(calc(80px - 50% - 15px), -90px);
    }

    .cat-menu .normal .d-flex:first-child a {
        width: 32px;
        height: 32px;
    }

    .cat-menu:hover .cat-menu-large a {
        width: 95px;
        transform: translate(calc(-80px + 50% + 10px), 95px);
    }
}

@media (min-width:425px) and (max-width:767px) {

    .fondo-banner,
    .fondo-banner .cont-banner {
        height: auto;
    }

}


@media (min-width:768px) and (max-width:1024px) {

    .fondo-banner,
    .fondo-banner .cont-banner {
        height: auto;

    }

}

@media (min-width:1024px) and (max-width:1599px) {

    .fondo-banner,
    .fondo-banner .cont-banner {
        /* height:108dvh; */
        height: auto;

    }

}

@media (min-width:1440px) and (max-width:1919px) {

    .fondo-banner,
    .fondo-banner .cont-banner {
        /* height:120dvh; */
        height: auto;
    }

}

@media (min-width:1600px) {

    .fondo-banner,
    .fondo-banner .cont-banner {
        /* height:130dvh; */
        height: auto;

    }

}