/*----------------------------------GENERALES----------------------------------*/
body {
    font-family: "Raleway", sans-serif;
    color: var(--color-explora);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

.bgTitleGradient {
    background: linear-gradient(90deg, rgba(160, 199, 227, 1) 0%, rgba(137, 199, 232, 1) 25%, rgba(255, 72, 105, 1) 100%);
    color: #FFFFFF;
    margin-top: 0;
}

.btnFaqs {
    background-color: #FFFFFF;
    border: 1px solid #002C5D;
    border-radius: 10px;
    color: #002C5D;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.btnRevisar{
    background-color: var(--color-comparte);
    border-radius: 10px;
    border: none;
    color: var(--color-explora);
    margin: auto;
    width: 100%;
    font-weight: 600;
}
.btnRevisar:hover{
    background-color: var(--color-explora);
    border-radius: 10px;
    border: none;
    color: white;
}

.inputG{
    border: 1px solid #002C5D;
    border-radius: 10px;
    color: #002C5D;
    text-align: center;
    width: 100%;
}

/*----------------------------------TAMAÑOS DE FUENTES----------------------------------*/
h1, .titleModal {
    font-size: 2.3em;
    font-weight: 600;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.3em;
    font-weight: 500;
}

h4, .contentModal {
    font-size: 1.2em;
    font-weight: 400;
}

p .titleFaqs, .dropdown-item {
    font-size: 1em;
    font-weight: 400;
}
input, select, button{
    font-size: 1em;
    font-weight: 400;
}

ul {
    list-style-type: disc;
}

/*----------------------------------SLIDER TIENDAS----------------------------------*/
.slider {
    background: transparent;
    height: auto;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: auto;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 50s linear infinite;
    animation: scroll 50s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: auto;
    width: 250px;
}

/*----------------------------------COLORES----------------------------------*/
:root {
    --color-explora: #002c5d;
    --color-alpha-explora: rgba(0, 44, 92, 0.3);
    --color-alpha-disfruta: rgba(0, 159, 227, 0.3);
    --color-comparte: #8be9e9;
    --color-disfruta: #1da6f2;
    --color-vuela: #ff4869;
    --color-app: #9ed0ef;
}

.bg-explora {
    background-color: var(--color-explora);
}

.bg-beneficios {
    background-color: var(--color-app);
}

.bg-app {
    background-color: var(--color-app);
}

.backgroundLightBlue {
    background-color: #8be9e9;
    border-radius: 20px;
}

.white {
    color: white;
}

/*----------------------------------NAVBAR----------------------------------*/
.index-navbar {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /*//padding: 10px 20px;*/
    position: fixed;
}

.glass_nav {
    background: rgba(255, 255, 255, 0.23);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-top: 8px;
    padding-bottom: 8px;
    @media only screen and (max-width: 920px) {
        padding-left: 5px;
        padding-right: 5px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none
    }
}

.navbar-toggler {
    border: transparent;
}

.navbar-light .navbar-toggler {
    font-size: 1.7em;
    color: transparent;
    border-color: transparent;
}

.navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e")!important;
    color: white!important;
    @media (max-width: 435px) {
        font-size: 0.55em !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
    font-size: 0.8em;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-vuela);

}

.navbar-light {
    border-color: var(--color-explora);
}



.navbar-light .navbar-nav .show > .nav-link {
    color: #FF4869;
}



.backgroundResponsive {
    background-color: #002c5d;
    color: white !important;
    border-radius: 0 0 15px 15px;
    @media screen and (max-width: 925px) {
        background: rgba(0, 44, 93, 0.50);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        -webkit-backdrop-filter: blur(4.7px);
    }

}

.dropdown-item {
    font-weight: 600;
    color: #012D5A !important;
}

.dropdown-item:hover {
    background-color: transparent;
    color: #FF4869 !important;
}

.dropdown-menu {
    background-color: #FFFFFF;
    border: #002D5D solid 1px;
    opacity: 1;

    @media (min-width: 1920px) {
        background-color: #cbd2da;
        opacity: 1;
    }
}

.vr {
    background-color: #012D5A;
    opacity: 1;
}

.spaceNavbar2 {
    padding-top: 10vh;
}
/*-------------------------------  B2B  ---------------------------------------------------------*/
.first-nav {
    background-color: #9ED1F0;
    color: #002C5D;
    border-radius: 15px 15px 0 0;
}

.move-below-navbar {
    margin-top: 6rem;
}

.b2b-nav{
    text-decoration: none;
    color: #002C5D !important;
    font-weight: 400;
    font-size: 0.8em!important;

    @media (min-width: 1440px) {
        font-size: 0.4em !important;
    }
}
.b2b-nav:hover{
    text-decoration: none;
    color: #002C5D;
    font-weight: 800;
}
.vrb2b {
    background-color: #FFFFFF;
    height: 2rem
}
.cont-vr{
    display: flex;
    justify-content: center;
}

