@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

:root {
    --header-height: 3rem;

    /*========== Colores ==========*/
    --blanco: #fff;
    --negro: #434040;
    --azul: #0265de;
    --azul2: #ddedff;
    --azul3: #0050B1;
    --azul4: #2577db;
    --gris1: #9b9b9b;
    --gris2: #d6d6d6;
    --gris3: #ededed;
    --verde1: #00d17a;
    --verde2: #3bdf9a;

    /*========== Fonts ==========*/
    --body-font: "Poppins", sans-serif;
    --title-font: "Poppins", sans-serif;
    --biggest-font-size: 3rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.15rem;
    --big-font-size: 1.35rem;
    --normal-font-size: 1.2rem;
    --normal2-font-size: 1rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;

    /*========== Font weight ==========*/
    --light-weight: 300;
    --normal-weight: 400;
    --medium-weight: 500;
    --bold-weight: 600;

    /*========== Margenes Bottom ==========*/
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    --mb-3-5: 3.5rem;
    --mb-4: 4rem;
    --mb-4-5: 4.5rem;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none !important;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

.--pb10 {
    padding-bottom: 10px !important;
}

.--pb15 {
    padding-bottom: 15px !important;
}

.--pb20 {
    padding-bottom: 20px !important;
}

.--pt20 {
    padding-top: 20px !important;
}

.--pt30 {
    padding-top: 30px !important;
}

.--pt40 {
    padding-top: 40px !important;
}

.--pt55 {
    padding-top: 55px !important;
}

.--mb50 {
    margin-bottom: 50px !important;
}

.--mt55 {
    margin-top: 55px !important;
}

.--mt30 {
    margin-top: 30px !important;
}

.--mt40 {
    margin-top: 40px !important;
}

/*
#formContacto .btn-primario {
    background-color: #c91d68;
}

#formContacto .btn-primario:hover {
    box-shadow: 0 6px 25px 0px #f87eb3;
    background-color: #e6478c;
} */


h1,
h2,
h3,
h4 {
    font-family: var(--title-font);
    font-weight: var(--bold-weight);
    line-height: 135%;
}

h1, h2 {
    font-size: var(--h1-font-size);
}

/*h2 {
    font-size: var(--h2-font-size);
}*/

h3 {
    font-size: var(--h3-font-size);
}

a {
    text-decoration: none;
    color: inherit;
}

.info__sub h1, .info__sub h2 {
    line-height: 1.25;
}

main,
header,
section {
    width: 100%;
}

.container,
.container__bis {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.text-featured {
    font-size: 21px;
    line-height: 1.35;
}

.text-small {
    font-size: 18px;
    line-height: 1.4 !important;
}

.logo-campania {
    display: block;
    height: 230px;
    margin-bottom: 5px;
}

.logo-campania.--center {
    text-align: center;
    margin: 0 auto 10px auto;
}

/* Estilos nuevos */

.container__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 65px;
    width: 90%;
}

.container__row .item__sub {
    flex-direction: column;
    align-items: flex-start;
}
/*
.container__row .texto__sub {
    text-align: center;
}*/

.container__row .circulo1 {
    width: 3.2rem;
    max-width: 3.2rem;
    height: 3.2rem;
}

.container__row .circulo1 img {
    width: 25px;
}

.sub.--background {
    background-color: #eff7ff;
    padding: 4rem 0px 4rem;
}

.texto__sub .producto {
    height: 250px;
    margin-bottom: 25px;
}

.item__sub__title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.info__sub .icons {
    height: 35px;
    width: auto;
    margin-right: 15px;
}

.info__sub.--icons {
    display: flex;
    align-items: center;
}

.texto__item {
    font-size: 17px;
    line-height: 135%;
    color: var(--negro);
}

/* Fin estilos nuevos */

.wraps {
    flex-direction: row;
}

.wraps.--gap40 {
    grid-gap: 40px;
}

.wraps2 {
    flex-direction: row-reverse;
}

.wraps,
.wraps2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.wraps div,
.wraps2 div {
    flex: 1;
}

.welcome__bis.--no-form .wraps.--no-form div, .welcome__bis.--no-form .wraps2.--no-form div {
    flex: none;
}

.btn__primario, .btn__primario2 {
    padding: 0.8rem 1.6rem;
    color: var(--blanco);
    font-family: var(--body-font);
    font-weight: var(--bold-weight);
    border: none;
    border-radius: 8px;
    font-size: var(--normal2-font-size);
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    display: inline-block;
}

.btn__primario {
    background-color: #5C9DEC;
}

.btn__primario2 {
    background-color: #dfedfd;
    color: #104B94;
}

.btn__primario2.--small {
    background-color: #5C9DEC;
    color: #fff;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.btn__primario2:hover {
    background-color: #B4D6FF;
}

.btn__primario2.--small:hover {
    background-color: #3e7cc7;
}

/*========== NAV BAR ==========*/

header {
    position: absolute;
    z-index: 10;
}

.nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.logo__header img {
    width: 120px;
    height: auto;
}

.info__header {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    font-size: var(--normal2-font-size);
    color: var(--blanco);
}

.texto__header {
    margin-right: 1rem;
}

.wa__header, .btn__header {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.4rem 1rem;
    color: var(--blanco);
    background-color: #00cb22;
    border-color: #00cb22;
    border-radius: 8px;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
        border-color 0.2s ease-in-out;
}

.btn__header {
    background-color: #104B94;
    border-color: #104B94;
}

.wa__header i, .btn__header i {
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.wa__header:hover,
.wa__footer:hover {
    background-color: #00bfa5;
    border-color: #00bfa5;
}

.btn__header:hover {
    background-color:#083163;
    border-color: #083163;
}

/*================= PRINCIPAL =================*/

.welcome,
.welcome__bis {
    position: relative;
    height: 850px;
    background-size: cover;
    background-position: top center;
}

/*
.welcome__bis::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
} */

/*
.welcome__bis.--opacity-light::after {
    opacity: 0.4;
} */

.welcome {
    padding: 8rem 0 4rem;
}

.welcome__bis {
    padding: 0rem 0 0;
}

.welcome__bis .waves {
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.welcome__bis .waves-dos {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 1000px;
}

.welcome__bis .waves-tres {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    max-width: 250px;
}

.welcome .container,
.welcome__bis .container__bis {
    position: relative;
}

.welcome .container,
.welcome__bis .container__bis.--no-form {
    height: 100%;
    align-items: center;
}

.welcome__bis .container__bis.--no-form .image__home {
    width: 50%;
    height: auto;
    padding-left: 100px;
    z-index: 1;
}

.welcome .container,
.welcome__bis .container__bis.--no-form .texto__main__bis {
    align-items: flex-start;
    max-width: 50%;
    padding: 0px;
    transform: translate(0px, 0px);
    padding-right: 40px;
}

.welcome .container,.welcome__bis .container__bis.--no-form .texto__main__bis .subtitle__bis,  
.welcome .container,.welcome__bis .container__bis.--no-form .texto__main__bis .title__bis{
    text-align: left;
}

.welcome__bis .container__bis.--no-form .texto__main__bis .subtitle__bis {
    margin-bottom: 45px;
}

.welcome__bis .container__bis .btn__primario {
    display: none;
}

/*===== TEXTO */
.texto__main,
.texto__main__bis {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 0 2.5rem 0 0;
    z-index: 1;
}

.texto__main__bis {
    transform: translate(0px, 35px);
}

.title {
    font-size: var(--biggest-font-size);
    font-family: var(--title-font);
    font-weight: var(--bold-weight);
    line-height: 130%;
    text-align: left;
    color: var(--blanco);
    margin-bottom: var(--mb-4);
}

.title__bis {
    font-size: var(--biggest-font-size);
    font-family: var(--title-font);
    font-weight: var(--bold-weight);
    line-height: 115%;
    text-align: left;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(180deg, #7BA0FF 0%, #438ce6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title__bis.--secondary {
    background: -webkit-linear-gradient(180deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title__bis strong {
    background: var(--azul);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle__bis {
    font-size: 1.2rem;
    font-family: var(--title-font);
    font-weight: 400;
    line-height: 140%;
    text-align: left;
    color: #fff;
}

/*===== FORM */
.form__mail {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 0;
}

.input__mail {
    position: relative;
    height: 48px;
    width: auto;
    margin-bottom: 0;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    color: var(--blanco);
    border: 1px solid #ffffff7a;
    border-radius: 999px;
    outline: none;
    padding: 0.6rem 1.7rem;
    margin-top: 0.1rem;
    background: none;
    z-index: 1;
}

.form__label {
    position: absolute;
    left: 1.5rem;
    top: 0.8rem;
    padding: 0px 0.25rem;
    color: #ffffff7a;
    font-size: var(--normal-font-size);
    transition: 0.2s;
}

.form__button {
    width: auto;
    padding: 0.6rem 1.4rem;
    background-color: var(--gris2);
    color: var(--gris1);
    font-family: var(--body-font);
    font-weight: var(--bold-weight);
    border: none;
    border-radius: 999px;
    font-size: var(--normal-font-size);
    cursor: auto;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: none;
}

.form__button__active {
    background-color: var(--blanco);
    color: var(--azul);
    cursor: pointer;
}

.form__button__active:hover {
    box-shadow: 0 0px 32px -4px #d4eaff;
}

/*Input focus*/
.form__input:focus + .form__label {
    top: -1.3rem;
    font-size: var(--small-font-size);
    color: var(--blanco);
}

/*Input focus hold*/
.form__input:not(:placeholder-shown).form__input:not(:focus) + .form__label {
    top: -1.3rem;
    font-size: var(--small-font-size);
    color: var(--blanco);
}

/*Input focus borde*/
.form__input:focus {
    border: 1px solid var(--blanco);
}

/*===== IMAGEN */

.img__main {
    text-align: right;
    max-height: 500px;
}

.img__main__bis {
    text-align: right;
}

.img__main__bis .modal__bis__btnclose {
    display: none;
}

.img__main img {
    width: 100%;
    max-width: 450px;
}


/*================= SECUNDARIA =================*/

.sub {
    padding: 5rem 0px 5rem;
}

.sub.--mt-mb-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sub.--mb-small {
    padding-bottom: 1.5rem;
}

.sub.--mt-small {
    padding-top: 2rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    grid-gap: 25px;
    align-items: center;
    justify-content: center;
}

.logos-grid__image {
    width: auto;
    height: 80px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.16);
    padding: 10px;
    border-radius: 10px;
}   

.texto__sub {
    margin-bottom: 0;
}

.titulo__sub,
.info__sub {
    color: var(--negro);
    margin-bottom: var(--mb-4);
    font-family: var(--title-font);
}

.titulo__sub h1, .titulo__sub h2 {
    margin-bottom: 15px;
    color: #00bfb0;
    line-height: 1.25;
}

.--c-primary {
    color: #0265de !important;
}

.--c-secondary {
    color: #7ba0ff !important;
}

.--c-grey {
    color: #707070;
}

.titulo__sub.--center {
    text-align: center;
}

.titulo__sub.--center.--w70 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--mb-4-5);
}

.--center.--w70 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.titulo__sub p span {
    font-weight: 600;
    text-decoration: underline;
    color: var(--azul);
    cursor: pointer;
}

.info__sub {
    line-height: 145%;
}

.item__sub {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: var(--mb-1-5);
}

.item__sub p {
    font-family: var(--title-font);
    font-size: 1rem;
    color: var(--negro);
    line-height: 1.35;
}

.item__sub p span {
    display: inline-block;
    background-color: #0265de;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    margin-left: 8px;
    vertical-align: middle;
}

.circulo1 {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #98C6FF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 1rem;
    flex: none !important;
}

.circulo1 img {
    width: 0.6rem !important;
    height: auto !important;
}

.circulo1 span {
    color: var(--azul);
    font-weight: var(--bold-weight);
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
}

.circulo1.--big {
    background-color: #5C9DEC;
    width: 3rem;
    height: 3rem;
}

.circulo1.--big.--color-1 {
    background-color: #5C9DEC;
}

.circulo1.--big.--color-2 {
    background-color: #3483e2;
}

.circulo1.--big.--color-3 {
    background-color: #0265de;
}

.circulo1.--big img {
    width: 1.3rem !important;
    height: auto !important;
}

.circulo1.--white {
    background-color: #fff;
}

.cta__sub {
    font-weight: var(--bold-weight);
    color: #0265de;
    cursor: pointer;
    font-size: 17px;
    line-height: 1.4;
}

.cta__sub i {
    margin-left: 0.5rem;
    padding-top: 0.2rem;
    vertical-align: middle;
    transition: margin 0.2s ease-in-out;
}

.cta__sub:hover i {
    margin-left: 0.8rem;
}

.wraps .img__sub {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.wraps2 .img__sub {
    position: relative;
   /* padding-right: 5rem; */
    display: -webkit-flex;
    display: flex;
   /* -webkit-justify-content: center;
    justify-content: center; */
}

.wraps .img__sub img,
.wraps2 .img__sub img {
    width: auto;
}

.align1 {
    margin-top: var(--mb-4);
}

/*================= ESPECIAL =================*/

.especial1 {
    position: relative;
    padding: 4.5rem 0 4.5rem;
    background-color: var(--azul);
    color: var(--blanco);
    text-align: center;
}

.especial1 .container {
    overflow-x: hidden;
}

.img__especial {
    position: absolute;
    top: -170px;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-bottom: var(--mb-1);
    overflow-x: hidden;
}

.img__especial img {
    width: 100%;
    max-width: 400px;
    transform: translateX(12%);
}

.titulo__especial {
    margin-bottom: var(--mb-1);
}

.subtitulo__especial {
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-3);
    line-height: 145%;
}

.info__especial {
    line-height: 115%;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.item__especial {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0;
    padding: 0 1rem;
}


.circulo2 {
    position: relative;
    min-width: 3.5rem;
    min-height: 3.5rem;
    background-color: var(--blanco);
    border-radius: 999px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: var(--mb-1);
}

.circulo2 i {
    font-size: var(--h1-font-size);
    color: var(--azul);
    font-weight: var(--normal-weight);
}

.texto__item__especial {
    font-size: var(--normal2-font-size);
}

.texto__item__especial h3 {
    margin-bottom: var(--mb-0-5);
}

/*================= ESPECIAL 2 =================*/

.especial2 {
    position: relative;
    padding: 1rem 0 0;
}

.especial2.--no-form.--form {
    position: relative;
    padding: 5rem 0rem 4.5rem 0rem;
}

.especial2.--no-form {
    position: relative;
    padding: 1rem 0rem 4.5rem 0rem;
}

.especial2 .container {
    padding: 3rem 3rem 2rem 3rem;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
    overflow: visible;
    position: relative;
}

.texto__especial2 {
    width: 100%;
    z-index: 1;
}

.texto__especial2.--center {
    text-align: center;
}

.texto__especial2 .info__sub {
    margin-bottom: 0px;
}

.titulo__especial2 {
    color: var(--azul3);
    margin-bottom: var(--mb-2-5);
    width: 50%;
}

.item__wrapper {
    height: 300px;
    padding: 0 .8rem;
}

.item__wrapper2 {
    height: 350px;
    padding: 0;
}

.item__wrapper .click__item {
    height: 100%;
}

.item__especial2 {
    height: 100%;
    border-radius: 15px;
    padding: 1.5rem 1.2rem;
    background-color: #c1daf7;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: end;
    justify-content: end;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
}

.item__especial2 h3 {
    color: var(--blanco);
    z-index: 2;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 70%);
    margin-bottom: 5px;
}

.item__especial2 p {
    color: var(--blanco);
    z-index: 2;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 70%);
    font-size: 14px;
    line-height: 1.4; 
}

.item__especial3 {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
}

.gradient__item2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 60%), rgb(0 0 0 / 0%));
}

