* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 2.5vh;
    color: #414247;
    margin: 25px 0 45px 0;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-custom {
    background-color: rgb(103 121 158 / 97%) !important;
    padding: 2vh;
    transition: background-color 0.3s ease-in-out;
    position: fixed;
    width: 100%;
}

.navbar-custom.scrolled {
    background: rgba(38, 37, 57, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand img {
    width: 120px;
    padding: 0 30px 0 30px;
}

.navbar-brand-dos img {
    width: 250px;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav a {
    height: auto;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.1rem;
    color: white;
    border-radius: 10px;
    text-transform: uppercase;
}

.nav-link:hover {
    border: solid white 2px;
    color: white;
    border-radius: 45px;
    transition: background-color 0.3s ease;
}

.nav-item {
    min-width: 110px;
}

.creative {
    color: #fff;
}

.navbar-toggler {
    background-color: #d8d8d8;
}

.btn-orange {
    display: inline-block;
    background-color: #ea943b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
}

.btn-orange:hover {
    background-color: #ffa23e;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(234, 148, 59, 0.6);
}


.btn-blue {
    display: inline-block;
    background-color: #3b72ea;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(59, 71, 234, 0.45);
    border: none;
}

.btn-blue:hover {
    background-color: #3e6bff;
    box-shadow: 0 10px 22px rgba(59, 71, 234, 0.45);
}

.btn-blue::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.form__subtitle {
    font-size: 2rem;
}

.form__subtitle {
    font-size: 1.1rem;
    margin: .5rem 0;
}

.main-container {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 115vh;
    position: relative;
    padding: 1.5rem;
    overflow: hidden;
}

.main-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/201071-Zacatecas.png");
    z-index: -1;
}

.content-text-main {
    display: flex;
    flex-direction: column;
    padding: 3vh;
    align-items: center;
    justify-content: center;
}

.content-text-main h1 {
    margin-bottom: 2rem;
    font-size: 4.8rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #e26a07 0%, #ffab00 50%, #913b34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 8px rgba(87, 87, 87, 3)) drop-shadow(0px 0px 15px rgba(255, 223, 159, 0.26));
}

.content-text-main h2 {
    font-size: 3rem;
    color: #414349;
    font-weight: 600;
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
    text-shadow:
        0 0 20px rgba(255, 171, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2),
        3px 3px 4px rgba(0, 0, 0, 0.2);
}

.forming a {
    display: inline-block;
    margin-top: 18px;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.forming:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.link-primary-password {
    color: #003cff;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.link-primary-password::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #003cff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.link-primary-password:hover::after {
    transform: scaleX(1);
}

.link-primary-password:hover {
    color: #0036e9;
}

.link-secondary-portal {
    color: #e45a1a;
    font-size: 13px;
    position: relative;
}

.link-secondary-portal::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #ee5711;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.link-secondary-portal:hover::after {
    transform: scaleX(1);
}

.link-secondary-portal:hover {
    color: #ff7300;
}

.forming a:focus {
    outline: 2px solid rgba(255, 122, 0, 0.4);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .forming a {
        font-size: 15px;
    }
}

.ahorro-content {
    background: #ffffff;
    position: absolute;
    top: 930px;
    text-align: center;
    height: fit-content;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 10px 15px -4px rgb(0 0 0/ 30%);
}

.ahorro-content h2 {
    font-size: 55px;
    line-height: 70px;
    color: #ff8502;
    margin-bottom: 55px;
}

.txt-p {
    font-size: 3vh;
    color: #6c6b71;
    margin-bottom: 35px;
    text-align: center;
}

.ahorro {
    height: 50vh;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.ahorro-1 img {
    width: 200px;
}

.ahorro-img img {
    position: absolute;
    top: 0;
    right: 0;
}

.contenedor_pasos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
}

.paso h4 {
    font-weight: 600;
}

.paso {
    padding: 15px;
    display: grid;
    grid-template-rows: 55% 20% 25%;
    text-align: center;
    justify-items: center;

}

.paso_img_fondo {
    background-color: #fff0d5;
    border-radius: 50%;
    width: 14vh;
    height: 14vh;
}

.valores {
    height: 100%;
    width: 85%;
    justify-items: center;
    border-radius: 20px;
}

.valores:hover .valores__img img {
    transform: rotate(360deg) scale(1.1);
}

.contenedor__valores {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}

.valores__img {
    padding: 25px;
    transition: transform 0.3s ease;
}

.valores__inf {
    padding: 25px;
}

.valores__inf h3 {
    color: #904323;
    font-weight: 600;
}

.form img {
    width: 150px;
}

.ahorro-1 h3 {
    color: #323337;
    font-size: 20px;
    margin-bottom: 15px;
}

.ingresar {
    height: 90vh;
}

.ingresar-content {
    display: grid;
    padding: 115px 30px 20px 30px;
}

.informa {
    display: grid;
    width: 100%;
    grid-template-rows: 20% 20% 60%;
}

.iniciarbtn {
    margin: 20px;
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    height: 95vh;
}

.section-services {
    text-align: center;
}

.section-services h2 {
    font-size: 55px;
    line-height: 70px;
    color: #3d3a37;
    margin-bottom: 50px;
}

.section-services p {
    color: #3d3a37;
    margin: 10px 0;

}

.services-group {
    display: grid;
    gap: 3rem;
    padding: 1rem 2.5rem;
    justify-content: space-around;
    margin-top: 50px;
    grid-template-columns: 1fr 1fr 1fr;
}

.services-1 {
    display: grid;
    height: 40vh;
    padding: 2vh;
    justify-items: center;
    grid-template-rows: 45% 20% 20%;
    border: 3px solid #ffa200;
    border-radius: 30px;
    width: 500px;
}

.services-1 img {
    width: 15vh;
}

.services-1 h3 {
    color: #ff9850;
    font-size: 3vh;
}

.servicios_contendor p {
    font-size: 2.5vh;
    margin: 0;
    color: white;
}

.general {
    width: 100%;
    height: 90vh;
}

.general-fondo {
    width: 100%;
    margin: auto;
    padding: 3rem;
    display: grid;
    background: linear-gradient(135deg, #e86300, #78350f);
    grid-template-columns: 1fr 1fr;
    height: 90vh;
}

.presdescrip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.presdescrip h2 {
    font-size: 55px;
    color: white;
}

.presdescrip p {
    font-size: 1.2rem;
    color: white;
}

.forming {
    background-color: #fefefeeb;
    min-width: 450px;
    height: auto;
    padding: 2rem;
    box-shadow: 0 10px 15px -4px rgb(0 0 0/ 30%);
    text-align: center;
    font-size: 1.1rem;
    border-radius: 25px;
    filter: saturate(125%);
}

.forming p {
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
}

.form_title {
    font-size: 2rem;
    margin-bottom: .5em;
}

.form__paragraph {
    font-weight: 300;
}

.form__link {
    font-weight: 400;
    color: #000;
}

.form_container {
    margin-top: 3em;
    display: grid;
    gap: 2.5em;
}

.form__group {
    position: relative;
    font-size: 1em;
    padding: 1em .3em;
    border: none;
    outline: none;
    font-family: 'robot', sans-serif;
}

.form__input {
    width: 100%;
    color: #706c6c;
    font-size: 1rem;
    padding: 1em .3em;
    outline: none;
    font-family: 'Robot', sans-serif;

}

.custom-select-container {
    position: relative;
    display: inline-block;
}

select {
    width: 200px;
    padding: 10px;
    padding-right: 30px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form__input:focus+.form__label {
    transform: translateY(-12px) scale(.8);
    transform-origin: left top;
    color: #f29838;
}

.form__label {
    padding: 0 15px;
    font-size: 1.1rem;
    color: #4a4a4a;
    padding: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form__ingre {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.form__img {
    height: 120px;
    margin: 8 16px;
}

.main__img {
    width: 330px;
    height: 270px;
}

.proceso {
    background-color: #fafafa;
    background-size: cover;
    height: 90vh;
}

.proceso_content {
    display: grid;
    padding: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    width: 100%;

}

.list__arrow {
    width: 15px;
    height: 15px;
}

.detail {
    line-height: 2;
    color: white;
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: 0.3s ease;
    align-items: center;
}

.detail:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.blog {
    padding: 110px 20px 30px 20px;
    text-align: center;
}

.blog-content {
    width: 35vh;
    height: 35vh;
    display: inline-block;
    text-align: center;
    background-color: #f2f3f4;
    border-radius: 50%;
}

.blog h2 {
    color: #000;
    font-size: 55px;
}

.blog-1 h3,
.icon_proc {
    position: relative;
    z-index: 1;
    transform: translateY(6vh);
    transition: all 300ms;
}

.blog-1:hover .icon_proc {
    transform: translateY(0);
    color: white;
}

.blog-1:hover h3 {
    transform: translateY(0);
    color: white;
}

.blog-1:hover p {
    transform: translateY(0);
    color: white;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.blog-1:hover path {
    fill: white;
}

.blog-1 p {
    transform: translateY(25vh);
    opacity: 0;
    transition: all 300ms;
}

.blog-1 {
    width: 35vh;
    height: 35vh;
    display: inline-block;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;

}

.blog-1 h3 svg {
    width: 3vh;
    height: 3vh;
    border-radius: 50%;
    border: solid 2px;
}

.background-hover {
    width: 100%;
    height: 100%;
    background: #ffab5c;
    position: absolute;
    top: 50vh;
    left: 0px;
    transition: all 500ms;
    border-radius: 50%;
}

.blog-1:hover .background-hover {
    width: 160%;
    height: 40vh;
    top: 0vh;
    left: -10vh;
}

.icon_proc {
    margin: 10px;
}

.swauno {
    background-image: url(./img/fondo3.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: skew(21deg);
}

.swados {
    position: absolute;
    bottom: 0;
    left: 0;
    border-width: 15vh 0 0 100vw;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    transform: skew(21deg);
}

.contactanos {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.contactanos::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/201071-Zacatecas.png");
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(2);
    z-index: -1;
}

.contact__contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    height: 100%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.4);
}

.continfo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.continfo p {
    color: #0e0e15;
}

.fondo_cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fondo_cont img {
    width: 80%;
    margin-top: 20px;
}

.formulario {
    width: 70%;
    max-width: 500px;
    background: #ffffffcc;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    transition: transform 0.3s ease;
    text-align: center;
}

.formulario label {
    font-size: 1rem;
    font-weight: 600;
}

.form {
    padding: 8px 45px;
    margin: 65px 0 0px 100px;
    text-align: center;
    border-radius: 20px;
    width: 65vh;
    height: 70vh;
}

.fondo_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-control {
    border-radius: 12px;
    padding: 12px;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3b72ea;
    box-shadow: 0 0 0 3px rgba(59, 114, 234, 0.2);
}

.contact__contenedor h2 {
    color: #ffffff;
    font-size: 55px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link {
    position: absolute;
    top: -70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    background-color: #4f5050;
}

.link ul {
    padding: 0;
    margin: 0;
}

.link a {
    text-decoration: none;
    color: #d8d8d8;
}

.link::before,
.link::after {
    content: "";
    height: 1.5px;
    background-color: #d8d8d8;
    display: block;
}

.carousel {
    display: flex;
    align-items: center;
}

.carousel img {
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.carousel-item {
    padding: 3rem;
}

[id] {
    scroll-margin-top: 100px;
}