@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    --font-nunito: 'Nunito', sans-serif;
    --font-nunito-sans: 'Nunito Sans', sans-serif;
    --verde: #26C9D9;
    --morado: #5E00A3;
    
}


body {
    font-family: var(--font-nunito-sans);
    background-color: #fff;
}
.verde {
    color: var(--verde);
}
.morado {
    color: var(--morado);
}
.moradocolor {
    color: var(--morado);
}

/* Botones globales */ 
.btnmorado {
    background-color: var(--morado);
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px;
    display: inline-flex;
}
.btnmorado:hover {
    background-color: var(--verde);
}

/* Icono con bolitas */ 
.avatarconbol {
    margin-bottom: 20px;
    position: relative;
}
.avatarconbol img {
    width: 50px;
    height: auto;
    position: relative;
    z-index: 2;
}
.avatarconbol i {
    font-size: 40px;
    height: auto;
    position: relative;
    z-index: 2;
    bottom: -10px;
    color: #888;
}
.avatarconbol .bolita1 {
    background-color: #F9F0FF;
    color: #F9F0FF;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    position: absolute;
    margin-left: -10px;
    z-index: 1;
}
.avatarconbol .bolita2 {
    background-color: #ECF9FA;
    color: #ECF9FA;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 1;
}

/* Estilos del Icono de Hamburguesa Personalizado */
.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 50; /* Asegura que esté por encima del menú */
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--morado);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon span:nth-child(2) {
    width: 70%; /* Línea central más corta como en la imagen */
    align-self: flex-end;
}

/* Estilos para el estado "abierto" del icono (opcional, para una animación si abres el menú) */
/* .hamburger-icon.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); } */
/* .hamburger-icon.open span:nth-child(2) { opacity: 0; } */
/* .hamburger-icon.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } */


/* Estilos del Menú Móvil Lateral Derecho */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px; /* Ancho del menú */
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transform: translateX(100%); /* Oculto por defecto */
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    z-index: 10000; /* Aumentado para estar por encima del header */
}
@media screen and(max-width: 750px) {
    .mobile-menu {
        width: 100%;
    }
}
.mobile-menu.open {
    transform: translateX(0); /* Muestra el menú */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 20px; /* Espacio para el botón de cerrar */
}

.mobile-menu ul li {
    margin-bottom: 10px;
    transition: 0.5s;
}
.mobile-menu ul li:hover {
    padding-left: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--morado);
    cursor: pointer;
    background: none;
    border: none;
}

.coverhero {
    background-image: linear-gradient(to bottom, #000000, #183067);
    width: 100%;
    height: 423px;
    color: #fff;
    display: flex;
    padding: 20px 40px;
}

.coverhero .centradocover {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    display: flex;
    position: relative;
}
.coverhero .centradocover .eltextocover {
    width: 100%;
    max-width: 67%;
    position: relative;
    display: flex;
}
.coverhero .centradocover .eltextocover .lost {
    width: 100%;
    max-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    align-items: center;
}
.eltextocover .lost .titulouno {
    font-size: 56px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 6px;
}
.eltextocover .lost .titulodos {
    font-size: 25px;
    font-weight: 300;
    color: #FFEC33;
    margin-bottom: 30px;
}
.eltextocover .lost .titulodos b {
    color: #02FFEC;
    font-weight: 700;
}
.eltextocover .lost .textlargo {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
    width: 100%;
    max-width: 80%;
}
.eltextocover .lost .texcovefne {
    font-weight: 800;
}


.coverhero .centradocover .eltextocover img {
    position: absolute;
    width: 100%;
    max-width: 500px;
    right: -70px;
    
}
.coverhero .centradocover .formulario {
    width: 100%;
    max-width: 36%;
    border-radius: 10px;
    height: 500px;
    margin-top: 30px;
} 
.simulador-credito {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 10px 30px #0000001A;
    padding: 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    font-family: var(--font-nunito-sans);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sim-header {
    background: linear-gradient(180deg, #26C9D9 0%, #00bcd4 100%);
    border-radius: 16px 16px 0 0;
    padding: 32px 24px 18px 24px;
    text-align: center;
    color: #fff;
}

.sim-header h2 {
    font-size: 23px;
    line-height: 22px;
    margin-bottom: 0px;
    font-weight: 800;
    letter-spacing: -1px;
}

.sim-header .sim-sub {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #000;
}

.sim-header .sim-mini {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    opacity: 0.95;
}

.sim-campo {
    padding: 18px 24px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sim-campo .ellabelcalcu {
    font-weight: 600;
    color: #444;
    font-size: 14px;
    margin-bottom: 4px;
    margin-bottom: 34px;
}

.sim-slider-group {
    position: relative;
    margin-bottom: 2px;
}

.sim-slider {
    width: 100%;
    accent-color: var(--verde);
    height: 12px;
    border-radius: 9px;
    background: #e0e0e0;
    position: relative;
}

.sim-slider-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--verde);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: left 0.1s ease;
    box-shadow: 0px 3px 6px #00000029;
    
}

.sim-slider-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

.sim-slider-value-dias {
    background: #fff;
}

.sim-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 10px;
}

.sim-total-box {
    background: #FFFEF5;
    border: 1px solid #FFEC33;
    border-radius: 8px;
    padding: 16px;
    margin: 18px 24px 0 24px;
}

.sim-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0.2em;
    color: #222;
}

