/* Reset básico */
body, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Outfit', sans-serif;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

button, input {
    font-family: 'Outfit', sans-serif;
}

/* Base font size para diferentes anchos de pantalla */
html {
    font-size: 16px; /* Default para pantallas medianas */
  }
  
  @media (max-width: 1200px) {
    html {
      font-size: 15px; /* Para pantallas grandes */
    }
  }
  
  @media (max-width: 992px) {
    html {
      font-size: 14px; /* Para tablets y laptops pequeñas */
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 13px; /* Para tablets más pequeñas y móviles grandes */
    }
  }
  
  @media (max-width: 576px) {
    html {
      font-size: 12px; /* Para móviles pequeños */
    }
  }

  

main{
    width: 100%;
    height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.5s ease-out;
}

#preloader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 10vw;
    font-weight: 900;
    gap: 0.5rem;
    opacity: 1;
}

#preloader-text span {
    display: inline-block;
    transform: translateY(-100px); 
    opacity: 0;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Animación para cada letra */
@keyframes drop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.espace{
    height: 50px;
    width: 100%;
}


.header {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    color: #fff;
    height: 50px;
    border-bottom: 2px solid #00000028;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header__logo-container {
    display: flex;
    align-items: center;
    width: 200px;
    cursor: pointer;
}

.header__logo {
    height: 40px;
    margin-right: 10px;
}