/*---------------*/
.card-b2b-circle{
    width: 23rem;
    height: 340px;
    background: #009FFF;
    background: -webkit-linear-gradient(to bottom, #FF2C65, #0090D9, #00B7EE );
    background: linear-gradient(to bottom, #FF2C65, #0090D9, #00B7EE );
    border-radius: 50%;
    position: absolute;
    bottom: -10rem;
    left: 50%;
    border: none;
    transform: translateX(-50%);
    padding: 3rem;
}

.img-card{
    width: 45%;
    font-weight: lighter;
}
.text-back{
    font-size: 1em;
}
.text-front{
    font-weight: bold;
    justify-content: right;
    font-size: 1em;

}
.card-b2b {
    padding-top: 1rem !important;
    perspective: 150rem;
    position: relative;
    height: 15rem;
    width: 20rem;
    margin: 2rem;
    box-shadow: none;
    background: none;
    border: none;
}

.card-side {
    overflow: hidden;
    height: 20rem;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    transition: all 0.8s ease;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 18rem;
    padding-top: .5rem;
    color: white;
}

.card-side.back {
    transform: rotateY(-180deg);
    background: linear-gradient(to bottom, #FF2C65, #002D5D );
    padding-top: 1rem;
}

.card-side.front {

    background: linear-gradient(to bottom, #FF2C65, #002D5D );
}

.card-b2b:hover .card-side.front {
    transform: rotateY(180deg);
}

.card-b2b:hover .card-side.back {
    transform: rotateY(0deg);
}
/*textos b2b*/
.bgTitleGradientB2b {
    margin-top: 10%;
}
/*----------------------------------FOOTER----------------------------------*/
.line {
    background: linear-gradient(60deg, rgba(139, 233, 233, 1) 0%, rgba(63, 144, 219, 1) 25%, rgba(255, 72, 105, 1) 75%, rgba(255, 87, 87, 1) 100%),
    url(https://grainy-gradients.vercel.app/noise.svg);
    width: 100%;
    height: 10px;
}

.btnSuscribete {
    background-color: var(--color-vuela);
    border-radius: 10px;
    border: none;
    color: white;
    margin: auto;
    width: 100%;
}

.btnSuscribete:hover {
    color: var(--color-explora);
    background-color: var(--color-comparte);
    border-radius: 10px;
    border: none;
    color: white;
}

footer ul li {
    font-size: 12px;
    list-style-type: none;
    margin: 5px 0;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

footer .form-control {
    border-radius: 10px;

}

footer .form-control:focus {
    color: var(--color-explora);

}

.redes {
    color: white;
    list-style-type: none;
    font-size: 30px;
}

.redes a:hover {
    color: var(--color-vuela);
}

.textCopy {
    font-size: 12px;
}
.imgWhats{
    width: 60px;
    bottom: 15px;
    right: 15px;
    z-index:1;
}

.imgMess{
    width: 60px;
    bottom: 15px;
    right: 15px;
    z-index:1;
}

/*-------------------------------  B2B  ---------------------------------------------------------*/
.first-nav {
    background-color: #9ED1F0;
    color: #002C5D;
    border-radius: 15px 15px 0 0;
}


.nav-item {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1vw;
    color: #FFFFFF !important;

    @media (max-width: 900px) {
        font-family: 'Proxima Nova', sans-serif;
        font-size: 3vw;
    }

    @media (max-width: 500px) {
        font-family: 'Proxima Nova', sans-serif;
        font-size: 3vw;
        font-weight: 500;
    }
}

.nav-item:hover {
    font-weight: bold;
}


.b2b-nav-Pers {
    text-decoration: none !important;
    color: #002C5D !important;
    font-weight: 800 !important;
    font-size: 0.8em !important;

    @media (min-width: 1440px) {
        font-size: 0.4em !important;
    }
}

.move-below-navbar {
    margin-top: 6rem;
}

.vrb2b {
    background-color: #FFFFFF !important;
    height: 2rem
}

.vrb2bNav {
    background-color: #002C5D !important;
    height: 1rem !important;
    opacity: 1 !important;
}

.vrb2bNav2 {
    background-color: #FFFFFF!important;
    height: 2rem
}
.cont-vr{
    display: flex;
    justify-content: center;
}

.navbar-default {
    background-color: #012D5A !important;
    transition: background-color 0.3s ease;
    border-radius: 0 0 15px 15px;
    @media screen and (max-width: 925px) {
        background: rgba(0, 44, 93, 0.50);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        -webkit-backdrop-filter: blur(5px);
    }
}

.imgLogoDiri {
    width: 40%;
}

@media (max-width: 478px) {
    .scroll-reducido p {
        font-size: 0.8rem;  /* Reduce el tamaño del texto de los <p> */
    }
}
/**/
.btn-Recarga {
    font-size: large;
    width: 8rem;
    font-weight: 900;
    border-radius: 10px;
    color: #000000 !important;
    background-color: #ffcd00;
    text-align: center;
    line-height: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    @media (max-width: 425px) {
        width: 5rem !important;
        font-size: small !important;
    }

    &:hover {
        transform: scale(1.05); /* Escala el elemento al 110% de su tamaño original */
    }
}
.backgroundNavResponsiveBlue{
    background: #002C5D;
}

.fixed-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Asegúrate de que esté encima de otros elementos */
    background-color: #002C5D; /* Color de fondo cuando es fijo */
    transition: background-color 0.7s ease;
}
.fa-bars{
    color: #002C5D;
}

#navbarSpacer {
    height: 0;
    transition: height 0.7s ease;
}


.btn-iniciar-session{
    font-size: large;
    width: 8rem;
    font-weight: 900;
    border-radius: 10px;
    color: #FFFFFF !important;
    background-color: #FF4869;
    text-align: center;
    line-height: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    @media (max-width: 425px) {
        width: 5rem !important;
        font-size: small !important;
    }
}


.btn-iniciar-session:hover {
    transform: scale(1.05); /* Escala el elemento al 110% de su tamaño original */
}
.backgroundNav {
    position: fixed;
    background-color: transparent;
}





/*----------------------------------CARRUSELES----------------------------------*/
.carousel-control-next {
    opacity: 1;
    right: -8%;
    width: 5%;
}

.carousel-control-prev {
    opacity: 1;
    left: -10%;
    width: 5%;
}

.carousel-indicators {
    position: relative;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #CCCCCC;
    opacity: 1;
    transition: opacity .6s ease;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #002C5D;
}

.carousel-indicators.commentsW [data-bs-target], .carousel-indicators.commentsR [data-bs-target] {
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #CCCCCC;
    opacity: 1;
    transition: opacity .6s ease;
    border-radius: 50%;
}

.carousel-indicators.commentsW .active, .carousel-indicators.commentsR .active {
    background-color: #8be9e9;
}

.carousel-item {
    transition: transform .1s ease-in-out;
    transition: transform .1s ease-in-out, -webkit-transform .2s ease-in-out;
}

/*----------------------------------ERROR----------------------------------*/
.errorContent {
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.errorContent h1 {
    font-size: 4em;
    text-align: center;
}

.errorContent .btnPink {
    background-color: #FF4869;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-size: 3em;
}

/*----------------------------------MODALES----------------------------------*/
.modal-content {
    border: 2px solid #002C5D;
    border-radius: 40px;
}

.modal-content.popup {
    background-image: url("https://d3jkoqalzfs5lw.cloudfront.net/imagesDiri/banners/pop-up_800x600.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.titleModal {
    color: #002C5D;
    font-weight: 700;
}

.contentModal {
    color: #002C5D;
    font-weight: 500;
}

.btnModal {
    background-color: #ff4869;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 700;
}

@media only screen and (min-width: 1024px) {
    .bgTitleGradient {
        background: linear-gradient(90deg, rgba(160, 199, 227, .7) 0%, rgba(137, 199, 232, .7) 25%, rgba(255, 72, 105, .7) 100%);
        margin-top: 4%;
    }
    h1, .titleModal {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.5em;
    }

    h4, .contentModal {
        font-size: 1.4em;
    }

    p, button .titleFaqs {
        font-size: 1.2em;
    }
    input, select, button{
        font-size: 1.2em;
    }
}

@media only screen and (min-width: 1440px) {
    h1, .titleModal {
        font-size: 2.7em;
    }

    h2 {
        font-size: 1.9em;
    }

    h3 {
        font-size: 1.7em;
    }

    h4, .contentModal {
        font-size: 1.6em;
    }

    p {
        font-size: 1.4em;
    }
    input{
        font-size: 1em;
    }

    .bgTitleGradient {
        margin-top: 7%;
    }

    .carousel02 {
        padding: 100px 0;
        margin-right: 100px;
    }

    .pasarela {
        width: 60%;
    }

    .bg-exploraI {
        background-size: 25%;
    }
}

@media only screen and (min-width: 1920px) {
    h1, .titleModal {
        font-size: 3.1em;
    }

    h2 {
        font-size: 2.3em;
    }

    h3 {
        font-size: 2.1em;
    }

    h4, .contentModal {
        font-size: 2em;
    }
    .bgTitleGradient {
        margin-top: 10%;
        opacity: .9;
    }

    .carousel-control-next, .carousel-control-prev {
        width: 5%;
        opacity: 1;
    }
}
@media only screen and (min-width: 2560px) {
    h1, .titleModal {
        font-size: 3.3em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 2.3em;
    }

    h4, .contentModal {
        font-size: 2.2em;
    }
}