.sim-total-valor {
    color: #26C9D9;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.6px;
    margin-left: 8px;
}

.sim-total-desc {
    font-size: 13px;
    color: #444;
    margin-top: 0.3em;
}

.sim-mas-info {
    color: #26C9D9;
    text-decoration: underline;
}

.sim-btn {
    width: 90%;
    margin: 24px auto 18px auto;
    background-color: var(--morado);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 12px 0;
    cursor: pointer;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s;
    display: block;
    transition: 0.5s;
}

.sim-btn:hover {
    background-color: var(--verde);
}





/* Home modulo informativo  */
.infomrativohome {
    width: 100%;
    max-width: 1190px;
    margin: auto;
    margin-top: -75px;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 50px 30px;
    padding-bottom: 70px;
    z-index: 9;
    box-shadow: 0px 10px 80px #00000050;
}
.infomrativohome .contentprimermod {
    width: 100%;
    max-width: 730px;
}
.contentprimermod .topconten {
    text-align: center;
}
.titulocos {
    font-size: 33px;
    font-weight: 800;
    letter-spacing: -1px;
}
.titulocos span {
    color: var(--morado);
}
.contentprimermod .topconten p {
    font-size: 14px;
    margin-bottom: 40px;
}
.contentprimermod .itemsvar {
    display: flex;
}
.contentprimermod .itemsvar .listq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
}
.contentprimermod .itemsvar .listq .iconoybolas {
    position: relative;
    display: flex;
    margin-bottom: 30px;
}
.contentprimermod .itemsvar .listq .iconoybolas i {
    font-size: 35px;
    color: #262727;
    z-index: 1;
}
.contentprimermod .itemsvar .listq .iconoybolas img {
    width:32px;
    color: #262727;
    z-index: 1;
}
.contentprimermod .itemsvar .listq .iconoybolas .bolita1 {
    background-color: #F9F0FF;
    color: #F9F0FF;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    position: absolute;
    margin-left: -20px;
}
.contentprimermod .itemsvar .listq .iconoybolas .bolita2 {
    background-color: #F9F0FF;
    color: #F9F0FF;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    position: absolute;
    right: -3px;
}
.contentprimermod .itemsvar .listq .itemtol {
    font-size: 18px;
    letter-spacing: -1px;
    font-weight: bold;
    margin-bottom: 14px;
}
.contentprimermod .itemsvar .listq p {
    font-size: 14px;
}
.contentprimermod .itemsvar .listq p span {
    color: var(--verde);
    font-weight: 600;
}

/* segundo modulo informativo home  */
.segundomodinf {
    background-color: #EDEDED;
    width: 100%;
    max-width: 1190px;
    margin: auto;
    display: flex;
}
.segundomodinf .laimegen {
    width: 100%;
    max-width: 35%;
}
.segundomodinf .laimegen img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: -50px;
}
.segundomodinf .textouno {
    padding-top: 40px;
    padding-right: 50px;
    width: 50%;
    padding-bottom: 30px;
}
.segundomodinf .textodos {
    width: 60%;
}
.segundomodinf .textouno .tillsgw {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
}
.segundomodinf .textouno .tillsgw span {
    color: var(--morado);
}
.segundomodinf .textouno p {
    font-size: 15px;
    font-weight: 300;
}
.segundomodinf .textouno p b {
    font-weight: 700;
}