.header__title {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Contenedor principal de la barra de navegación */
.header__navbar {
    display: flex; /* Asegura que los elementos estén en fila */
    justify-content: space-between; /* Los separa en extremos opuestos */
    align-items: center; /* Centra verticalmente los elementos */
    flex-grow: 1;
    text-align: right;
    width: 155px;
}

/* Lista de enlaces de navegación */
.header__nav-list {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Estilo de los enlaces de navegación */
.header__nav-link {
    text-decoration: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: #adadad;
}

.header__nav-contLog{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Botón de INICIAR SESIÓN */
.header__nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff8c;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin-left: 10px;
}

.header__nav-button:hover {
    transform: translateY(-2px); /* Efecto de elevación al pasar el mouse */
}

/* Ícono dentro del botón */
.header__nav-button i {
    font-size: 1rem; /* Tamaño del ícono */
    transform: rotate(-45deg); /* Gira el ícono hacia el noreste */
    transition: transform 0.3s ease; /* Suaviza la animación */
}

.header__nav-button:hover i {
    transform: rotate(-45deg) translateY(-2px); /* Añade un ligero movimiento al ícono */
}


.hero{
    border-top: 2px solid #ffffff2f;
    height: calc(100dvh - 50px);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
}

.hero__info{
    width: 50%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__title{
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    width: 80%;
    max-width: 600px;
}

.highlight{
    color: #C80D6E;
}

.hero__description{
    font-size: 1.2rem;
    font-weight: 100;
    width: 80%;
    max-width: 600px;
}

.hero__contact{
    margin-top: 42px;
    height: 50px;
    width: 80%;
    max-width: 600px;
    display: flex;
    align-items: center;
}

.hero__cta-button{
    height: 100%;
    padding: 0 30px;
    font-weight: 500;
    border-radius: 25px;
    border: 1px solid #000000;
    font-family: 'Outfit', sans-serif;
    margin-right: 40px;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.hero__cta-button:hover {
    background-color: #ffffffb0;
    color: #fff;
}

.hero__vmos-button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #000000;
    color: #ffff;
    margin-right: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero__vmos-button i{
    transition: transform 0.3s ease;
}

.hero__vmos-button:hover {
    transform: translateY(-2px );
}

.hero__vmos-button:hover i{
    transform: translateY(-2px );
}

.hero__label-button{
    font-size: 0.8rem;
}

.hero__grafic{
    width: 50%;
    height: 100%;
    display: flex;
    max-width: 900px;
}

.hero__pbli-grafic{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__percents-grafic{
    width: 100%;
}

.hero__contpercentone-grafic{
    width: 100%;
    height: 220px;
}

.hero__percentone-grafic{
    position: relative;
    width: 220px;
    height: 100%;
    border: 1px solid #fff;
    top: 40px;
    left: 40%;
    padding: 10px;
    color: #fff;
}

.hero__percentone-grafic h2{
    font-size: 3rem;
}

.hero__contpercenttwo-grafic{
    display: flex;
    position: relative;
    top: -30px;
}

.hero__percentone-grafic p {
    width: 50%;
}

.hero__percenttwo-grafic{
    height: 40px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.hero__percenttwo-grafic p{
    font-size: clamp(0.8rem, 1vw, 1.2rem);
}

.hero__pblibajo-grafic{
    width: 100%;
    background: linear-gradient(#8e0c6e, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-top-left-radius: 20px;
    color: #fff;
    max-height: 350px;
}

.hero__icoBajo-grafic{
    height: 50px;
    width: 70%;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    margin-bottom: 10px;
}

.hero__pBajo-grafic{
    width: 70%;
    font-size: clamp(0.8rem, 1.2vw, 1.5rem);
    font-weight: bold;
}

.hero__img-grafic{
    position: relative;
    width: 60%;
    height: 100%;
    display: flex;
}

.hero__contimg-grafic{
    position: relative;
    height: 100%;
    width: 65%;
    max-width: 350px;
}

.intento{
    position: absolute;
    height: 90%;
    z-index: 3;
    object-fit: contain;
}

.intento img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero__colorfnd-grafic{
    width: 100%;
    height: 70%;
    position: absolute;
    top: 15%;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.6);
    z-index: 2;
    border-radius: 20px;
    border-bottom-left-radius: 0;
}

.hero__aOpiniones-grafic{
    position: absolute;
    display: inline-block; 
    transform: rotate(90deg);
    height: 1rem;
    width: auto;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    left: 50%;
    top: 50%;
    color: #fff;
}



/* SECCION DE SERVICIOS */

.services   {
    height: 150px;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 -5px 5px rgba(0, 0, 0, 0.158);
    display: none;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* O usa space-evenly si prefieres */
    gap: 0; /* Gap ya no es necesario si usas space-between */
    width: calc(100dvw - 40px);
}

.image-container img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}
  

.benefits{
    width: calc(100vw - 10px);
}

.benefits__automatic{
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.158);
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #2d0a6f8e, #c80d6e6b);
}

.benefits__contDen-automatic{
    width: calc(100% - 20%);
    max-width: 1000px;
    padding: 20px 0;
}

.benefits__title{
    display: inline-block;
    font-size: 1rem;
    border: 2px solid #fff;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    font-weight: 400;
}

.benefits__cont-automatic {
    display: flex;
    height: 200px;
    margin-top: 10px;
}

.benefits__contList{
    height: 100%;
    width: 70%;
}

.benefits__list-item{
    color: #fff;
    font-size: clamp(1rem, 3vw, 2.5rem);
    font-weight: 500;
    height: 170px;
}

.benefits__button-automatic{
    display: flex;
    align-items: end;
    justify-content: end;
    width: 50%;
    padding: 0 20px;
}

.benefits__button-automatic button{
    border: 2px solid #fff;
    padding: 10px 20px;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.benefits__button-automatic button:hover{
    background: #ffffff69;
}

.benefits__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .benefits__control {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .benefits__control.active {
    width: 15px;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
  }

.benefits__roadmap{
    height: 500px;
    display: flex;
}

.benefits__img-roadmap{
    width: calc(50% - 5%);
    height: 100%;
    margin-left: 5%;
}

.benefits__contInfo-roadmap{
    width: calc(50% - 5%);
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.benefits__contInfo-roadmap h2{
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    color: #b10d6e;
}

.benefits__contInfo-roadmap p{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
}

.benefits__form-roadmap{
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.534);
    width: 100%;
    max-width: 400px;
    padding-right: 4px;
    display: flex;
    justify-content: space-between;
    border-radius: 25px;
    overflow: hidden;
}

.benefits__form-roadmap input[type="email"] {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    background: none;
    width: calc(100% - 146px);
}

.benefits__form-roadmap input[type="email"]:focus {
    outline: none;
}

.benefits__form-roadmap input[type="submit"] {
    border: 2px solid #66094f;
    padding: 10px 20px;
    border-radius: 26px;
    background: #8e0c6e;
    color: #fff;
    cursor: pointer;
    transition: background 0.5s ease;
}

.benefits__form-roadmap input[type="submit"]:hover {
    border: 2px solid #66094f;
    background: #fff;
    color: #66094f;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.roadmap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.circle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100px;
}

/* Estilos para los círculos exteriores */
.outer-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    color: #740b6f;
    position: relative;
}

.outer-circle p{
    font-size: 1.2rem;
    display: none;
    position: absolute;
    text-align: center;
}

#outer-circle1 {
    background-color: #430a6f4d;
}

#outer-circle2 {
    background-color: #740b6f5e;
}

#outer-circle3 {
    background-color: #b10d6d3f;
}

.selectedCirculeOuter{
    width: 100px;
    height: 100px;
    border: 2px solid #740b6f;
}

.selectedCirculeOuter p{
    display: inline;
    top: 100px;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #00000018;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.5s ease;
    color: #2E0A6F;
}

#circle1 {
    background: #2E0A6F;
    border: 3px solid #ddd;
}

.circulo2Select{
    background: #740b6f;
    border: 3px solid #ddd;
    color: #fff;
}

.circulo3Select{
    background: #b10d6d;
    border: 3px solid #ddd;
    color: #fff;
}

#circle1 .label {
    color: #fff;
}