.slick-list {
    border-radius: 0px;
}

.slick-dots {
    bottom: -35px !important;
}

.slick-dots li button:before {
    color: var(--azul) !important;
    transition: .2s ease-in-out;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    font-size: 10px !important;
}

.slick-arrow {
    position: absolute;
    top: -65px;
    font-size: 1.8rem;
    background-color: transparent;
    border-radius: 999px;
    padding: .5rem;
    cursor: pointer;
    color: var(--azul3);
    opacity: .6;
    transition: .2s ease-in-out;
}

.slick-arrow:hover {
    opacity: 1;
    background-color: #c9ddf3 !important;
}

.prev__item2 {
    right: 65px;
}

.next__item2 {
    right: 10px;
}

.fondo__especial2 {
    position: absolute;
    background: var(--azul2);
    width: 100%;
    height: calc(100% - 120px);
    border-radius: 15px;
    right: 0;
    left: 0;
    top: 0;
    z-index: 0;
}

/*================= CLIENTES =================*/

.pre__footer {
    padding: 5rem 0 5rem;
    text-align: center;
    overflow-x: hidden;
    border-top: 1px solid #d6d6d6;
}

.titulo__body {
    margin-bottom: var(--mb-2);
    color: var(--negro);
}

.slide__clientes__cont {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    height: auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.slide__clientes__cont .owl-item {
    position: relative;
    height: auto;
    min-height: 100px !important;
    opacity: 0.6;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.slide__clientes__cont img {
    height: 100%;
    max-height: 45px;
    width: auto !important;
}

.slide__clientes__cont .owl-nav {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
}

.slide__clientes__cont .owl-nav .owl-next,
.slide__clientes__cont .owl-nav .owl-prev {
    padding: 10px;
    background-color: transparent;
}

.slide__clientes__cont .owl-nav .owl-prev {
    margin-left: -1rem;
}

.slide__clientes__cont .owl-nav .owl-next {
    margin-right: -1rem;
}

/*================= FOOTER =================*/

.footer {
    padding: 3rem 0 6rem;
    text-align: center;
    background-color: #ecf5ff;
}

.footer.--form-footer {
    background-color: transparent;
    padding: 5rem 0 6rem;
}

.logo__footer {
    margin-bottom: var(--mb-1);
    color: var(--negro);
}

.logo__footer img {
    width: 100px;
    height: auto;
    margin-bottom: 0;
}

.logo__footer h3 {
    margin-bottom: var(--mb-2);
}

.bajada__logo {
    font-size: var(--normal2-font-size);
    max-width: 285px;
    margin: 0 auto;
}

.contacto__footer {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
}

.contacto__footer .text {
    font-size: 15px;
    line-height: 1.35;
}

.contacto__footer .text.mb {
    margin-bottom: 25px;
}


.wa__footer,
.in__footer {
    font-size: var(--normal2-font-size);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
        border-color 0.2s ease-in-out;
}

.wa__footer {
    color: #00bfa5;
    border: solid 1px #00bfa5;
    margin-bottom: 0.5rem;
}

.in__footer {
    color: #0077b5;
    border: solid 1px #0077b5;
}

.wa__footer i,
.in__footer i {
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.in__footer:hover {
    color: var(--blanco);
    background-color: #0077b5;
}


/*========== EXIT INTENT MODAL ==========*/

.modal__exit__container {
    position: fixed;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-top: 10vh;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
    overflow-y: scroll;
}

.modal__exit {
    position: relative;
    width: 95%;
    max-width: 450px;
    padding: 4rem 2.5rem 2.5rem;
    margin-bottom: 10vh;
    text-align: center;
    background-color: var(--azul);
    border-radius: 15px;
    box-shadow: 0 25px 30px -5px rgb(0 0 0 / 25%);
    transform: translateY(30px);
    transition: transform 0.2s ease-in-out;
}

.modal__exit .close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.25rem;
    font-size: 1.5rem;
    color: var(--azul3);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.modal__exit .close:hover {
    background-color: var(--azul4);
}

.modal__exit img {
    position: absolute;
    top: -35px;
    right: 0;
    left: 7px;
    margin: 0 auto;
}

.modal__exit h1 {
    color: var(--blanco);
    margin-bottom: var(--mb-1);
}

.modal__exit p {
    color: var(--blanco);
    line-height: 135%;
}

.modal__exit button {
    margin-top: var(--mb-1-5);
}

.modal__exit__bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}


/*========== FULL FORM ==========*/

.modal__container {
    position: fixed;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-top: 10vh;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
    overflow-y: scroll;
}

.modal__active {
    visibility: visible;
    opacity: 1;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 2rem 2.5rem 3rem;
    margin-bottom: 10vh;
    text-align: center;
    background-color: var(--blanco);
    border-radius: 15px;
    transform: translateY(30px);
    transition: transform 0.2s ease-in-out;
}

.modal__move {
    transform: translateY(0);
}

.modal__bis {
    position: relative;
    width: 100%;
    transform: translateY(110px);
    max-width: 450px;
    padding: 2rem 1.6rem 2.5rem 1.6rem;
    margin-left: auto;
    text-align: center;
    background-color: var(--blanco);
    border-radius: 15px;
    box-shadow: 0 20px 25px -10px rgb(0 0 0 / 15%);
    transition: box-shadow 0.2s ease-in-out;
    transition-delay: 0.5s;
    z-index: 2;
}

.modal__glow {
    box-shadow: 0 20px 25px -10px rgb(0 0 0 / 15%),
        0 0 100px rgb(255 255 255 / 60%);
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.25rem;
    font-size: 1.5rem;
    color: var(--gris1);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.modal .close:hover {
    background-color: var(--gris3);
}

.modal h2,
.modal__bis h2 {
    color: #5C9DEC;
    font-size: 22px;
}

.modal h2,
.modal__bis h2.--big {
    font-size: 28px;
}

.modal p,
.modal__bis p {
    margin-bottom: var(--mb-1-5);
    font-size: 17px;
    font-weight: 600;
    color: #434040;
}

.modal__bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal form,
.modal__bis form {
    width: 100%;
}

.modal form .inputMaterial .selectMotivo,
.modal__bis form .inputMaterial .selectMotivo {
    color: #a0a0a0;
}

.modal form .inputMaterial .selectMotivo:focus,
.modal form .inputMaterial .selectMotivo:valid,
.modal__bis form .inputMaterial .selectMotivo:focus,
.modal__bis form .inputMaterial .selectMotivo:valid {
    color: #606060;
}

.modal form .link,
.modal__bis form .link {
    width: 100%;

    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 5px;
}

.modal form .link button,
.modal__bis form .link button {
    min-width: 120px;
}

/* Banner corpo */

.banner-corpo__item .--desktop {
    display: block;
}

.banner-corpo__item .--mobile {
    display: none;
}

.banner-corpo {
    background-color: #ECF5FF;
}

.banner-corpo.--white {
    background-color: #FFFFFF;
    border-top: 1px solid #d6d6d6;
}

.banner-corpo__holder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 20px;
    display: flex;
    align-items: center;
    grid-gap: 80px;
}

.banner-corpo .banner-corpo__item:first-child {
    width: 50%;
}

.banner-corpo .banner-corpo__item:last-child {
    width: 50%;
}

.banner-corpo__item img {
    width: 85%;
    height: auto;
    margin-left: auto;
    display: block;
}

.banner-corpo.--white.--hidden {
    overflow: hidden;
    height: 40rem;
    background-color: #F2F8FF;
    border: none;
}

.banner-corpo.--white.--hidden .banner-corpo__holder {
    align-items: center;
    height: 100%;
    position: relative;
}

.banner-corpo.--white.--hidden .banner-corpo__holder .titulo__sub {
    margin-bottom: 0px;
    z-index: 1;
}

.banner-corpo.--white.--hidden .banner-corpo__item img {
    width: 250px;
    height: auto;
    margin: auto;
}

.banner-corpo.--white.--hidden .banner-corpo__item:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-corpo.--full .titulo__sub {
    margin-bottom: 10px;
}

.banner-corpo.--full .banner-corpo__holder {
    padding: 0px;
    max-width: 100%;
}

.banner-corpo.--full .banner-corpo__item img {
    height: 100%;
    width: auto;
    margin-left: 0px;
}

.banner-corpo.--full .banner-corpo__item:first-child {
    width: 55%;
}

.banner-corpo.--full .banner-corpo__item:last-child {
    width: 45%;
}

.banner-corpo.--full .cont-gral .items {
    margin: 35px 0px 55px 0;
}

.prestadores__sliderauto__image {
    height: 135px;
    width: auto;
}

.show-qv {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.show-qv .qvvalijas-cont,
.show-qv .qvexp-cont,
.show-qv .mp-cont,
.show-qv .ia-cont {
    margin-bottom: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hide-qv {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.modal-metPago {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 200;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-metPago .mp-cont {
    z-index: 201;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-metPago .mp-cortina {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 200;
    background-color: rgba(0,0,0,.8);
}

.modal-metPago .mp-cont .mp-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    overflow: hidden;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 15px -4px rgba(0,0,0,.15);
    box-shadow: 0 2px 15px -4px rgba(0,0,0,.15);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 480px!important;
    text-align: center;
    min-height: 450px;
    padding: 55px 50px 60px!important;
}

.modal-sorteo .exit {
    top: 0;
}

.exit {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.modal-sorteo .mp-cont .mp-box .exit img {
    width: 18px;
    height: auto;
}

.modal-sorteo__inner.--active {
    opacity: 1;
    max-height: 1000px;
    overflow: visible;
    visibility: visible;
}

.modal-sorteo__inner {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.modal-sorteo.--corp .modal-sorteo__inner h2 {
    color: #5C9DEC;
    display: inline-flex;
    align-items: center;
}

.modal-sorteo.--corp .modal-sorteo__inner h2 img {
    height: 24px;
    margin-right: 12px;
}

.modal-sorteo.--corp .modal-sorteo__inner .modal-sorteo__text {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0px;
    color: #434040;
    font-size: 17px;
    line-height: 1.35;
}

.modal-sorteo.--corp .modal-sorteo__inner .productoDig {
    width: 85%;
    margin: 20px 0px;
}

.footer .social {
    display: flex;
    grid-gap: 10px;
    margin: 0px 0 25px 0;
}

.footer .social img {
    width: 28px;
    height: auto;
    filter: invert(0.5);
}

.footer .text-legal {
    font-size: 13px;
    text-align: center;
    color: #606060;
}


.corpo-banneriso .corpo-regalos {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
}

.corpo-banneriso .corpo-regalos .pasos {
    margin-top: -40px;
}

.corpo-banneriso .corpo-regalos h4 {
    font-size: 38px;
    color: white;
    padding-bottom: 0px;
    padding-top: 0px;
    width: 100%;
    text-align: center;
    text-shadow: 0px 0px 9px rgba(0,0,0,0.75);
    line-height: 1.2;
}

.sub.--form-footer {
    padding-top: 0px;
    padding-bottom: 0px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0) 50%, #ecf5ff 50%);
    overflow: visible;
}


.sub.--form-footer .modal__bis {
    max-width: 800px;
    margin: 0 auto;
    transform: translate(0px);
    margin-top: -50px;
    z-index: 1;
}

.sub.--form-footer .modal__bis .titulo__sub h1 {
    margin-bottom: 12px;
}

.sub.--form-footer .modal__bis .titulo__sub.--center.--w70 {
    margin-bottom: var(--mb-3);
}

.btn-viewmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    transition: all .4s;
    line-height: 1;
    cursor: pointer;
    font-weight: 500;
    background-color: #104B94;
    border: 3px solid #fff;
}

.btn-viewmore img {
    width: 32px;
    height: auto;
}

.welcome__bis .btn-viewmore {
    position: absolute;
    bottom: 0px;
    transform: translate(-50%, 50%);
    left: 50%;
    z-index: 3;
}

.experiences-corp {
    display: flex;
    align-items: center;
    flex: none !important;
    justify-content: center;
    gap: 30px;
}

.experiences-corp__item {
    flex: none !important;
    text-align: center;
    box-shadow: 0px 8px 9px -2px rgba(0, 0, 0, 0.18);
    border: 1px solid #e6e6e6;
    background-color: #fff;
    border-radius: .625rem;
    padding: 15px 15px 20px 15px;
    max-width: 250px;
}


.experiences-corp .experiences-corp__item img {
    width: 100%;
    height: auto;
    border-radius: .625rem;
    margin-bottom: 6px;
}

.experiences-corp .experiences-corp__item h3 {
    margin-bottom: 3px;
}

.experiences-corp .experiences-corp__item p {
    font-size: 15px;
    color: #585858;
    line-height: 1.35;
}

.experiences-corp.--buttons {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}


.experiences-corp.--buttons .experiences-corp__item h3 {
    margin-bottom: 0px;
    font-size: 18px;
}

.experiences-corp.--buttons .experiences-corp__item h3 br {
    display: contents;
}

.experiences-corp.--buttons .experiences-corp__item {
    padding: 15px 15px 15px 15px;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    position: relative;
    border: 0px;
    box-shadow: none;
    display: flex;
    align-items: center;
    background-color: #ECF5FF;
    border: 1px solid #d1e6ff;
} 

.experiences-corp.--buttons .experiences-corp__item.--active {
    background-color: #d1e6ff;
}

.experiences-corp.--buttons .experiences-corp__item.--active h3 {
   color:#0265de;
}

.experiences-corp.--buttons .experiences-corp__item.--active:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(0px, -50%);
    margin-left: auto;
    border: 1.1rem solid transparent;
    border-left-color: #d1e6ff;
    border-top-color: transparent;
}

.experiences-corp.--buttons .experiences-corp__item img {
    height: 90px;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-right: 15px;
    width: auto;
}

.experiences-corp-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: #ECF5FF;
    padding: 25px 25px 25px 25px;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
}

.experiences-corp-toggle.--color-valcole {
    background-color: #fff9e6;
}

.experiences-corp-toggle.--color-valcole .experiences-corp.--buttons .experiences-corp__item.--active {
    background-color: #ffeaa9;
}

.experiences-corp-toggle.--color-valcole .experiences-corp.--buttons .experiences-corp__item.--active:after {
    border-left-color: #ffeaa9;
}

.experiences-corp-toggle.--color-valcole .experiences-corp.--buttons .experiences-corp__item.--active h3 {
    color: #7a5c00;
}

.experiences-corp-toggle.--color-valcole .experiences-corp.--buttons .experiences-corp__item {
    background-color: #fff9e6;
    border-color: #ffe493;
}

.experiences-corp-toggle__title {
    font-size: 20px;
    margin-bottom: 25px;
}

.experiencies-corp-toggle__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
}

.experiences-corp-toggle__inner {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-left: 30px;
}

.experiencies-corp-toggle__item h4 {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
}

.experiencies-corp-toggle__item img {
    width: 100%;
    border-radius: 8px;
    margin: 0 auto 15px auto;
    max-width: 280px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.09);
}

.categories-fanbag {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 500px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 45px;
}

.categories-fanbag__item {
    padding: .55rem 1.3rem;
    font-size: 1.05rem;
    border-radius: 62.4375rem;
    font-weight: 600;
}

.categories-fanbag__item.--gastronomia {
    color: #ffefef;
    background-color: #FC3535;
}

.categories-fanbag__item.--aventura {
    color: #fffaee;
    background-color: #ebac00;
}

.categories-fanbag__item.--bienestar {
    color: #fff0f8;
    background-color: #F46CBA;
}

.categories-fanbag__item.--escapadas {
    color: #ebffec;
    background-color: #18c71e;
}

.categories-fanbag__item.--variedades {
    color: #f4f0ff;
    background-color: #7e53ff;
}

  .prestadores__highlights {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.875rem;
  }

  .prestadores__highlights__logo {
    width: 14.375rem;
    height: auto;
  }
  
  .prestadores__highlights__inner:first-child {
    margin: 0 auto;
  }

  .prestadores__highlights__inner.--grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0.9375rem;
    grid-row-gap: 0.9375rem;
  }

  .prestadores__highlights__item {
    background-color: #fff;
    box-shadow:  0px 8px 9px -2px rgba(0, 0, 0, 0.12);
    border-radius: 0.625rem;
    border: 0.0625rem solid #EDEDED;
    padding: 0.9375rem 0.75rem;
    text-align: left;
  }

  .prestadores__highlights__item.--one {
    grid-column: span 4 / span 4;
  }

  .prestadores__highlights__item.--two {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
  }

  .prestadores__highlights__item.--three {
    grid-column: span 3 / span 3;
    grid-row-start: 2;
  }

  .prestadores__highlights__item.--four {
    grid-column: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 2;
  }

  .prestadores__highlights__item.--five {
    grid-column: span 6 / span 6;
    grid-row-start: 3;
  }

  .prestadores__highlights__number {
    font-size: 2.15rem;
    line-height: 1;
    color: #5C9DEC;
    font-weight: 700;
  }

  .prestadores__highlights__title {
    font-size: 1.3125rem;
    line-height: 1.1;
    color: #434040;
    font-weight: 500;
  }

  .prestadores__highlights__text {
    font-size: 0.9375rem;
    line-height: 1.2;
    color: #808080;
  }

  .prestadores__highlights__text small {
    font-size: 0.8125rem;
    width: 100%;
  }

  .prestadores__sliderauto ul {
    list-style: none;
  }

  .prestadores__sliderauto img {
    border-radius: 0.625rem;
  }

  .prestadores__sliderauto.--horizontal {
    position: absolute;
    z-index: 0;
    bottom: -1.5625rem;
    display: flex;
    flex-direction: row;
    gap: 0.9375rem;
    width: 300%;
    opacity: 0.45;
  }

  .prestadores__sliderauto.--vertical {
    display: none;
  }

    /* Estilos bloque Como funciona */
    .corpo-banneriso {
        position: relative;
        margin-top: 255px;
        background: url('../../../fanbag/img/corporativo/banners/experiencias1.jpg') top center;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: visible;
        height: 450px;
        background-position: center;
    }

    .corpo-banneriso.--footer {
        background: linear-gradient(135deg, #7ba0ff 0%, #7ba0ff 20%, #0265de 100%);
        height: 320px;
        margin-top: 0px;
    }

    .sec-gral .corpo-regalos {
        margin-bottom: 50px;
        padding-top: 50px;
        padding-bottom: 50px;
        flex-direction: column;
        margin: 0 auto;
        min-height: 300px;
        max-width: 1266px;
    }

    .regaloamedida-home .corpo-regalos .img-tipovalijas {
        width: auto;
        height: auto;
        margin-top: -270px;
    }

    .regaloamedida-home .corpo-regalos .img-tipovalijas img {
        width: 650px;
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .regaloamedida-home .corpo-regalos {
        display: flex;
        flex-direction: column;
        width: 100%;
    }


    .regaloamedida-home .corpo-regalos .pasos {
        display: flex;
        flex-direction: column;
        padding-top: 0px;
        width: 100%;
        align-items: center;
        margin-bottom: 20px;
    }

    .regaloamedida-home .pasos .instrucciones {
            display: flex;
            flex-direction: row;
            width: 100%;
    }


    .regaloamedida-home .pasos .instrucciones .inst-regalar {
            display: flex;
            flex-direction: row;
            padding-bottom: 25px;
            margin: 0 auto;
            align-items: center;
    }

    .regaloamedida-home .pasos .instrucciones .inst-regalar:last-child {
        padding-bottom: 0px;
    }


    .regaloamedida-home .corpo-regalos h4 {
            font-size: 32px;
            color: white;
            padding-bottom: 40px;
            padding-top: 0px;
            width: 100%;
            text-align: center;
    }


    .regaloamedida-home .corpo-regalos .inst-regalar h5 {
            font-size: 45px;
            color: white;
            padding-right: 15px;
            padding-top: 0px;
    }

    .regaloamedida-home .corpo-regalos .inst-regalar p {
            font-size: 18px;
            font-weight: 400;
            line-height: 22px;
            color: white;
            text-align: left;
            align-items: center;
    }


    .prestadores__miscelaneas {
        position: absolute;
        z-index: 0;
        opacity: 0.4;
    }

    .prestadores__miscelaneas.--left {
        left: 0rem;
        top: -4rem;
        width: 135px;
    }

    .prestadores__miscelaneas.--right {
        right: 0;
        bottom: -15rem;
        width: 160px;
    }

    .prestadores__miscelaneas.--right-dos {
        right: 0;
        bottom: 0rem;
        width: 160px;
        z-index: 1;
    }

    .section-one__image {
        max-width: 380px;
        width: 100%;
        height: auto;
    }

    .section-two__image {
        max-width: 410px;
        width: 100%;
        height: auto;
    }

    .grid-slider {
        display: flex;
        gap: 50px;
        z-index: 2;
        position: relative;
    }

    .grid-slider__item:first-child {
        width: 50%;
    }

    .grid-slider__item:last-child {
        width: 50%;
    }

    .grid-slider__item__logo {
        height: 45px;
        width: auto;
        margin: 0 auto 25px auto;
        display: block;
    }

/*============      MEDIA QUERIES      ============*/

@media (min-width: 768px) {
    .prestadores__highlights {
        grid-template-columns: 23.125rem calc(100% - 425px);
        grid-gap: 3.4375rem;
        align-items: center;
      }
      .prestadores__highlights__logo {
        width: 21.875rem;
      }
      .prestadores__highlights__inner:first-child {
        margin: auto;
      }
      .prestadores__highlights__inner.--grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 1.875rem;
        grid-row-gap: 1.875rem;
      }
      .prestadores__highlights__item {
        padding: 1.5625rem 1.06rem;
      }
      .prestadores__highlights__item.--one {
        grid-column: span 3 / span 3;
      }
      .prestadores__highlights__item.--two {
        grid-column: span 3 / span 3;
      }
      .prestadores__highlights__item.--three {
        grid-column: span 2 / span 2;
        grid-row-start: 2;
      }
      .prestadores__highlights__item.--four {
        grid-column: span 2 / span 2;
        grid-row-start: 2;
      }
      .prestadores__highlights__item.--five {
        grid-column: span 2 / span 2;
        grid-row-start: 2;
      }
      .prestadores__highlights__number {
        font-size: 3.25rem;
        line-height: 1.1;
      }
      .prestadores__highlights__title {
        font-size: 2.1875rem;
      }
      .prestadores__highlights__text {
        font-size: 1.02rem;
        line-height: 1.3;
      }
      .prestadores__highlights__text small {
        font-size: 0.9rem;
      }

      .banner-corpo.--full .banner-corpo__item:last-child {
        max-width: 480px;
        padding: 0 20px 0 0;
       }

      .prestadores__sliderauto.--vertical {
        display: flex;
        justify-content: end;
        align-items: flex-start;
        grid-column-gap: 1.25rem;
        width: 50%;
      }

      .prestadores__sliderauto.--horizontal {
        display: none;
      }
}


@media screen and (max-width: 1400px) {
    .banner-corpo.--full .banner-corpo__item:first-child {
        width: 60%;
    }
    
    .banner-corpo.--full .banner-corpo__item:last-child {
        width: 40%;
    }
}

@media screen and (max-width: 1260px) {
    .experiences-corp-toggle {
        width: 100%;
    }

    .experiences-corp.--buttons .experiences-corp__item img {
        height: 70px;
    }

    .experiences-corp.--buttons .experiences-corp__item h3 {
        font-size: 17px;
    }

    .experiencies-corp-toggle__item img {
        max-width: 250px;
    }

    .experiencies-corp-toggle__item {
        max-width: 250px;
    }

    .experiencies-corp-toggle__item h4 {
        font-size: 15px;
    }

    .welcome__bis .waves-dos {
        max-width: 850px;
    }

    .welcome__bis .waves-tres {
        max-width: 200px;
    }

     .logo-campania {
        height: 190px;
    }
}




@media screen and (max-width: 1024px) {
    /*================= SECUNDARIA =================*/

    .wraps .img__sub {
        padding-left: 2rem;
    }

    .wraps2 .img__sub {
        padding-right: 2rem;
    }

    /*================= ESPECIAL =================*/

    .especial1 {
        padding: 3.5rem 0 3.5rem;
    }

    .info__especial {
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
    }

    .item__especial {
        margin-bottom: var(--mb-3);
        max-width: 400px;
    }

    .item__especial:last-child {
        margin-bottom: 0px;
    }

    .modal-metPago .mp-cont .mp-box {
        width: auto;
        max-width: none;
    }

    .modal-metPago .mp-cont {
        width: calc(100% - 40px);
    }

    .corpo-banneriso {
        height: 280px;
    }

    .corpo-banneriso.--footer {
        height: 240px;
    }

    .corpo-banneriso .corpo-regalos h4 {
        font-size: 32px;
    }

    .welcome,
    .welcome__bis.--no-form {
        height: 650px;
    }

    .logos-grid {
        grid-gap: 30px;
    }
    
    .logos-grid__image {
        height: 70px;
    } 
 
    .title__bis {
        font-size: 2.3rem;
    }

    .subtitle__bis {
        font-size: 1.3rem;
    }

    .welcome__bis .waves-dos {
        max-width: 650px;
    }

    .welcome__bis .waves-tres {
        max-width: 150px;
    }
}

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

    .text-featured {
        font-size: 19px;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .container__bis {
        padding-left: 15px;
        padding-right: 15px;
    }

    .wraps {
        flex-direction: column;
    }

    .wraps.--gap40 {
        grid-gap: 0px;
    }

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

    .info__header {
        display: none;
    }

    /*================= PRINCIPAL =================*/
    .welcome,
    .welcome__bis {
        padding: 0;
        height: auto;
    }

    .welcome,
    .welcome__bis.--no-form {
        height: 550px;
        margin-bottom: var(--mb-0-75);
    }

    .welcome,
    .welcome__bis.--no-form.--form {
        height: 550px;
        margin-bottom: var(--mb-0-75);
    }

    .welcome__bis .container__bis.--no-form .texto__main__bis .title__bis {
        margin-top: 0px;
        margin-bottom: 12px;
    }

    .title__bis {
        margin: 0px 0 10px 0; 
    }

    .welcome .container,
    .welcome__bis.--no-form .container__bis {
        top: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .welcome .container,
    .welcome__bis .container__bis {
        flex-direction: row;
    }

    .welcome .container, .welcome__bis .container__bis.--no-form .texto__main__bis {
        max-width: 60%;
    }

    .welcome__bis .container__bis.--no-form .image__home {
        width: 40%;
        padding-left: 5px;
    }

    .welcome__bis .waves-dos {
        max-width: 320px;
    }

    .welcome__bis .waves-tres {
        max-width: 120px;
    }

    .texto__main {
        -webkit-align-items: center;
        align-items: center;
        padding: 0;
    }

    .texto__main__bis {
        -webkit-align-items: center;
        align-items: center;
        padding: 0rem;
        transform: translate(0px, 0px);
    }

    .title,
    .title__bis {
        font-size: 1.85rem;
        text-align: center;
    }

    /*===== FORM */
    .form__mail {
        flex-direction: column;
        margin-bottom: var(--mb-3);
        max-width: 400px;
        width: 100%;
    }

    .input__mail {
        width: 100%;
        margin-bottom: var(--mb-0-75);
    }

    .form__input {
        position: relative;
        width: 100%;
    }

    .form__button {
        width: 100%;
    }

    /*===== IMAGEN */
    .img__main {
        text-align: center;
    }

    .img__main img {
        width: 90%;
        max-width: 350px;
        transform: translateX(-3%);
    }

    /*================= SECUNDARIA =================*/

    .sub {
        padding: 3.5rem 0;
    }


    .wraps,
    .wraps2 {
        flex-direction: column;
    }

    .wraps .img__sub,
    .wraps2 .img__sub {
        padding: 0 !important;
    }

    .wraps .img__sub img,
    .wraps2 .img__sub img {
        width: 100%;
    }

    .texto__sub {
        margin-bottom: var(--mb-3);
        max-width: 500px;
    }

    .container__row .texto__sub:last-child {
        margin-bottom: 0px;
    }

    .container__row .texto__sub:last-child .item__sub {
        margin-bottom: 0px;
    }

    .align1 {
        margin-top: 0;
        transform: translateX(-6%);
    }



    /*================= ESPECIAL 2 =================*/

    .especial2 .container {
        width: 100%;
        padding: 2rem 1.5rem 0rem 1.5rem;
    }

    .titulo__especial2 {
        width: 100%;
    }

    .titulo__especial2 h1 {
        font-size: 21px;
    }

    .titulo__sub h1, .titulo__sub h2 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .info__sub h1, .info__sub h2 {
        font-size: 23px;
    }

    .titulo__especial h1 {
        font-size: 26px;  
    }

    .titulo__body h1 {
        font-size: 26px;  
    }

    /*========== FULL FORM ==========*/

    .modal {
        width: 95%;
        padding: 2rem 1.8rem 3rem;
    }

    .modal__bis {
        width: 95%;
        padding: 2rem 1rem 2rem 1rem;
        transform: translateY(0);
        margin: 50px auto 0 auto;
    }

    .info__sub .icons {
        height: 30px;
        margin-right: 12px;
    }

    .info__sub.--icons {
        align-items: flex-start;
    }

    .titulo__sub, .info__sub {
        font-size: 16.5px;
    }

    .especial2 {
        padding: 0rem 0 0;
    }

    .sub.--background {
        padding: 3rem 0px 3rem;
    }

    .container__row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0px;
        width: 100%;
    }

    .texto__item {
        font-size: 16px; 
    }

    .pre__footer {
        padding: 3rem 0 3rem;
    }

    .texto__sub .producto {
        height: 170px;
        margin-bottom: 8px;
    }

    .container__row .circulo1 {
        width: 2.8rem;
        max-width: 2.8rem;
        height: 2.8rem;
    }

    .container__row .circulo1 img {
        width: 20px;
    }

    .banner-corpo__holder {
        flex-direction: column;
    }

    .banner-corpo .banner-corpo__item:first-child {
        width: 100%;
    }

    .banner-corpo .banner-corpo__item:last-child {
        width: 100%;
    }

    .banner-corpo.--full .banner-corpo__item:first-child {
        width: 100%;
    }

    .banner-corpo.--full .banner-corpo__item:last-child {
        width: 100%;
    }

    .banner-corpo.--full .banner-corpo__holder {
        padding: 45px 20px;
    }

    .banner-corpo__item img, .banner-corpo.--full .banner-corpo__item img {
        width: 70%;
        margin-left: auto;
        margin: 0 auto;
    }

    .banner-corpo__item .--desktop {
        display: none;
    }

    .banner-corpo__item .--mobile {
        display: block;
    }

    .circulo1 {
        width: 2.2rem;
        height: 2.2rem;
    }

    .circulo1 img {
        width: 0.5rem !important;
    }

    .circulo1.--big {
        width: 2.6rem;
        height: 2.6rem;
    }

    .circulo1.--big img {
        width: 1rem !important;
    }

    .texto__especial2 .info__sub {
        margin-top: 12px;
    }

    .experiences-corp {
        flex-direction: column;
        gap: 25px;
    }

    .experiences-corp__item {
        padding: 12px 12px 15px 12px;
    }

    .experiences-corp .experiences-corp__item h3 {
        font-size: 17px;
    }
    
    .experiences-corp .experiences-corp__item p {
        font-size: 14px;
    }

    .experiences-corp.--buttons .experiences-corp__item {
        flex-direction: column;
    }

    .experiences-corp.--buttons {
        flex-direction: row;
        width: 100%;
    }

    .experiences-corp.--buttons .experiences-corp__item {
        padding: 12px 12px 12px 12px;
        max-width: 100%;
        width: 50%;
    }

    .experiences-corp.--buttons .experiences-corp__item.--active:after {
        top: 100%;
        left: 50%;
        margin-left: auto;
        border: 1.1rem solid transparent;
        border-top-color: #d1e6ff;
        transform: translate(-50%, 0px);
    }


    .experiences-corp.--buttons .experiences-corp__item img {
        height: 60px;
        margin-right: 0px;
        margin-bottom: 9px;
    }

    .experiences-corp.--buttons .experiences-corp__item h3 {
        font-size: 15px;
        line-height: 1.3;
    }

    .experiences-corp.--buttons .experiences-corp__item h3 br {
        display: block;
    }

    .experiences-corp-toggle {
        flex-direction: column;
        align-items: center;
        padding: 15px 18px 18px 18px;
    }

    .experiences-corp-toggle__inner {
        flex-direction: column;
        gap: 30px;
        margin-left: 0px;
        margin-top: 35px;
    }

    .experiencies-corp-toggle__item img {
        max-width: 190px;
        margin: 0 auto 10px auto;
    }

    .categories-fanbag {
        gap: 10px;
        width: 100%;
    }

    .categories-fanbag__item {
        padding: .45rem 1.15rem;
        font-size: 0.95rem;
    }

    .banner-corpo.--white.--hidden {
        height: auto;
    }

    /* Estilos bloque Como funciona */
    .corpo-banneriso{ 
        margin-top: 50px;
        margin-bottom: 0px;
     }

     .corpo-banneriso.--small-margin-mobile {
        margin-top: 2rem;
     }
    
    .regaloamedida-home .corpo-regalos h4 {
        width: 100%;
        max-width: 90%;
    }
    
    .regaloamedida-home .corpo-regalos .img-tipovalijas{
        display: none;
    }
    
    .regaloamedida-home .pasos .instrucciones {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .regaloamedida-home .pasos .instrucciones .inst-regalar {
        width: 100%;
        max-width: 90%;
    }

    .regaloamedida-home .corpo-regalos .inst-regalar p {
        font-size: 16px;
    }

    .regaloamedida-home .corpo-regalos .inst-regalar p br {
        display: none;
    }

    .regaloamedida-home .corpo-regalos .img-tipovalijas {
        display: none;
        margin-top: 0px;
    }
    
    .sec-gral .corpo-regalos {
    margin-bottom: 20px;
    padding-bottom: 20px;
    }

    .sec-gral .corpo-regalos.--nomargin-mobile {
        margin-bottom: 0px;
    }

    .regaloamedida-home .title-regalo  {
        font-size: 24px;
        color: white;
        width: 80%;
        line-height: 30px;
        text-align: center;
        padding-top: 70px;
    }

    .logos-grid {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
    }
    
    .logos-grid__image {
        height: 62px;
    } 


    .contacto__footer .text {
        font-size: 14px;
    }

    .prestadores__miscelaneas {
        opacity: 0.45;
    }

    .prestadores__miscelaneas.--left {
        width: 90px;
    }

    .prestadores__miscelaneas.--right {
        bottom: -5rem;
        width: 110px;
    }

    .prestadores__miscelaneas.--right-dos {
        width: 110px;
    }

    .experiences-corp-toggle.--color-valcole .experiences-corp.--buttons .experiences-corp__item.--active:after {
        border-left-color: transparent;
        border-top-color: #ffeaa9;
    }

    .section-one__image {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .section-two__image {
        max-width: 280px;
        margin-top: 25px;
    }

    .welcome__bis .container__bis .texto__main__bis .btn__primario {
        display: inline-block;
        margin-top: 20px;
    }

    .img__main__bis.--form {
        position: fixed;
        visibility: hidden;
        z-index: 0;
        top: 0px;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: auto;
        transition: all 0.4s ease-out;
        z-index: 999;
        opacity: 0;
    }

    .img__main__bis.--form .modal__bis {
        margin: 0px auto 0 auto;
    }

    .img__main__bis.--form  .modal__bis p {
        display: none;
    }

    .img__main__bis.--form .modal h2, .img__main__bis.--form .modal__bis h2 {
        display: none;
    }

    .img__main__bis.--form.--active {
        visibility: visible;
        opacity: 1;
    }

    .img__main__bis .modal__bis__btnclose {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 35px;
    }

     .subtitle__bis {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .subtitle__bis span {
        display: none;
    }

    .grid-slider {
        gap: 45px;
        flex-direction: column;
    }
    

    .grid-slider__item:first-child {
        width: 100%;
    }

    .grid-slider__item:last-child {
        width: 100%;
    }

    .item__wrapper2 {
        height: 230px;
    }

    .grid-slider__item__logo {
        height: 35px;
        margin: 0 auto 18px auto;
    }

     .logo-campania {
        height: 155px;
        margin: 0 auto 5px auto;
    }
}


@media screen and (max-width: 481px) {
    .banner-corpo__holder {
        grid-gap: 40px;
    }

    .logo__header img {
        width: 105px;
    }

    .title,
    .title__bis {
        font-size: 1.45rem;
    }

    .title__bis.--form {
        font-size: 1.6rem;
    }

    .subtitle__bis {
        font-size: 1rem;
        line-height: 1.3;
    }

    .especial2.--no-form.--form {
        padding: 1.6rem 0rem 4rem 0rem;
    }

    .especial2.--no-form {
        padding: 0.6rem 0rem 4rem 0rem;
    }

    .modal-metPago .mp-cont .mp-box {
        width: 100%;
        max-width: 600px;
        min-height: auto;
        padding: 50px 25px 40px!important;
    }

    .modal-metPago .mp-cont {
        height: auto!important;
    }

    .modal-sorteo.--corp .modal-sorteo__inner h2 {
        font-size: 20px;
    }

    .modal-sorteo.--corp .modal-sorteo__inner h2 img {
        height: 20px;
        margin-right: 8px;
    }

    .modal-sorteo.--corp .modal-sorteo__inner .modal-sorteo__text {
        font-size: 15px;
        width: 100%;
    }

    .text-featured {
        font-size: 17px !important;
    }

    .text-small {
        font-size: 15px !important;
    }

    .titulo__sub.--center p {
        font-size: 16px;
        line-height: 1.4;
    }

    .item__sub p {
        font-size: 14px;
    }

    .item__sub p span {
        font-size: 11px;
        margin-left: 0px;
    }

    .titulo__sub {
        margin-bottom: var(--mb-2-5);
    }

    .btn-viewmore {
        width: 42px;
        height: 42px;
        border: 2px solid #fff;
    }

    .btn-viewmore img {
        width: 20px;
    }

    .corpo-banneriso {
        height: 180px;
    }

    .corpo-banneriso.--footer {
        height: 160px;
    }

    .corpo-banneriso .corpo-regalos h4 {
        font-size: 23px;
        padding-bottom: 30px;
    }

    .sub.--form-footer .modal__bis {
        margin-top: -30px;
        width: 100%;
        padding: 2rem 1rem 2rem 1rem;
    }

    .corpo-banneriso .corpo-regalos .pasos {
        margin-top: 0px;
    }

    .btn__primario, .btn__primario2 {
        padding: 0.5rem 0.8rem;
        font-size: var(--small-font-size);
    }

    .btn__primario2.--small {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .cta__sub {
        font-size: 15px;
        text-shadow: 0px 0px 11px rgba(255, 255, 255, 1), 0px 0px 11px rgba(255, 255, 255, 1), 0px 0px 11px rgba(255, 255, 255, 1);
    }

    .footer.--form-footer {
        background-color: transparent;
        padding: 3.5rem 0 6rem;
    }

    .modal h2, .modal__bis h2 {
        font-size: 18px;
        line-height: 1.25;
    }

    .modal h2,
    .modal__bis h2.--big {
        font-size: 21px;
    }

    .welcome, .welcome__bis {
        background-size: 720px;
        background-position: top center;
        background-repeat: no-repeat;
    }

    .welcome, .welcome__bis.--no-form {
        height: 430px;
        background-size: cover;
        background-position: center center;
    }

    .welcome, .welcome__bis.--no-form.--form {
        height: 450px;
    }

    .welcome__bis .container__bis.--no-form .image__home {
        width: 160px;
        padding-left: 0px;
        padding-bottom: 10px;
    }

    .welcome__bis .container__bis.--no-form .texto__main__bis {
        max-width: 100%;
    }

    .texto__main__bis {
        justify-content: center;
    }

    .welcome, .welcome__bis.--giftcards {
        background-position: top center;
    }

    .prestadores__miscelaneas {
        opacity: 0.35;
        z-index: 1;
    }

    .prestadores__miscelaneas.--left {
        width: 70px;
    }

    .prestadores__miscelaneas.--right {
        bottom: -2rem;
        width: 80px;
    }

    .prestadores__miscelaneas.--right-dos {
        width: 80px;
    }

    .logo-campania {
        height: 140px;
    }

    .logo-campania.--center {
        margin: 0 auto 5px auto;
    }

    .welcome .container, .welcome__bis.--no-form .container__bis {
        flex-direction: column-reverse;
    }

    .welcome .container, .welcome__bis .container__bis.--no-form .texto__main__bis {
        align-items: center;
        padding-right: 0px;
    }

    .welcome__bis .container__bis.--no-form .texto__main__bis .title__bis {
        text-align: center;
    }
}


@media screen and (max-width: 430px) {
    .welcome,
    .welcome__bis {
        margin-bottom: var(--mb-4-5);
    }

    #formContacto div {
        flex: none !important;
        width: 100%;
    }
}


@media screen and (max-width: 320px) {
    .modal,
    .modal__bis {
        padding: 2rem 1.2rem 3rem !important;
    }
}