/* Beneficios home  */
.modulobenehome {
    width: 100%;
    max-width: 1190px;
    margin: auto;
    background-color: #fff;
    padding: 70px 30px;
    padding-bottom: 10px;
    box-shadow: 0px 10px 80px #00000034;
    z-index: 999;
    position: sticky;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.modulobenehome .cabitemg {
    text-align: center;
    margin-bottom: 50px;
}
.modulobenehome .cabitemg p {
    font-size: 19px;
}
.modulobenehome .listmod {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modulobenehome .listmod .moduositems {
    width: 100%;
    max-width: 30%;
    margin-bottom: 40px;
    text-align: center;
}
.modulobenehome .listmod .moduositems .iconbolit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    min-height: 50px;
}
.modulobenehome .listmod .moduositems .iconbolit i {
    font-size: 52px;
    z-index: 999;
}
.modulobenehome .listmod .moduositems .iconbolit img {
    width: 50px;
    z-index: 999;
}
.listmod .moduositems .iconbolit .bullet1 {
    width: 49px;
    height: 49px;
    border-radius: 100px;
    color: #F2E9F8;
    background-color: #F2E9F8;
    position: absolute;
    margin-left: -20px;
    top: -24px;
}
.listmod .moduositems .iconbolit .bullet2 {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    color: #ECF9FA;
    background-color: #ECF9FA;
    position: absolute;
    margin-right: -40px;
    top: -5px;
}
.modulobenehome .listmod .moduositems .tittlsq {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.modulobenehome .listmod .moduositems p {
    margin-bottom: 0;
    font-size: 15px;
    margin-bottom: 50px;
}
.modulobenehome .listmod .moduositems p b {
    color: var(--verde);
}

.modulobenehome .botonspacing {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.modulobenehome .botonspacing a {
    background-color: var(--morado);
    padding: 14px 38px;
    color: #fff;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 50px;
}
.modulobenehome .botonspacing a:hover {
    background-color: var(--verde);
}

.w-full my-8 {
  space-y-4;
}

.accordion-item {
  border-2 border-[#26C9D9] rounded-lg overflow-hidden;
}

.accordion-header {
  flex justify-between items-center w-full px-6 py-4 text-left font-semibold text-gray-800 bg-white hover:bg-gray-50 focus:outline-none;
}

.accordion-icon {
  text-2xl transition-transform duration-200;
}

.accordion-body {
  px-6 py-4 text-gray-700 bg-white;
}

/* Footer  */
.footersite {
    background: transparent linear-gradient(180deg, #5E00A3 0%, #183067 100%) 0% 0% no-repeat padding-box;
    padding: 50px 20px;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: -100px;
}
.footersite .linksfoter {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.footersite .linksfoter li {
    margin-left: 10px;
    margin-right: 10px;
}
.footersite .linksfoter li a {
    color: var(--verde);
}
.footersite .linksfoter li a:hover {
    text-decoration: underline;
}
.footersite .linksfoter p {
    font-size: 14px;
}
.footedepurado {
    padding-top: 50px;
    margin-top: -0px;
}

/* WhatsApp Flotante  */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}


/* Cover interno global  */

.coverinternoglobal {
    background-image: linear-gradient(to bottom, #000000, #183067);
    width: 100%;
    height: 253px;
    color: #fff;
    display: flex;
    padding: 30px 40px;
    justify-content: center;
}
.coverinternoglobal .titulocover {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 10px;
}


/* Pagina de registro  */
.formularioregistro {
    margin-top: -170px;
    z-index: 9;
    position: sticky;
}


/* Modal registro  */
.informacionmodal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.informacionmodal .textosmodalrg .titulomodal {
    color: var(--verde);
    font-size: 28px;
    line-height: 30px;
    font-weight: 800;
}
.informacionmodal .textosmodalrg span {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}
.informacionmodal .textosmodalrg p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}
.informacionmodal .textosmodalrg p b {
    font-weight: bold;
}

/* Pagina login  */
.pagelogin {
    width: 100%;
    min-height: 100vh;
    background-color: #FAFAFA;
    display: flex;
}


/* Pagina de felicitaciones  */
.felicitacionesrgistre {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
    background-color: #FAFAFA;
}
.felicitacionesrgistre .titulofeliz {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.felicitacionesrgistre .titulofeliz .titulo {
    color: var(--morado);
    font-size: 29px;
    line-height: 32px;
    font-weight: 900;
    margin-top: 14px;
}
.felicitacionesrgistre .titulofeliz span {
    color: #A6E405;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
}
.felicitacionesrgistre .solicitarcredi {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.listadobenefi {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: auto;
    margin-top: 80px;
    text-align: center;
}
.listadobenefi .titulobene {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.listadobenefi .titulobene h2 {
    font-size: 27px;
    font-weight: 900;
}
.listadobenefi .titulobene h2 span {
    color: var(--morado);
}
.listadobenefi .titulobene p {
    font-size: 15px;
}
.listadobenefi .listadoitmes {
    display: flex;
    justify-content: space-between;
}
.listadobenefi .listadoitmes .grid {
    width: 100%;
    max-width: 28%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.listadobenefi .listadoitmes .grid h3 {
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}
.listadobenefi .listadoitmes .grid p {
    font-size: 14px;
}