.line {
    width: 100px;
    height: 5px;
    background-color: #ddd;
    transition: width 0.5s ease;
}

.lineden {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
}

.linedencar {
    width: 100%;
}

.fondoLineaPrimera {
    background: linear-gradient(90deg, #2E0A6F, #C80D6E)
}


.benefits__hoversection {
    width: calc(100% - 5%);
    margin-left: 2.5%;
    height: 200px;
}

.benefits__titu-hoversection {
    padding: 20px;
    font-size: 1.5rem;
    height: 50px;
    margin-bottom: 10px;
}

.benefits__cards-hoversection {
    display: flex;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

.benefits__card {
    height: 100%;
    width: 20%;
    padding: 5px;
    transition: all 0.3s ease; /* Animación suave */
    box-shadow: inset -10px 0 10px rgba(0, 0, 0, 0.219);
    overflow: hidden;
}

.benefits__card:last-child {
    box-shadow: none;
}

.benefits__card:hover {
    width: 40%; /* La tarjeta que recibe hover se expande */
}

.benefits__card:hover ~ .benefits__card {
    width: 15%; /* Las tarjetas siguientes se reducen */
}

.benefits__cards-hoversection:hover .benefits__card:not(:hover) {
    width: 15%; /* Todas las tarjetas no seleccionadas se reducen */
}


.benefits__info-card{
    height: 100%;
    width: 100%;
    border-radius: 15px;
    width: calc(100vw - 200px);
    display: flex;
}

.benefit__primero-info {
    width: 22%;
    padding:  10px 20px;
    height: 100%;
}

.benefit__primero-info h2{
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    margin: 10px 0;
}

.benefit__primero-info p{
    font-size: clamp(0.8rem, 1vw, 1rem);
}

.benefit__primeroico-info{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
}

.benefit__segundo-info {
    width: 20%;
    border-left: 1px solid #00000049;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    text-align: center;
    padding: 20px;
    color: #0000008f;
}

.imgBeneficiosUno{
    width: 25%;
}

.imagBeneUno {
    background-image: url(../assets/Financeapp-cuate.png);
    height: 100%;
    width: 80%;
    margin: 0 10%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.benefits-header1{
    width: 50%;
}

.section.beneficios1{
    padding: 20px;
    padding-top: 0;
    width: 100vw;
    height: calc(100dvh - 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.contBenUno {
    height: calc(70% - 20px);
    margin-bottom: 20px;
    width: 100%;
    display: flex;
}

.benefits-header1 h2{
    font-size: clamp(1rem, 3vw, 2.5rem);
    font-weight: bold;
    margin-top: 20px;
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.benefits-header1 p{
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
    color: #666;
    margin: 10px 0;
}


.download-btn1 {
    background: rgb(46, 10, 111);
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    color: #fff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-size: clamp(1.2rem, 1.5vw, 2rem);
}

.download-btn1:hover {
    background: none;
    color: #000000;
}

.contBene-UnoDos {
    height: 100%;
    width: 25%;
    display: flex;
    padding-left: 10px;
    flex-direction: column;
}

.imgDosBenec {
    height: 60%;
    width: 100%;
    background-image: url(../assets/Financeapp-bro.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.debit-cards1 {
    height: 40%;
    width: 100%;
}

.stats1 {
    gap: 20px;
    margin-top: 20px;
    text-align: center;
}

.p90por {
    font-size: clamp(1rem, 3vw, 2.5rem);
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contBeneficios-Dos {
    width: 100%;
    display: flex;
    height: 50%;
}

.how-it-works1 {
    padding: 10px;
    border-radius: 10px;
    background: rgb(46, 10, 111);
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    width: 40%;
    height: 100%;
    text-align: center;
    display: flex;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

.lineaHow {
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: flex;
    padding: 20px;
    width: 100%;
}

.howImg {
    width: 50%;
    height: 100%;
    background-image: url(../assets/Securelogin-amico.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.howInfo {
    width: 50%;
    height: 100%;
}

.how-it-works1 h3 {
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    margin-bottom: 20px;
}

.howInfo p {
    font-size: 1vw;
}

.how-it-works1 .trial-offer1 {
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
    font-size: 1vw;
}

.testimonials1 {
    width: 60%;
    height: 100%;
    text-align: center;
    margin-left: 20px;
    padding-top: 20px;
}

.testimonials1 h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.testimonial-container1 {
    height: calc(100% - 2.5vw);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.prev-btn1, .next-btn1 {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #0000006c;
}

.testimonial-slider1 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 90%;
    height: 100%;
    position: relative;
}

.reviewBenef {
    flex: 0 0 80%;
    margin: 0 5%;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    position: absolute;
}

.starsBene {
    color: #9B1439;
    display: flex;
    justify-content: start;
}

.testimonial1 {
    font-weight: bold;
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
    margin: 5px 0;
    width: 100%;
    text-align: start;
}

.pTestBenc {
    font-size: clamp(0.5rem, 0.8vw, 0.8rem);
    width: 100%;
    text-align: start;
}   

.infReviewB {
    height: 40px;
    width: 100%;
    margin-top: 10px;
    display: flex;
}

.profileImgReview {
    height: 40px;
    width: 40px;
    background: #9B1439;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--fondo);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff
}

.infoReviewBen {
    padding: 10px;
}

.reviewBenef.active {
    opacity: 1;
    transform: scale(1.05);
}

.contT {
    width: calc(100vw - 20px);
    height: max-content;
    overflow: hidden;
    padding-bottom: 10px;
}

.toggle-container {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    font-weight: bold;
    height: 50px;
}

.pricing-container {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    background-color: #fff;
    height: calc(50% - 30px);
    width: 100%;
}

.plan {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    transition: all 0.5s;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan:hover {
    transform: scale(105%);
}

.simple-plan {
    border: 5px solid #2E0A6F;
    color: #2E0A6F;
}

.plan-title {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    height: 2vw;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

.plan-price {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    overflow: hidden;
}

.plan-desc {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    height: 2vw;
    margin-bottom: 10px;
}

.plan-features {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: bold;
}

.simple-plan .plan-features {
    color: #2E0A6F;
}

.contButtonPlans {
    display: flex;
    align-items: end;
    justify-content: end;
}

.plan-button {
    background: rgb(46, 10, 111);
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    margin-top: 20px;
}

.plan-button:hover {
    transform: scale(105%);
}

.efficient-plan {
    border: 5px solid #540B6F;
    color: #540B6F;
}

.gold-plan {
    border: 5px solid #840C6F;
    color: #840C6F;
}

.team-plan {
    border: 5px solid #C80D6E;
    color: #C80D6E;
}

.lower-section {
    display: flex;
    gap: 10px;
    height: calc(25% - 20px);
    margin-top: 20px;
    padding: 0 10px;
}

.right-container {
    width: 100%;
    background: rgb(46, 10, 111);
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.contSTSP {
    height: 100%;
}

.coloresBonitos {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    overflow: hidden;
}

.contCall {
    width: 100%;
    height: 100%;
    padding: 10px 40px;
    color: #fff;
}

.ptituCall {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 10px;
}

.contCalltuactionU {
    font-size: clamp(1rem, 1.2vw, 1.8rem);
    margin-bottom: 10px;
}

.buttonsLlamarChat {
    height: 40px;
    width: 100%;
    display: flex;
}

.buttonCom {
    background: #fff;
    border-radius: 17px;
    border: none;
    color: #000000;
    margin-right: 10px;
    width: 50%;
    height: 100%;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
    cursor: pointer;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    font-size: clamp(1rem, 1.5vw, 2rem);
}

.buttonCom:hover {
    transform: scale(105%);
    color: #fff;
    background: #000000;
}

.fondo-1 {
    position: absolute;
    top: 0;
    left: 0;
    background: #00000049;
    height: 100dvh;
    width: 100vw;
    z-index: 1000;
    display: none;
    justify-content: end;
    padding: 10px;
}

.mostrar {
    display: flex;
}

.formulario-contenedor-2 {
    background: #fff;
    width: 0px;
    max-width: 400px;
    border-radius: 20px;
    transition: all 1s;
    overflow: hidden;
}

.abrir__form__tres {
    width: 100%;
}

.formulario__superior {
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #00000028;
    padding: 0 10px;
    justify-content: space-between;
    color: #0b2766;
}

.boton-cerrar-2 {
    border-radius: 50%;
    background: #e92c2c;
    border: none;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.boton-cerrar-2:hover{
    background: #dd4040;
}

.formulario-3 {
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
}

.formulario-3llenar {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.formulario-3llenar label{
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #0000007e;
}

.formulario-3llenar input{
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #00000049;
    padding: 5px 10px;
    font-size: clamp(1rem, 1vw, 1.2rem);
    color: #0000007e;
}

.contPlanElec {
    border: 3px solid #00000049;
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    transition: all 1s;
}

.nombrePlanE {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contPlanElec:hover {
    border: 3px solid #C80D6E;
}

.form3__button {
    height: 50px;
    border-top: 2px solid #00000049;
    display: flex;
    padding: 10px;
    justify-content: end;
}

.boton-enviar-3 {
    padding: 0 20px;
    border-radius: 25px;
    border: 2px solid #0b2766;
    color: #0b2766;
    font-weight: 600;
    cursor: pointer;
    transition: all 1s;
}

.boton-enviar-3:hover {
    background: #0b2766;
    color: #fff;
}

.selectedPlan {
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    color: #fff;
}

.selectedPlan .nombrePlanE{
    color: #fff;
}

.mensaje-confirmacion-3 {
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2vw;
    height: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
}

.mensaje-confirmacion-3 i {
    font-size: 24px;
    margin-right: 5px;
}

#loadingSpinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.spinner {
    border: 5px solid #f3f3f3; /* Color de fondo del círculo */
    border-top: 5px solid #C80D6E; /* Color de la barra de carga */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* ESTILOS INCIO DE SESION */
.contenidoSesion{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0vh;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background: #464646b7;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.contenidoSesion-Active{
    height: 100vh;
    z-index: 1000;
}

.contenido{
    width: calc(100% - 5%);
    height: calc(100% - 5%);
    margin: 2.5%;
    max-width: 1200px;
    max-height: 600px;
    display: flex;
    overflow: hidden;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.img-index{
    width: 60%;
    height: 100%;
    overflow: hidden;
    background: rgb(46,10,111);
    background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
}

.cerrarBotton{
    height: 40px;
    width: 100%;
    color: #f1dada;
    display: flex;
    padding: 0 10px;
    justify-content: end;
    align-items: center;
}

.paracambiar{
    cursor: pointer;
}

.paracambiar:hover{
    color: #d78383;
}

.contenedor-form{
    width: 40%;
    padding: 20px;
    height: 100%;
}

.contenedor-form form{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contenedor-form form h2{
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #2E0A6F, #C80D6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contenedor-form form input{
    height: 50px;
    margin-bottom: 10px;
}

.input-container{
    position: relative;
    height: 45px;
    width: 100%;
    margin-bottom: 17px;
}

.input{
    width: 98%;
    border: none;
    border-radius: 25px;
    position: absolute;
    border: 1px solid #00000049;
    top: 0;
    left: 0;
    outline: none;
    z-index: 1;
    background: none;
    padding: 0 20px;
    font-size: 1em;
    color: #00000049;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.input::placeholder{
    color: transparent;
}

.input-container label{
    position: absolute;
    top: 16px;
    left: 25px;
    padding: 0 4px;
    background: #fff;
    color: #b8b8b8;
    font-size: 16px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    z-index: 0;
}

.input:focus{
    border: 2px solid #001F3F;
    box-shadow: inset 0 0 2px #001F3F (0, 0, 0, 1);
}

.input:focus + .label{
    top: -7px;
    left: 15px;
    z-index: 10;
    font-size: 14px;
    font-weight: 700;
    color: #001F3F;
}

.input:not(:placeholder-shown)+ .label{
    top: -7px;
    left: 3px;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
}

.check{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 98%;
    height: 50px;
}

.check label{
    position: relative;
    top: -6px;
    margin-right: 10px;
}

.registrar{
    width: 100%;
    border-radius: 25px;
    border: 2px solid #001F3F;
    background: #001F3F;
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-size: 0.9em;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    height: 50px;
    margin-bottom: 10px;
}

.registrar:hover{
    background: #fff;
    color: #001F3F;
    cursor: pointer;
}

.linea-sesion{
    margin-top: 20px;
    border-top: 1px solid #00000049;
    display: flex;
    justify-content: center;
}

.linea-sesion p{
    background: #fff;
    position: relative;
    top: -10px;
    width: 170px;
    text-align: center;
}

.escribe{
    text-align: center;
    font-size: clamp(1.2rem, 1.5vw, 2rem);
    font-weight: bold;
    background: linear-gradient(90deg, #001F3F, #9B1439);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

#mensaje-error{
    text-align: center;
    background-color: #fc3636;
    color: #fff;
    border-radius: 10px;
}

.pdebajo{
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.imgbanner {
    height: calc(100% - 40px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.text-content {
    position: relative;
    top: -67px;
    border-radius: 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
    
    background-color: rgba(255, 255, 255, 0.3); /* Fondo semi-transparente */
    backdrop-filter: blur(10px); /* Aplica el blur solo al fondo */
    -webkit-backdrop-filter: blur(10px); /* Soporte para navegadores WebKit */
    border: 1px solid rgba(255, 255, 255, 0.18); /* Bordes ligeros para el efecto de vidrio */
}

.img-index h3 {
    font-size: 1.5em;
    text-align: center;
    color: #001F3F;
}

.benefits__list-item span{
    color: #C80D6E;
}


@media (max-width: 1024px) {
    
    main{
        display: block;
    }

    .contenido{
        flex-direction: column-reverse;
        margin-top: 20px;
        justify-content: start;
        height: max-content;
        max-height: max-content;
    }

    .img-index{
        width: 100%;
        height: 33px;
        background: var(--fondo);
    }

    .cerrarBotton{
        color: red;
    }

    .contenedor-form form h2{
        font-size: 5vh;
    }

    .imgbanner{
        display: none;
    }

    .text-content{
        display: none;
    }

    .img-index img{
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .img-index h2{
        position: absolute;
        top: 100px;
    }

    .nuevo{
        display: none;
    }

    .contenedor-form{
        width: 100%;
        height: calc(100% - 50px);
    }

    .escribe{
        font-size: 4vh;
    }

    .registrar{
        background: rgb(46,10,111);
        background: linear-gradient(90deg, #2E0A6F 18%, #C80D6E 100%);
    }

    .header {
        height: 80px;
    }

    .header__logo-container {
        width: calc(100% - 155px);
    }

    .header__logo {
        height: 50px;
    }

    .header__title {
        font-size: clamp(1.2rem, 3.5vh, 2.2rem);
        font-family: 'Outfit', sans-serif;
    }

    .header__nav-list {
        display: none;
    }

    .header__navbar {
        justify-content: end;
    }

    .header__nav-contLog {
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
    }
    
    .espace {
        height: 80px;
    }

    .hero {
        flex-direction: column;
        height: calc(100dvh + 100px);
    }

    .hero__info {
        width: 100%;
        height: 50%;
    }

    .hero__title {
        font-size: clamp(2rem, 4vh, 3rem);
    }

    .hero__description {
        font-size: clamp(0.8rem, 2vh, 2rem);
    }

    .hero__vmos-button {
        display: none;
    }

    .hero__label-button {
        display: none;
    }

    .hero__grafic {
        width: 100%;
        justify-content: center;
        padding: 0 20px;
        height: 50%;
    }

    .hero__percenttwo-grafic p {
        font-size: clamp(0.8rem, 2vh, 1rem);
    }
    
    .hero__pbli-grafic {
        width: 50%;
        max-width: 400px;
    }

    .hero__img-grafic {
        width: 50%;
        max-width: 400px;
    }

    .hero__contimg-grafic {
        width: 100%;
    }

    .hero__aOpiniones-grafic {
        display: none;
    }

    .hero__pBajo-grafic {
        width: 70%;
        font-size: clamp(0.8rem, 2vh, 1rem);
        font-weight: bold;
    }

    .services {
        height: max-content;
        padding: 20px;
    }

    .benefits {
        width: 100%;
    }

    .benefits__contDen-automatic {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .benefits__cont-automatic {
        height: max-content;
        flex-direction: column;
        margin-top: 30px;
    }

    .benefits__title {
        font-size: clamp(1rem, 2vh, 2rem);
    }

    .benefits__contList {
        width: 100%;
    }

    .benefits__controls {
        margin-top: 0;
    }

    .benefits__list-item {
        font-size: clamp(2rem, 3vh, 2.5rem);
    }
    
    .benefits__button-automatic {
        margin-top: 20px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .benefits__roadmap {
        flex-direction: column;
        margin-top: 40px;
    }
    
    .benefits__img-roadmap {
        width: 100%;
        height: max-content;
        margin-left: 0px;
        margin-bottom: 40px;
    }
    
    .line {
        width: 50px;
    }

    .benefits__contInfo-roadmap {
        width: 100%;
    }

    .benefits__contInfo-roadmap h2{
        font-size: clamp(2rem, 4vh, 3rem);
        height: 150px;
        text-align: center;
    }

    .benefits__contInfo-roadmap p {
        height: 150px;
        font-size: 1.5rem;
    }

    .benefits__hoversection {
        height: max-content;
    }

    .benefits__cards-hoversection {
        flex-direction: column;
        height: calc(100vh - 100px);
    }

    .benefit__primero-infoIn{
        display: flex;
        justify-content: space-between;
    }

    .benefits__titu-hoversection {
        height: max-content;
        font-size: 4rem;
        margin-top: 50px;
        text-align: center;
        background: linear-gradient(90deg, #2E0A6F, #C80D6E);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    .benefits__card {
        width: 100%;
        height: 20%;
        box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.219);
    }

    .benefits__card:hover {
        width: 100%;
        height: 40%; /* La tarjeta que recibe hover se expande */
    }

    .benefits__card:hover ~ .benefits__card {
        width: 100%;
        height: 15%; /* Las tarjetas siguientes se reducen */
    }

    .benefits__cards-hoversection:hover .benefits__card:not(:hover) {
        width: 100%;
        height: 15%; /* Todas las tarjetas no seleccionadas se reducen */
    }

    .benefits__info-card {
        width: 100%;
        flex-direction: column;
        height: 35dvh;
    }

    .benefit__primero-info {
        width: 100%;
        height: calc(50% + 10px);
        display: flex;
        align-items: center;
    }

    .benefit__segundo-info p{
        font-size: clamp(1.5rem, 2vh, 2.5rem);
    }

    .benefits__card:first-child {
        box-shadow: none;
    }

    .benefits__card:last-child {
        box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.219);
    }

    .benefit__primeroico-info {
        height: 50px;
        width: 50px;
    }

    .benefit__segundo-info {
        border: none;
        border-top: 3px solid #00000028;
        width: 100%;
        height: 50%;
        display: flex;
        align-items: center;
        padding: 10px;
    }

    .benefit__primero-info h2 {
        margin-left: 20px;
        font-size: clamp(1.5rem, 2vh, 2rem);
        width: calc(100% - 70px);
    }

    .benefit__primero-info p {
        font-size: clamp(1rem, 1.5vh, 2rem);
    }

    .section.beneficios1 {
        height: max-content;
    }

    .imgBeneficiosUno {
        display: none;
    }

    .benefits-header1 {
        width: 100%;
        margin-bottom: 40px;
    }

    .benefits-header1 h2 {
        font-size: clamp(3rem, 4vh, 5rem);
        text-align: center;
        margin-bottom: 20px;
    }

    .benefits-header1 p {
        font-size: clamp(2rem, 2vh, 2.5rem);
    }

    .download-btn1 {
        width: 100%;
        height: 50px;
        font-size: 1.5rem;
    }

    .contBene-UnoDos {
        display:  none;
    }

    .contBeneficios-Dos {
        flex-direction: column;
    }

    .how-it-works1 {
        width: 100%;
        height: max-content;
    }

    .lineaHow {
        padding: 10px;
    }

    .how-it-works1 h3 {
        font-size: clamp(2rem, 2vh, 2.5rem);
    }

    .howInfo p {
        font-size: clamp(1.2rem, 1.5vh, 1.5rem);
    }

    .how-it-works1 .trial-offer1 {
        font-size: clamp(1rem, 1vh, 1.2rem);
    }

    .testimonials1 {
        width: 100%;
        height: max-content;
        margin: 0;
    }

    .testimonials1 h3 {
        font-size: clamp(3rem, 4vh, 4rem);
    }

    .testimonial-slider1 {
        height: 450px;
    }

    .testimonial1 {
        font-size: clamp(2rem, 3vh, 3rem);
    }

    .pTestBenc {
        font-size: clamp(1rem, 2vh, 1.2rem);
    }

    .infoReviewBen {
        font-size: clamp(1rem, 2vh, 1.2rem);
    }

    .contT {
        height: max-content;
        width: 100vw;
    }

    .pricing-container {
        flex-direction: column;
    }

    .toggle-container {
        font-size: clamp(2rem, 2vh, 3rem);
        height: max-content;
        text-align: center;
    }

    .plan {
        padding: 0;
        padding: 20px;
    }

    .plan-title {
        font-size: clamp(2rem, 4vh, 5rem);
        height: max-content;
        text-align: center;
        margin-bottom: 40px;
    }

    .plan-price {
        font-size: clamp(1.2rem, 3vh, 1.5rem);
        height: max-content;
    }

    .plan-desc {
        font-size: clamp(1.2rem, 3vh, 1.5rem);
        height: max-content;
        margin-bottom: 20px;
    }

    .plan-features {
        font-size: clamp(1.2rem, 3vh, 1.5rem);
        margin-bottom: 20px;
    }

    .contButtonPlans {
        justify-content: center;
    }

    .plan-button {
        font-size: clamp(1.2rem, 3vh, 1.5rem);
    }

    .procesos {
        font-size: clamp(1.5rem, 3vh, 2.5rem);
    }
    
    .contofertCosas {
        flex-direction: column;
        align-items: center;
    }

    .uncoCosasOfer {
        width: 100%;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .lower-section {
        height: max-content;
    }

    .ptituCall {
        font-size: clamp(2rem, 3.2vh, 3rem);
    }

    .contCalltuactionU {
        font-size: clamp(1rem, 2vh, 2rem);
    }

    .buttonsLlamarChat {
        flex-direction: column;
        height: max-content;
    }

    .buttonCom {
        margin-bottom: 10px;
        width: 100%;
        padding: 20px 0;
        font-size: clamp(1rem, 2vh, 2rem);
    }

    .contCall {
        padding: 20px;
    }

    .benefits__button-automatic button{
        width: 100%;
    }
}

.mirar{
    height: 100px;
    width: 100vw;
}

footer {
    background-color: #333333;
    height: 150px;
    width: 100vw;
}

.container {
    --uib-size: 100px;
    --uib-color: var(--principal);
    --uib-speed: 1.5s;
    --uib-dot-size: calc(var(--uib-size) * 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: calc(var(--uib-size) * 0.64);
    width: calc(var(--uib-size) * 0.64);
}

@keyframes jump {
    0%,
    100% {
        transform: translateY(120%);
    }

    50% {
        transform: translateY(-120%);
    }
}

.dot {
    --uib-d1: -0.48;
    --uib-d2: -0.4;
    --uib-d3: -0.32;
    --uib-d4: -0.24;
    --uib-d5: -0.16;
    --uib-d6: -0.08;
    --uib-d7: -0;
    position: absolute;
    bottom: calc(var(--uib-bottom) + var(--uib-dot-size) / 2);
    right: calc(var(--uib-right) + var(--uib-dot-size) / 2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-dot-size);
    width: var(--uib-dot-size);
    animation: jump var(--uib-speed) ease-in-out infinite;
    opacity: var(--uib-scale);
    will-change: transform;
    backface-visibility: hidden;
}

.dot::before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: #001F3F;
    border-radius: 50%;
    transform: scale(var(--uib-scale));
    transition: background-color 0.3s ease;
}

.dot:nth-child(1) {
    --uib-bottom: 24%;
    --uib-right: -35%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d1));
}
.dot:nth-child(2) {
    --uib-bottom: 16%;
    --uib-right: -6%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d2));
}
.dot:nth-child(3) {
    --uib-bottom: 8%;
    --uib-right: 23%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d3));
}
.dot:nth-child(4) {
    --uib-bottom: -1%;
    --uib-right: 51%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d4));
}
.dot:nth-child(5) {
    --uib-bottom: 38%;
    --uib-right: -17.5%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d2));
}
.dot:nth-child(6) {
    --uib-bottom: 30%;
    --uib-right: 10%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d3));
}
.dot:nth-child(7) {
    --uib-bottom: 22%;
    --uib-right: 39%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d4));
}
.dot:nth-child(8) {
    --uib-bottom: 14%;
    --uib-right: 67%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d5));
}
.dot:nth-child(9) {
    --uib-bottom: 53%;
    --uib-right: -0.8%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d3));
}
.dot:nth-child(10) {
    --uib-bottom: 44.5%;
    --uib-right: 27%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d4));
}
.dot:nth-child(11) {
    --uib-bottom: 36%;
    --uib-right: 55.7%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d5));
}
.dot:nth-child(12) {
    --uib-bottom: 28.7%;
    --uib-right: 84.3%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d6));
}
.dot:nth-child(13) {
    --uib-bottom: 66.8%;
    --uib-right: 15%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d4));
}
.dot:nth-child(14) {
    --uib-bottom: 58.8%;
    --uib-right: 43%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d5));
}
.dot:nth-child(15) {
    --uib-bottom: 50%;
    --uib-right: 72%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d6));
}
.dot:nth-child(16) {
    --uib-bottom: 42%;
    --uib-right: 100%;
    animation-delay: calc(var(--uib-speed) * var(--uib-d7));
}

.dot:nth-child(3) {
    --uib-scale: 0.98;
}
.dot:nth-child(2),
.dot:nth-child(8) {
    --uib-scale: 0.96;
}
.dot:nth-child(1),
.dot:nth-child(7) {
    --uib-scale: 0.94;
}
.dot:nth-child(6),
.dot:nth-child(12) {
    --uib-scale: 0.92;
}
.dot:nth-child(5),
.dot:nth-child(11) {
    --uib-scale: 0.9;
}
.dot:nth-child(10),
.dot:nth-child(16) {
    --uib-scale: 0.88;
}
.dot:nth-child(9),
.dot:nth-child(15) {
    --uib-scale: 0.86;
}
.dot:nth-child(14) {
    --uib-scale: 0.84;
}
.dot:nth-child(13) {
    --uib-scale: 0.82;
}

.ofertasSection {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .procesos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        padding: 50px 0;

        span {
            display: flex;
            align-items: center;
            font-weight: bold;
            background: #960c6f42;
            color: #960C6E;
            padding: 0 20px;
            height: 30px;
            font-size: 0.8rem;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
        }

        h2 {
            font-size: clamp(2rem, 2.5vw, 2.6rem);
            background: linear-gradient(90deg, #2E0A6F, #C80D6E);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        p {
            width: 100%;
            max-width: 800px;
            text-align: center;
            color: #5b5b5b;
            font-size: 1.1rem;
        }
    }

    .contofertCosas {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        justify-content: center;
        padding-bottom: 60px;
        width: 100%;
        max-width: 1200px;
    }

    .cardCosas {
        max-width: 400px;
        margin: 0 auto;
        background: #fff;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        i {
            color: #960C6E;
            margin-bottom: 15px;
        }

        h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #2E0A6F;
        }

        p {
            color: #5b5b5b;
            font-size: 1rem;
        }

        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
    }

}


#loader-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.loader {
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}