/********** Template CSS **********/
@font-face {
    font-family: 'konkret-grotesk-pro';
    src: url('/fonts/Konkret-Grotesk-Pro-Light.woff2') format('woff2'),
        url('/fonts/Konkret-Grotesk-Pro-Light.woff') format('woff');
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'konkret-grotesk-pro';
    src: url('/fonts/Konkret-Grotesk-Pro-Regular.woff2') format('woff2'),
        url('/fonts/Konkret-Grotesk-Pro-Regular.woff') format('woff');
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'konkret-grotesk-pro';
    src: url('/fonts/Konkret-Grotesk-Pro-Medium.woff2') format('woff2'),
        url('/fonts/Konkret-Grotesk-Pro-Medium.woff') format('woff');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'konkret-grotesk-pro';
    src: url('/fonts/Konkret-Grotesk-Pro-Bold.woff2') format('woff2'),
        url('/fonts/Konkret-Grotesk-Pro-Bold.woff') format('woff');
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'konkret-grotesk-pro';
    src: url('/fonts/Konkret-Grotesk-Pro-ExtraBold.woff2') format('woff2'),
        url('/fonts/Konkret-Grotesk-Pro-ExtraBold.woff') format('woff');
    font-weight: 800;
    /* ExtraBold */
    font-style: normal;
}


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Opcional: Reset de la tipografía */
body {
    margin: 0;
    padding: 0;
    line-height: 1;
    background: none;
    color: inherit;
    font-family: 'konkret-grotesk-pro', sans-serif;
    font-weight: 400;
    /* Regular por defecto */
}

.overlay {
    background-color: #0000006e;
    position: absolute;
    z-index: 8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

/* Eliminar estilos de enlaces */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset de inputs y botones */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Eliminar borde en imágenes */
img {
    max-width: 100%;
    display: block;
}

:root {
    --primary: #5555CE !important;
    --text: #252566 !important;
    --highlighs: #FF9A3E !important;
    --background: #D7D7F4 !important;
    --light: #FFFFFF !important;
    --background_alt: #9595E0 !important;
}

.spacer56 {
    display: block;
    height: 56px;
}

.spacer64 {
    display: block;
    height: 64px;
}

.spacer100 {
    display: block;
    height: 100px;
}

.spacer120 {
    display: block;
    height: 120px;
}

.bg-white {
    background-color: var(--light) !important;
}

.bg-main {
    background-color: var(--primary) !important;
}

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

.bg-text {
    background-color: var(--text) !important;
}

.active {
    color: #ff993d !important;
    font-weight: bold !important;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    color: #5454cd;
    font-weight: 600;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    color: #5454cd;
    font-weight: 500;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    color: #5454cd;
    font-weight: 400;
}

.eyebrow {
    color: var(--primary);
    font-size: 27px;
    letter-spacing: 1.73px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 11px;
}

.main_container {
    width: 100%;
    padding-left: 54px;
    padding-right: 54px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.section {
    display: flex;
    align-self: center;
    max-width: 1600px;
    width: 100%;
    flex-direction: row;
}


.btn {
    font-family: 'konkret-grotesk-pro', sans-serif;
    display: inline-block;
    padding: 18px 29px;
    border-radius: 50px;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -0.35px;
    font-weight: 500;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
    cursor: pointer;
}

.btn:hover {
    background: var(--highlighs);
}

.btn-alt {
    font-family: 'konkret-grotesk-pro', sans-serif;
    display: inline-block;
    padding: 18px 29px;
    border-radius: 50px;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -0.35px;
    font-weight: 500;
    color: var(--light);
    background: var(--highlighs);
    transition: .5s;
    cursor: pointer;
}

.btn-alt:hover {
    background: var(--primary);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.back-to-top:hover {
    background-color: var(--text) !important;
}

.icon-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: var(--light);
    border-radius: 100px;
    transition: .5s;
    box-shadow: 6px 10px 12px #00000014;
    overflow: hidden;
    min-width: 130px;
    min-height: 130px;
}

.icon-background img {
    width: 100%;
    min-width: 68px;
    flex-shrink: 0;
    max-width: 100%;
    height: auto;
    max-height: 68px;
}

/*** 404 ***/

.error404 .right-img {
    width: 50vw;
}

/*** FAQ ***/
.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    gap: 15px;
}

.faq-title {
    flex: 1;
    color: var(--text);
    font-size: 35px;
    line-height: 47px;
    letter-spacing: 0.56px;
    font-weight: 700;
}

.faq-image {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 20px;
    color: var(--text);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.faq-content p {
    padding-top: 20px;
    color: var(--text);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.faq-content ul {
    padding-top: 20px;
    color: var(--text);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-left: 21px;
}

.faq-content ol {
    padding-top: 20px;
    color: var(--text);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.faq-content li {
    padding-top: 20px;
    color: var(--text);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

/*** Spinner ***/

#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-border {
    position: relative;
    border: 4px solid transparent;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.spinner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-size: contain;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*** Nav Menu ***/
.nav-item {
    text-align: center;
}

.nav-link {
    color: var(--primary);
    font-weight: 700;
    margin-right: 40px;
    padding: 30px 0;
    text-transform: uppercase;
    outline: none;
    font-size: 20px;
    letter-spacing: 1.28px;
    transition: margin .5s;
}

.nav-item .active {
    color: var(--highlighs);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    /* Asegura que el navbar esté sobre otros elementos */
    width: 100%;
    /* Asegura que ocupe todo el ancho */
    padding: 20px 54px 20px 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand-container {
    display: flex;
    align-items: center;
}

.navbar-collapse-container {
    display: flex;
    align-items: center;
    background-color: var(--light);
    transition: max-height 0.5s ease-in-out;
}

.navbar-collapse-container.show {
    max-height: 500px;
    /* Ajusta según el contenido del menú */
}

.navbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: inherit;
    flex-direction: row;
}

.shadow-sm {
    padding: 10px 54px 10px 54px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1763px;
}

.navbar-toggler {
    display: none;
    border: none;
    color: var(--primary);
    border-radius: 5px;
    font-size: 20px;
}

.navbar-toggler:hover {
    color: var(--text);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--text);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}


/*** Language Selector ***/

.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.28px;
    color: var(--primary);
}

.language-selector .selected-language {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.language-selector .selected-language img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    margin-bottom: 2px;
}

.language-selector .dropdown {
    flex-direction: column;
    z-index: 99;
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #00000014;
    border-radius: 5px;
    width: 93px;
    top: -5px;
    left: 59%;
    transform: translate(-50%, -5%);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.language-selector .dropdown a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: var(--primary);
}

.language-selector .dropdown a:hover {
    color: var(--text);
}

.language-selector .dropdown img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    margin-bottom: 2px;
}

/*** ------------------------------------------------------------- Politicas y Condiciones ***/

.politicas,
.condiciones {
    display: flex;
    flex-direction: column;
}

.politicas h1,
.condiciones h1 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: 700;
    margin-bottom: 50px;
}

.politicas p,
.condiciones p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.politicas a,
.condiciones a {
    color: var(--highlighs);
}

.politicas a:hover,
.condiciones a:hover {
    color: var(--primary);
}


/** ------------------------------------------------------------- Footer ***/

footer {
    background-color: var(--text);
    min-height: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-section {
    position: relative;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 20px;
    z-index: 10;
}

.footer-pages {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    text-transform: uppercase;
}

.footer-pages a {
    color: var(--light);
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.45px;
    font-weight: 700;
}

.footer-pages a:hover {
    color: var(--highlighs);
}

.footer-legals {
    color: var(--light);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    width: 100%;
    z-index: 10;
}

.footer-legals a {
    color: var(--light);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.38px;
    font-weight: 700;
}

.footer-legals a:hover {
    color: var(--highlighs);
}

.footer-map {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--light);
}

.footer-map p {
    font-size: 16px;
    font-weight: 500;
}

.footer-map a {
    color: var(--light);
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.45px;
    font-weight: 700;
}

.footer-map a:hover {
    color: var(--highlighs);
}

.footer-map-right {
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.footer-map-right a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.footer-map-right a:hover {
    color: var(--highlighs);
}

.footer-map-right a img {
    width: 30px;
    height: 30px;
    object-fit: fill;
}

.footer-map-right a .img-footer {
    background-color: var(--light);
    border-radius: 100%;
    padding: 6px;
    flex-shrink: 0;
}

/*** ------------------------------------------------------------- Home ***/

.home-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(100vh - 120px);
    overflow: hidden;
    padding: 50px 0 50px 54px;
}


.home-hero-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 50vw;
}

.home-hero-title h1 {
    color: var(--light);
    font-size: 103px;
    line-height: 101px;
    font-weight: bold;
}

.home-hero-description {
    margin-top: 52px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 680px;
}

.home-hero-description h3 {
    color: var(--light);
    font-size: 40px;
    letter-spacing: -0.64px;
    line-height: 64px;
    font-weight: 300;
}

.home-hero .intcommebolt {
    width: 32.21px;
    margin-right: 37px;
    flex-shrink: 0;
    margin-top: 14px;
    max-width: 100%;
    height: auto;
}

.home-hero .intcommebolt2 {
    display: none;
    width: 32.21px;
    flex-shrink: 0;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.home-hero .left-text {
    max-width: 50vw;
    padding-left: calc((100vw - 1730px) / 2);
    /* Centrar como si estuviera en un contenedor de 1600px */
    padding-right: 2rem;
}

.home-hero .right-img {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.home-hero .right-img .hero-image-bg {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* Ajusta la imagen para cubrir el contenedor sin distorsión */
    padding-right: 20px;
}

.home-hero .right-img .hero-image-floating {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
    width: 50%;
    /* Ajusta el tamaño de la imagen */
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.home-introduction {
    gap: 30px;
}

.home-introduction .left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 50vw;
}

.home-introduction .left-text h2 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: 700;
    margin-bottom: 32px;
}

.home-introduction .left-text p {
    color: var(--text);
    font-size: 24px;
    letter-spacing: -0.38px;
    line-height: 32px;
    font-weight: 400;
    max-width: 585px;
    margin-bottom: 64px;
}

.home-introduction .right-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 50vw;
}

.grid-list {
    gap: 30px;
    flex-direction: column;
    color: var(--primary);
}

.grid-list h2 {
    font-size: 74px;
    line-height: 89px;
    font-weight: 700;
    margin-bottom: 32px;
}

.grid-list-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 40px;
}

.grid-list-cards a:hover p.grid-btn {
    background-color: var(--highlighs);
}

.grid-list-cards a:hover h3 {
    color: var(--highlighs);
}

.grid-btn {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -0.35px;
    font-weight: 500;
    color: var(--light);
    background: var(--primary);
    width: max-content;
    width: fit-content;
    transition: .5s;
}

.grid_element {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.grid_element_home {
    align-items: center;
}

.grid_element_home .grid_element-description{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.grid_element-description {
    display: flex;
    flex-direction: column;
}

.grid_element-description h3 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 18px;
    transition: .5s;
}

.grid_element_home .grid_element-description h3 {
    margin-bottom: 0;
}


.grid_element-description p {
    font-size: 18px;
    letter-spacing: 0.29px;
    line-height: 24px;
    font-weight: 400;
}

.center-fullwith-sections {
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 54px 0 0;
}

.home-more_solutions {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.home-more_solutions .left-img {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-right: 6vw;
}

.home-more_solutions .left-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.home-more_solutions .right-text {
    padding-left: 50px;
    max-width: 55vw;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: calc((100vw - 1700px) / 2);
}

.home-more_solutions-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 50vw;
}

.home-more_solutions-title h2 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
}

.home-more_solutions-description {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 660px;
    gap: 64px;
}

.home-more_solutions-description p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.home-comoAyudar {
    background-image: url("/img/home/Imagen 3- INICIO.png");
    background-color: var(--text);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1000px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.comoAyudar-svg {
    width: 180px;
    left: 0;
    top: 50px;
    position: absolute;
}

.relleno {
    width: 50%;
}

.comoAyudar-text {
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.comoAyudar-text h2 {
    color: var(--light);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 40px;
    max-width: 840px;
}

.center-fullwith-sections-alt {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    padding: 0px 0 0px 54px;
}

.home-beneficios1 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.home-beneficios1 .right-img {
    width: 50vw;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.home-beneficios1 .right-img .hero-image-bg {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.home-beneficios1 .right-img .hero-image-floating {
    position: absolute;
    top: initial;
    bottom: 100px;
    left: 0;
    transform: none;
    max-width: 790px;
    width: 100%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.home-beneficios1 .left-text {
    max-width: 50vw;
    padding-left: calc((100vw - 1730px) / 2);
    padding-right: 2rem;
}

.home-beneficios1 .left-text h2 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 14px;
}

.home-beneficios1 .left-text h4 {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 39px;
}

.home-beneficios1 .left-text p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-bottom: 33px;
}

.home-beneficios1 .left-text ul {
    margin-bottom: 71px;
    margin-left: 21px;
}

.home-beneficios1 .left-text li {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

/*** ------------------------------------------------------------- Quienes somos ***/

.nosotros-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.nosotros-hero .right-img {
    width: 44vw;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.nosotros-hero .right-img .hero-image-bg {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.nosotros-hero .right-img .hero-image-floating {
    position: absolute;
    top: initial;
    bottom: 100px;
    left: 0;
    transform: none;
    max-width: 718px;
    width: 100%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.nosotros-hero .left-text {
    max-width: 50vw;
    padding-left: calc((100vw - 1730px) / 2);
    padding-right: 2rem;
}

.nosotros-hero .left-text h1 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 14px;
    margin-bottom: 100px;
}

.nosotros-hero .left-text h4 {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 39px;
}

.nosotros-hero .left-text p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-bottom: 33px;
}

.nosotros-hero .left-text ul {
    margin-bottom: 71px;
    margin-left: 21px;
}

.nosotros-hero .left-text li {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.mision-vision-main {
    width: 100%;
    padding-left: 0;
    padding-right: 54px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.mision-vision-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    gap: 7vw;
}

.mision-vision-container img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.mision-vision-container h2 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 14px;
    margin-bottom: 90px;
}

.mision-vision-container h4 {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}

.mision-vision-container p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-bottom: 18px;
}

.mision-vision-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
    min-height: auto;
    overflow: hidden;
    gap: 5vw;
}

.mision-vision-actividades {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 60vw;
    min-height: auto;
    overflow: hidden;
    margin-bottom: 120px;
    margin-top: 120px;
}

.mision-vision-actividades-list {
    max-width: 625px;
}

.mision-vision-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 40vw;
    margin-bottom: 120px;
    margin-top: 120px;
}

.mision-vision-description h4 {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.mision-vision-description p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-bottom: 0;
}

.mision-vision-actividades ul {
    margin-bottom: 71px;
    margin-left: 21px;
}

.mision-vision-actividades li {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.objetivo-container {
    overflow: hidden;
    background: rgb(85, 85, 206);
    background: linear-gradient(90deg, rgba(85, 85, 206, 1) 40vw, rgba(215, 215, 244, 1) 40vw);
}

.objetivo-introduction {
    gap: 15vw;
}

.objetivo-introduction .left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 75vw;
    position: relative;
    background-color: var(--primary);
}

.objetivo-introduction .left-text h2 {
    color: var(--light);
    font-size: 70px;
    line-height: 89px;
    font-weight: 700;
    margin-bottom: 32px;
    z-index: 10;
}

.objetivo-introduction .left-text p {
    color: var(--light);
    font-size: 24px;
    letter-spacing: 0.38px;
    line-height: 32px;
    font-weight: 300;
    max-width: 585px;
    margin-bottom: 64px;
    z-index: 10;
}

.objetivo-introduction .right-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 35vw;
    position: relative;
}

.objetivo-introduction .right-img img {
    z-index: 2;
}

.objetivo-introduction .objetivo-circle {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translate(50%, -50%);
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.objetivo-float {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*** ------------------------------------------------------------- Solutions ***/

.solutions-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(100vh - 120px);
    overflow: hidden;
    padding: 50px 0 50px 54px;
    position: relative;
    background: url("/img/soluciones/imagen1-SOLUCIONES.png") no-repeat center center;
    background-size: cover;
}


.solutions-hero-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 50vw;
    width: 445px;
}

.solutions-hero-title h1 {
    color: var(--light);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
}

.solutions-hero-description {
    margin-top: 52px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 530px;
}

.solutions-hero-description p {
    color: var(--light);
    font-size: 24px;
    letter-spacing: 0.38px;
    line-height: 32px;
    font-weight: 300;
}

.solutions-hero .left-text {
    max-width: 50vw;
    padding-left: calc((100vw - 1500px) / 2);
    /* Centrar como si estuviera en un contenedor de 1600px */
    padding-right: 2rem;
    z-index: 10;
}

.solutions-hero .right-img {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50vw;
}


.solutions-hero .right-img .hero-image-floating {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
    width: 65%;
    /* Ajusta el tamaño de la imagen */
    z-index: 2;
    transition: transform 0.1s ease-out;
    max-width: 580px;
}

.solutions-float-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 25vw;
    max-width: 421px;
    min-width: 65px;
}

.solutions-float-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 21vw;
    max-width: 420px;
    min-width: 65px;
}

.solutions-comoAyudar {
    background-image: url("/img/soluciones/Imagen 2- SOLUCIONES.png");
    background-color: var(--text);
    background-repeat: no-repeat;
    background-position: 76%;
    background-size: cover;
    height: 1000px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: flex-start;
    padding-left: 54px;
}

.solutions-comoAyudar .relleno {
    width: 30%;
}

.solutions-comoAyudar .comoAyudar-text {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    max-width: 60vw;
    padding-left: calc((100vw - 1500px) / 2);
    /* Centrar como si estuviera en un contenedor de 1600px */
    padding-right: 2rem;
    z-index: 10;
    width: 100%;
}

.solutions-comoAyudar .comoAyudar-text h2 {
    color: var(--light);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 40px;
    max-width: 840px;
}


/*** ------------------------------------------------------------- Beneficios ***/

.beneficios-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(100vh - 120px);
    overflow: hidden;
    padding: 50px 0 50px 54px;
    position: relative;
}


.beneficios-hero-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 50vw;
    width: 714px;
}

.beneficios-hero-title h1 {
    color: var(--light);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
}

.beneficios-hero-description {
    margin-top: 52px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 660px;
}

.beneficios-hero-description p {
    color: var(--light);
    font-size: 24px;
    letter-spacing: 0.38px;
    line-height: 32px;
    font-weight: 300;
}

.beneficios-hero .left-text {
    max-width: 50vw;
    padding-left: calc((100vw - 1500px) / 2);
    /* Centrar como si estuviera en un contenedor de 1600px */
    padding-right: 2rem;
    z-index: 10;
}

.beneficios-hero .right-img {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50vw;
}


.beneficios-hero .right-img .hero-image-floating {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
    width: 65%;
    /* Ajusta el tamaño de la imagen */
    z-index: 2;
    transition: transform 0.1s ease-out;
    max-width: 580px;
}

.beneficios-float-1 {
    position: absolute;
    bottom: 0;
    left: 30vw;
    width: 30vw;
    max-width: 421px;
    min-width: 160px;
}

.beneficios-float-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 7vw;
    max-width: 150px;
    min-width: 65px;
}

/*** -------------------------------------------como podemos financiar banner ***/
.comoFinanciar-banner {
    gap: 8vw;
}

.comoFinanciar-banner .right-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 50vw;
    gap: 30px;
}

.comoFinanciar-banner .right-text h2 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: 700;
}

.comoFinanciar-banner .right-text p {
    color: var(--text);
    font-size: 24px;
    letter-spacing: -0.38px;
    line-height: 32px;
    font-weight: 400;
    max-width: 676px;
}

.comoFinanciar-banner .right-text h3 {
    color: var(--primary);
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 660px;
}

.comoFinanciar-banner .left-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 50vw;
}

/*** ------------------------------------------------ Como ayudar a nuestros clientes ***/

.ayudar-introduction .left-text h1 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: 700;
    margin-bottom: 32px;
}

.ayudar-introduction .left-text p {
    color: var(--text);
    font-size: 24px;
    letter-spacing: 0.38px;
    line-height: 32px;
    font-weight: 400;
    max-width: 660px;
    margin-bottom: 64px;
}

.ayudar-grid .grid-list {
    gap: 30px;
    flex-direction: column;
    color: var(--light);
    font-weight: 300;
}

.ayudar-grid .grid-list h2 {
    font-size: 55px;
    line-height: 68px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--light);
}

.ayudar-grid .grid_element-description p {
    font-weight: 300;
}

.ayudar-grid .grid-list h3 {
    color: var(--light);
}

.ayudar-cotiza-main {
    width: 100%;
    padding-left: 0;
    padding-right: 54px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.ayudar-cotiza-main .img-floating {
    bottom: 0;
    right: 0;
    width: 320px;
    max-width: 100%;
    height: auto;
    position: absolute;
}

.ayudar-cotiza-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    gap: 2vw;
    z-index: 10;
}

.ayudar-cotiza-container .left-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}


.ayudar-cotiza-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: hidden;
    gap: 5vw;
}

.ayudar-cotiza-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50vw;
    min-height: auto;
    overflow: hidden;
    margin-bottom: 120px;
    margin-top: 120px;
}

.ayudar-cotiza-banner h4 {
    color: var(--text);
    font-size: 35px;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 34px;
}

.ayudar-cotiza-banner h2 {
    color: var(--text);
    font-size: 56px;
    line-height: 70px;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 52px;
}

/*** -------------------------------------------------------------------- Contact ***/

.contact-map {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: var(--primary);
}

.contact-map img {
    width: 100%;
    max-width: 2600px;
    height: auto;
    object-fit: cover;
}

.contact-form-main {
    width: 100%;
    padding-left: 54px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.contact-form-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.contact-form-container img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.contact-form-container h2 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 32px;
}

.contact-form-container h4 {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-form-container p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-bottom: 18px;
}

.contact-form-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    min-height: auto;
    overflow: hidden;
    gap: 5vw;
}

.contact-form-actividades {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 50vw;
    min-height: auto;
    overflow: hidden;
    margin-bottom: 120px;
    margin-top: 120px;
}

.contact-form-actividades-list {
    max-width: 625px;
}

.contact-form-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 50vw;
    padding: 120px 95px 120px 95px;
    background-color: var(--background_alt);
}

.contact-form-description h4 {
    color: var(--light);
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form-description form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.contact-form-description .nombre,
.contact-form-description .email,
.contact-form-description .mensaje {
    border-radius: 50px;
    background-color: var(--background);
    color: var(--primary);
    font-weight: 300;
    padding: 26px 36px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    border: none;
    letter-spacing: 1.15px;
}

.contact-form-description .error {
    color: var(--highlighs);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.15px;
    font-weight: 400;
}

.contact-form-description .success {
    color: var(--light);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.15px;
    font-weight: 300;
}

.contact-form-actividades ul {
    margin-bottom: 71px;
    margin-left: 21px;
}

.contact-form-actividades li {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.contact-extra-info {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.contact-extra-info .left-img {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-right: 6vw;
}

.contact-extra-info .left-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: right center;
    padding-right: 0;
}

.contact-extra-info .left-img .hero-image-floating {
    display: none;
    position: absolute;
    top: initial;
    bottom: 100px;
    left: 0;
    transform: none;
    max-width: 500px;
    width: 100%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.contact-extra-info .right-text {
    padding-left: 50px;
    max-width: 55vw;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: calc((100vw - 1700px) / 2);
}

.contact-extra-info .contact-pills {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 20px;
}

.contact-extra-info .contact-pill {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 15px;
    border-radius: 100px;
    background-color: var(--background);
    color: var(--primary);
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.15px;
    min-height: 160px;
}

.contact-pill-text h4 {
    color: var(--primary);
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 1.6px;
    font-weight: 300;
}

.contact-pill-text p {
    color: var(--primary);
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 2.24px;
    font-weight: 700;
}

.contact-pill-text p.mail {
    color: var(--primary);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2.24px;
    font-weight: 700;
}

.contact-pill-text span {
    color: var(--primary);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.15px;
    font-weight: 300;
}

.more-contact-locations-container {
    gap: 80px;
    justify-content: space-evenly;
    align-items: center;
}

.more-contact-location {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.more-contact-location h4 {
    color: var(--primary);
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 1.6px;
    font-weight: 500;
}

.more-contact-location p {
    color: var(--primary);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.15px;
    font-weight: 300;
}

/*** ------------------------------------------------------------- Sectores ***/

.sectores-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.sectores-hero .right-img {
    width: 44vw;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.sectores-hero .right-img .hero-image-bg {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding-right: 0;
}

.sectores-hero .right-img .hero-image-floating {
    position: absolute;
    top: initial;
    bottom: 60px;
    left: 0;
    transform: none;
    max-width: 629px;
    width: 100%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.sectores-hero .left-text {
    flex-direction: column;
    display: flex;
    max-width: 50vw;
    padding-left: calc((100vw - 1530px) / 2);
    padding-right: 2rem;
}

.sectores-hero .left-text h1 {
    color: var(--text);
    font-size: 70px;
    line-height: 89px;
    font-weight: bold;
    margin-bottom: 14px;
    margin-bottom: 100px;
}

.sectores-hero .left-text h4 {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 39px;
}

.sectores-hero .left-text a {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 39px;
}

.sectores-hero .left-text p {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
    margin-bottom: 33px;
}

.sectores-hero .left-text ul {
    margin-bottom: 71px;
    margin-left: 21px;
}

.sectores-hero .left-text li {
    color: var(--text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.38px;
    font-weight: 400;
}

.sectores-automotriz {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

.sectores-automotriz .left-img {
    width: 50vw;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.sectores-automotriz .left-img .hero-image-bg {
    max-width: 100%;
    background-position: left top;
    background-repeat: repeat-y;
    background-size: auto;
    background-image: url("/img/sectores/Grafico-1.png");
    width: 100%;
}

.sectores-automotriz .left-img .hero-image-floating {
    position: absolute;
    top: initial;
    bottom: 0;
    left: 0;
    transform: none;
    max-width: 955px;
    height: 100%;
    object-fit: none;
    object-position: bottom right;
    width: 100%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.sectores-automotriz .right-text {
    max-width: 45vw;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: calc((100vw - 1700px) / 2);
    min-height: 1000px;
}

.sectores-automotriz .right-text h3 {
    color: var(--text);
    font-size: 50px;
    line-height: 42px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 56px;
}

.sectores-right-image {
    gap: 8vw;
    z-index: 10;
}

.sectores-right-image-float {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 320px;
}

.sectores-right-image .right-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 50vw;
}

.sectores-right-image .left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 50vw;
}

.sectores-right-image .left-text h3 {
    color: var(--text);
    font-size: 50px;
    line-height: 42px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 56px;
}

.sectores-wellness-container {
    overflow: hidden;
    background: rgb(85, 85, 206);
    background: linear-gradient(90deg, rgba(85, 85, 206, 1) 35vw, rgb(255, 255, 255) 35vw);
    padding-left: 0;
    justify-content: stretch;
}

.sectores-wellness-introduction {
    gap: 15vw;
    flex-direction: row-reverse;
}

.sectores-wellness-introduction .left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 75vw;
    position: relative;
}

.sectores-wellness-introduction .left-text h3 {
    color: var(--text);
    font-size: 50px;
    line-height: 42px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 56px;
}


.sectores-wellness-introduction .right-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 87%;
    max-width: 35vw;
    position: relative;
    /* height: 100%; */
}

.sectores-wellness-introduction .right-img img.persona {
    z-index: 2;
    width: 380px;
}

.sectores-wellness-circle {
    position: absolute;
    top: 0;
    left: 34.9vw;
    /* transform: translate(50%, -50%); */
    height: 100%;
    object-fit: contain;
    padding-right: 0;
    width: auto !important;
}

/*** ------------------------------------------------------------- Procesos ***/

.procesos-flujo {
    gap: 5vw;
}

.procesos-flujo .right-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 30%;
    gap: 30px;
}

.procesos-flujo .right-text h2 {
    color: var(--text);
    font-size: 50px;
    line-height: 68px;
    font-weight: 700;
    hyphens: auto;
}


.procesos-flujo .right-text h3 {
    color: var(--primary);
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 660px;
}

.procesos-flujo .left-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.procesos-flujo .left-img img {
    width: 100%;
}

.procesos-flujo.flujo-inverso {
    flex-direction: row-reverse;
}

/*** ------------------------------------------------------------- Landing Gracias ***/

.thanks-hero-description {
    margin-top: 52px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 680px;
}

.thanks-hero-description h3 {
    color: var(--light);
    font-size: 30px;
    letter-spacing: -0.64px;
    line-height: 40px;
    font-weight: 300;
}

/*** Mobile ***/


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

    /*-- Global --*/

    .eyebrow {
        color: var(--primary);
        font-size: 20px;
        letter-spacing: 1.73px;
    }

    .spacer100 {
        display: block;
        height: 64px;
    }

    .spacer120 {
        display: block;
        height: 64px;
    }

    .icon-background {
        padding: 10px;
        min-width: 100px;
        min-height: 100px;
    }

    .icon-background img {
        min-width: 60px;
        max-height: 60px;
    }


    /*-- FAQ --*/

    .faq-image {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }

    .faq-title {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 0.56px;
        font-weight: 700;
    }

    .faq-content {
        padding-top: 10px;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .faq-content p {
        padding-top: 10px;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .faq-content ul {
        padding-top: 10px;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .faq-content ol {
        padding-top: 10px;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .faq-content li {
        padding-top: 10px;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    /*-- Politicas y Condiciones --*/


    .politicas h1,
    .condiciones h1 {
        font-size: 50px;
        line-height: 69px;
    }

    .politicas p,
    .condiciones p {
        color: var(--text);
        font-size: 20px;
        line-height: 30px;
    }


    /*-- Home --*/
    .home-hero-title h1 {
        color: var(--light);
        font-size: 83px;
        line-height: 80px;
        font-weight: bold;
    }

    .home-hero-description h3 {
        color: var(--light);
        font-size: 31px;
        letter-spacing: -0.64px;
        line-height: 54px;
        font-weight: 300;
    }

    .home-introduction .left-text h2 {
        color: var(--text);
        font-size: 50px;
        line-height: 69px;
        font-weight: 700;
        margin-bottom: 32px;
    }

    .home-introduction .left-text p {
        color: var(--text);
        font-size: 20px;
        letter-spacing: -0.38px;
        line-height: 32px;
        font-weight: 400;
        max-width: 585px;
        margin-bottom: 64px;
    }

    .grid-list h2 {
        font-size: 54px;
        line-height: 69px;
        font-weight: 700;
        margin-bottom: 0px;
    }

    .grid-list-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 70px;
    }

    .grid_element-description h3 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .home-more_solutions-title h2 {
        color: var(--text);
        font-size: 50px;
        line-height: 69px;
        font-weight: bold;
    }

    .home-more_solutions-description p {
        color: var(--text);
        font-size: 20px;
        line-height: 32px;
    }

    .comoAyudar-text h2 {
        font-size: 54px;
        line-height: 69px;
        margin-bottom: 40px;
    }

    .home-beneficios1 .left-text h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .home-beneficios1 .left-text h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
    }

    .home-beneficios1 .left-text p {
        font-size: 20px;
        line-height: 30px;
    }

    .home-beneficios1 .left-text li {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    /*** Quienes somos ***/

    .nosotros-hero .left-text h1 {
        font-size: 50px;
        line-height: 69px;
    }

    .nosotros-hero .left-text h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
    }

    .nosotros-hero .left-text p {
        font-size: 20px;
        line-height: 30px;
    }

    .nosotros-hero .left-text li {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .mision-vision-container h2 {
        font-size: 50px;
        line-height: 69px;
        margin-bottom: 14px;
        margin-bottom: 90px;
    }

    .mision-vision-container h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
        margin-bottom: 40px;
    }

    .mision-vision-container p {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
        margin-bottom: 0;
    }

    .mision-vision-actividades li {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .mision-vision-description h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
        margin-bottom: 0;
    }

    .mision-vision-description p {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .mision-vision-main {
        padding-right: 16px;
    }

    .objetivo-introduction .left-text h2 {
        font-size: 50px;
        line-height: 69px;
    }

    .objetivo-introduction .left-text p {
        font-size: 20px;
        letter-spacing: 0.38px;
        line-height: 30px;
    }

    /*** Solutions ***/

    .solutions-hero {
        /*min-height: 1000px;*/
    }

    .solutions-hero-title h1 {
        color: var(--light);
        font-size: 50px;
        line-height: 70px;
        font-weight: bold;
    }

    .solutions-hero-description p {
        color: var(--light);
        font-size: 20px;
        letter-spacing: 0.38px;
        line-height: 30px;
    }

    /*-- Beneficios --*/
    .beneficios-hero-title h1 {
        color: var(--light);
        font-size: 50px;
        line-height: 70px;
        font-weight: bold;
    }

    .beneficios-hero-description p {
        color: var(--light);
        font-size: 20px;
        letter-spacing: 0.38px;
        line-height: 30px;
    }

    .solutions-comoAyudar {
        height: 500px;
    }

    /*** como podemos financiar banner ***/

    .comoFinanciar-banner .right-text h2 {
        color: var(--text);
        font-size: 50px;
        line-height: 65px;
    }

    .comoFinanciar-banner .right-text p {
        font-size: 20px;
        line-height: 30px;
    }

    .comoFinanciar-banner .right-text h3 {
        font-size: 30px;
        line-height: 40px;
    }

    /*** Como podemos ayudarte*/

    .ayudar-introduction .left-text h1 {
        color: var(--text);
        font-size: 50px;
        line-height: 69px;
        font-weight: 700;
        margin-bottom: 32px;
    }

    .ayudar-cotiza-banner h4 {
        color: var(--text);
        font-size: 24px;
        letter-spacing: 2.24px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 34px;
    }

    .ayudar-cotiza-banner h2 {
        color: var(--text);
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 0px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 52px;
    }

    /*** Contact ***/

    .contact-form-container h2 {
        font-size: 50px;
        line-height: 69px;
        margin-bottom: 14px;
        margin-bottom: 90px;
    }

    .contact-form-container h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
        margin-bottom: 40px;
    }

    .contact-form-container p {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
        margin-bottom: 0;
    }

    .contact-form-actividades li {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .contact-form-description {
        padding: 100px 20px 100px 20px;
    }

    .contact-form-description h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
        margin-bottom: 0;
    }

    .contact-form-description p {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .contact-form-main {
        padding-left: 16px;
    }

    .contact-extra-info-title h2 {
        color: var(--text);
        font-size: 50px;
        line-height: 69px;
        font-weight: bold;
    }

    .contact-extra-info-description p {
        color: var(--text);
        font-size: 20px;
        line-height: 32px;
    }

    .contact-pill-text h4 {
        color: var(--primary);
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 1.6px;
        font-weight: 300;
    }

    .contact-pill-text p {
        color: var(--primary);
        font-size: 25px;
        line-height: 35px;
        letter-spacing: 2.24px;
        font-weight: 700;
    }

    .contact-pill-text p.mail {
        word-break: break-all;
    }

    .contact-extra-info .contact-pill {
        min-height: 0px;
    }

    /*** Sectores ***/

    .sectores-hero .left-text h1 {
        font-size: 50px;
        line-height: 69px;
    }

    .sectores-hero .left-text h4 {
        font-size: 25px;
        letter-spacing: 1.92px;
    }

    .sectores-hero .left-text a {
        font-size: 25px;
        letter-spacing: 1.92px;
    }

    .sectores-hero .left-text p {
        font-size: 20px;
        line-height: 30px;
    }

    .sectores-hero .left-text li {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.38px;
    }

    .sectores-automotriz-title h3 {
        font-size: 50px;
        line-height: 69px;
        font-weight: bold;
    }

    .sectores-automotriz-description p {
        font-size: 20px;
        line-height: 32px;
    }

    .sectores-automotriz .right-text h3 {
        font-size: 40px;
        line-height: 50px;
    }

    .sectores-right-image .left-text h3 {
        font-size: 40px;
        line-height: 50px;
    }

    .sectores-wellness-introduction .left-text h3 {
        font-size: 40px;
        line-height: 50px;
    }

    /*** Procesos ***/

    .procesos-flujo .right-text h2 {
        color: var(--text);
        font-size: 50px;
        line-height: 65px;
    }

    .procesos-flujo .right-text p {
        font-size: 20px;
        line-height: 30px;
    }

    .procesos-flujo .right-text h3 {
        font-size: 30px;
        line-height: 40px;
    }
    /*** Landing Gracias ***/

    .thanks-hero-description h3 {
        color: var(--light);
        font-size: 28px;
        letter-spacing: -0.64px;
        line-height: 40px;
        font-weight: 300;
    }

}

@media screen and (max-width: 1374px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 20px;
        padding: 10px 0;
    }

    .icon-background {
        padding: 10px;
        min-width: 60px;
        min-height: 60px;
    }

    .icon-background img {
        min-width: 40px;
        max-height: 27px;
    }

    .grid_element-description p {
        font-size: 16px;
        letter-spacing: 0.29px;
        line-height: 18px;
        font-weight: 400;
    }

    .grid_element_home .grid_element-description p {
        font-size: 18px;
        letter-spacing: 0.29px;
        line-height: 24px;
        font-weight: 400;
    }
}

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

    /*-- Global --*/

    .main_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        max-width: 1600px;
    }

    .center-fullwith-sections {
        padding: 0 16px 0 0;
    }

    .center-fullwith-sections-alt {
        padding: 0 0 0 16px;
    }

    /*--Solutions --*/
    .solutions-comoAyudar {
        padding-left: 16px;
    }

    /*-- Como podemos ayudar --*/

    .ayudar-cotiza-main {
        padding-right: 16px;
    }

    /*-- Nav Menu --*/

    .navbar {
        padding: 20px 16px;
    }

    .navbar-toggler {
        display: block;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .navbar-nav {
        margin-top: 20px;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
    }

    .navbar-collapse-container {
        width: 100%;
        display: flex;
        align-items: center;
        background-color: var(--light);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-in-out;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .nav-item {
        text-align: left;
    }

    /*-- Lang Selector --*/

    .language-selector {
        padding: 10px 0px 20px;
        justify-content: left;
    }

    .language-selector .dropdown {
        display: inline-flex;
        border-radius: 0;
        border: none;
        width: 248px;
        top: initial;
        left: initial;
        transform: initial;
        box-shadow: none;
        flex-direction: row;
    }

    .language-selector .dropdown a {
        padding: 10px 20px 10px 0px;
    }

}

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

    .overlay {

        display: block;
    }

    /*-- Global --*/

    .eyebrow {
        color: var(--primary);
        font-size: 20px;
        letter-spacing: 1.73px;
    }

    .section {
        flex-direction: column;
        gap: 64px;
        max-width: 600px;
    }

    .spacer100 {
        display: block;
        height: 64px;
    }

    .spacer120 {
        display: block;
        height: 64px;
    }

    .icon-background {
        padding: 10px;
        min-width: 60px;
        min-height: 60px;
    }

    .icon-background img {
        min-width: 40px;
        max-height: 27px;
    }

    /*-- FAQ --*/

    .faq-title {
        font-size: 25px;
        line-height: 35px;
        letter-spacing: 0.56px;
    }

    /*-- Footer --*/
    .footer-section {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }

    .footer-legals {
        justify-content: flex-start;
    }

    .footer-map {
        align-items: flex-start;
        text-align: left;
    }

    /*-- Home --*/

    .home-hero {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 500px;
        overflow: hidden;
        padding: 50px 16px 50px 16px;
        flex-direction: column;
        gap: 50px;
    }

    .home-hero .intcommebolt {
        display: none;
    }

    .home-hero .intcommebolt2 {
        display: flex;
    }

    .home-hero-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 430px;
        text-align: center;
    }

    .home-hero-title h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .home-hero-description {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 430px;
        text-align: center;
    }

    .home-hero-description h3 {
        font-size: 24px;
        line-height: 44px;
    }

    .home-hero .left-text {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .home-hero .right-img .hero-image-bg {
        padding-right: 0;
    }

    .home-introduction .left-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        max-width: 100vw;
    }

    .home-introduction .right-img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 75vw;
        align-self: center;
    }

    .grid-list-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .home-more_solutions {
        width: 100%;
        max-width: 100%;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-bottom: 64px;
    }

    .center-fullwith-sections {
        width: 100%;
        max-width: 100%;
        flex-direction: column-reverse;
        padding: 0 16px 0 16px;
        justify-content: center;
        align-items: center;
        margin-bottom: 64px;
    }

    .home-more_solutions .left-img {
        width: 100%;
        max-width: 600px;
        margin-right: 0;
        justify-content: center;
        align-items: center;
    }

    .home-more_solutions .left-img img {
        width: 600px;
        height: 500px;
        object-fit: cover;
        max-width: 100%;
    }

    .home-more_solutions .right-text {
        padding-left: 0;
        max-width: 600px;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .home-more_solutions-title {
        max-width: 100%;
    }

    .comoAyudar-svg {
        width: 120px;
    }

    .home-comoAyudar {
        height: 730px;
        flex-direction: column;
        gap: 30px;
        z-index: 10;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .comoAyudar-text {
        width: 64%;
        margin-top: 30px;
    }

    .comoAyudar-text h2 {
        font-size: 46px;
        line-height: 60px;
        margin-bottom: 40px;
        max-width: 570px;
    }

    .center-fullwith-sections-alt {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: auto;
        overflow: hidden;
        padding: 0px 16px 0px 16px;
        max-width: 100%;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .home-beneficios1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: auto;
        overflow: hidden;
        max-width: 100%;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .home-beneficios1 .left-text {
        max-width: 600px;
        padding-left: 0;
        padding-right: 0;
    }

    .home-beneficios1 .right-img .hero-image-bg {
        width: 600px;
        height: 500px;
        object-fit: cover;
        max-width: 100%;
        object-position: center top;
    }

    .home-beneficios1 .right-img .hero-image-floating {
        left: -67px;
        bottom: 0;
    }

    /*-- Quienes somos --*/

    .nosotros-hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: auto;
        overflow: hidden;
        max-width: 100%;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .nosotros-hero .left-text {
        max-width: 600px;
        padding-left: 0;
        padding-right: 0;
    }

    .nosotros-hero .right-img .hero-image-bg {
        width: 600px;
        height: 500px;
        object-fit: cover;
        max-width: 100%;
        object-position: center top;
    }

    .nosotros-hero .right-img .hero-image-floating {
        left: -67px;
        bottom: 0;
        max-width: 348px;
    }

    .mision-vision-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        max-width: 1500px;
        min-height: auto;
        overflow: hidden;
        gap: 0;
    }

    .mision-vision-actividades {
        margin-bottom: 0;
        margin-top: 64px;
        width: 100%;
    }

    .mision-vision-description {
        margin-top: 0;
        margin-bottom: 64px;
        width: 100%;
    }

    .mision-vision-container img {
        max-width: 100px;
        height: auto;
        object-fit: cover;
        padding-right: 0;
    }

    .objetivo-container {
        overflow: hidden;
        background: rgb(85, 85, 206) !important;
    }


    .objetivo-introduction .left-text {
        max-width: 100%;
    }

    .objetivo-introduction .left-text h2 {
        margin-bottom: 32px;
    }

    .objetivo-introduction .left-text p {
        margin-bottom: 0px;
    }

    .objetivo-introduction .right-img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    .objetivo-introduction .right-img img {
        max-width: 300px;
    }

    .objetivo-introduction .objetivo-circle {
        display: none;
    }

    .objetivo-float {
        position: absolute;
        bottom: -3px;
        right: 0;
    }

    /*-- Solutions --*/

    .solutions-hero {
        min-height: 750px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        padding: 50px 16px 50px 16px;
        position: relative;
        background: url(/img/soluciones/imagen1-SOLUCIONES.png) no-repeat 70% center;
        background-size: cover;
        flex-direction: column;
    }

    .solutions-comoAyudar {
        height: 480px;
        flex-direction: row;
        gap: 30px;
        z-index: 10;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
    }

    .solutions-comoAyudar .comoAyudar-text {
        width: 100%;
        margin-top: 30px;
        max-width: 100vw;
        padding-right: 0;
        align-items: flex-start;
    }

    .solutions-hero-title {
        max-width: 100vw;
    }

    .solutions-comoAyudar .comoAyudar-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
        max-width: 570px;
    }

    .solutions-hero .left-text {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        width: 600px;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .solutions-comoAyudar .relleno {
        width: 0;
    }

    /*-- Beneficios --*/

    .beneficios-hero {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 500px;
        overflow: hidden;
        padding: 50px 16px 50px 16px;
        flex-direction: column;
        gap: 50px;
    }

    .beneficios-hero .intcommebolt {
        display: none;
    }

    .beneficios-hero .intcommebolt2 {
        display: flex;
    }

    .beneficios-hero-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 430px;
        text-align: center;
        width: 100%;
    }

    .beneficios-hero-description {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 430px;
        text-align: center;
    }

    .beneficios-hero-title h1 {
        color: var(--light);
        font-size: 50px;
        line-height: 70px;
        font-weight: bold;
    }

    .beneficios-hero-description p {
        color: var(--light);
        font-size: 20px;
        letter-spacing: 0.38px;
        line-height: 30px;
    }

    .beneficios-hero .left-text {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .beneficios-hero .right-img {
        height: 230px;
    }

    .beneficios-hero .right-img .hero-image-floating {
        position: relative;
        transform: translate(-50%, -50%);
        object-fit: contain;
        width: 100%;
    }

    /*** como podemos financiar banner ***/

    .comoFinanciar-banner {
        color: var(--text);
        font-size: 50px;
        line-height: 65px;
        flex-direction: column-reverse;
    }

    .comoFinanciar-banner .left-img {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .comoFinanciar-banner .right-text {
        max-width: 100%;
    }

    .comoFinanciar-banner .left-img img {
        max-width: 390px;
        width: 100%;
    }

    /*** Como podemos ayudarte ***/

    .ayudar-cotiza-banner {
        width: 100%;
    }

    .ayudar-cotiza-container .left-img {
        max-width: 100px;
        height: auto;
        object-fit: cover;
        padding-right: 0;
    }

    .ayudar-cotiza-main .img-floating {
        width: 200px;
    }

    /*** Contact ***/

    .contact-form-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        max-width: 1600px;
        min-height: auto;
        overflow: hidden;
        gap: 0;
    }

    .contact-form-actividades {
        margin-bottom: 0;
        margin-top: 64px;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 64px;
    }

    .contact-form-description {
        padding: 100px 16px 100px 16px;
        margin-top: 0;
        margin-bottom: 0px;
        width: 100%;
    }

    .contact-form-container img {
        max-width: 100px;
        height: auto;
        object-fit: cover;
        padding-right: 0;
    }

    .contact-form-main {
        padding-right: 0;
        padding-left: 0;
    }

    .contact-extra-info {
        width: 100%;
        max-width: 100%;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-bottom: 64px;
    }

    .contact-extra-info .left-img {
        width: 100%;
        max-width: 600px;
        margin-right: 0;
        justify-content: center;
        align-items: center;
    }

    .contact-extra-info .left-img img {
        width: 600px;
        height: 500px;
        object-fit: cover;
        max-width: 100%;
    }

    .contact-extra-info .right-text {
        padding-left: 0;
        max-width: 600px;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .contact-extra-info-title {
        max-width: 100%;
    }

    /*-- Sectores --*/

    .sectores-hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: auto;
        overflow: hidden;
        max-width: 100%;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .sectores-hero .left-text {
        max-width: 600px;
        padding-left: 0;
        padding-right: 0;
    }

    .sectores-hero .right-img .hero-image-bg {
        width: 600px;
        height: 500px;
        object-fit: cover;
        max-width: 100%;
        object-position: center top;
    }

    .sectores-hero .right-img .hero-image-floating {
        left: -67px;
        bottom: 0;
        max-width: 348px;
    }

    .sectores-automotriz {
        width: 100%;
        max-width: 100%;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-bottom: 64px;
    }

    .sectores-automotriz .left-img {
        width: 100%;
        max-width: 600px;
        margin-right: 0;
        justify-content: center;
        align-items: center;
    }

    .sectores-automotriz .left-img .hero-image-bg {
        width: 600px;
        height: 500px;
        object-fit: cover;
        max-width: 100%;
    }

    .sectores-automotriz .left-img .hero-image-floating {
        object-fit: contain;
    }

    .sectores-automotriz .right-text {
        padding-left: 0;
        max-width: 600px;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        min-height: auto;
    }

    .sectores-automotriz-title {
        max-width: 100%;
    }

    .sectores-right-image .left-text {
        max-width: 100%;
    }

    .sectores-right-image .right-img {
        max-width: 100%;
    }

    .sectores-right-image-float {
        max-width: 190px;
    }

    .sectores-wellness-container {
        overflow: hidden;
        background: rgb(255, 255, 255) !important;
    }

    .sectores-wellness-circle {
        display: none;
    }

    .sectores-wellness-introduction .left-text {
        max-width: 100%;
    }

    .sectores-wellness-introduction .left-text h2 {
        margin-bottom: 32px;
    }

    .sectores-wellness-introduction .left-text p {
        margin-bottom: 0px;
    }

    .sectores-wellness-introduction .right-img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        position: relative;
        padding-top: 64px;
    }

    .sectores-wellness-introduction .right-img img {
        max-width: 300px;
    }

    .sectores-wellness-introduction .sectores-wellness-circle {
        display: none;
    }

    .sectores-wellness-introduction {
        flex-direction: column-reverse;
        gap: 4px;
        max-width: 600px;
    }

    /*** como podemos financiar banner ***/

    .procesos-flujo {
        color: var(--text);
        font-size: 50px;
        line-height: 65px;
        flex-direction: column-reverse;
    }

    .procesos-flujo .left-img {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .procesos-flujo .right-text {
        max-width: 100%;
    }

    .procesos-flujo .left-img img {
        max-width: 390px;
        width: 100%;
    }

    .procesos-flujo.flujo-inverso {
        flex-direction: column-reverse;
    }

    /*** Landing Gracias ***/

    .thanks-hero-description {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 430px;
        text-align: center;
    }

    .thanks-hero-description h3 {
        font-size: 24px;
        line-height: 44px;
    }

}

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

    /*-- Global --*/

    .me-3{
        width: 130px;
    }

    h1 {
        font-size: 40px !important;
        line-height: 45px !important;
        margin-bottom: 35px !important;
    }

    h2 {
        font-size: 33px !important;
        line-height: 35px !important;
        margin-bottom: 32px !important;
    }

    h3 {
        font-size: 19px !important;
        line-height: 24px !important;
    }

    h4 {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    h5 {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    p {
        font-size: 17px !important;
        line-height: 24px !important;
    }

    li {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    .grid-btn {
        font-size: 16px !important;
    }

    .btn-alt {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .back-to-top.btn-alt {
        padding: 8px 14px;
    }

    .back-to-top img {
        max-width: 20px;
    }

    .btn {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .footer-map p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .grid-list {
        gap: 0px;
    }

    .section {
        gap: 20px;
    }

    .left-text p {
        margin-bottom: 30px !important;
    }

    .center-fullwith-sections-alt {
        margin-bottom: 10px;
    }

    /*-- Home --*/

    .home-more_solutions-description {
        margin-top: 0px !important;
    }

    .home-more_solutions-description {
        gap: 30px !important;
    }

    .home-comoAyudar {
        height: auto !important;
        background-position: -170px center !important;
    }

    .comoAyudar-svg {
        width: 50px;
    }

    .comoAyudar-text {
        width: 100%;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .home-beneficios1 .right-img {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

    .home-beneficios1 .right-img .hero-image-floating {
        left: 0px;
        bottom: 0;
    }

    .grid_element {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .grid_element_home{
        align-items: center;
    }

    .home-introduction .right-img {
        width: 70%;
    }

    .home-more_solutions .left-img img {
        height: 270px;
    }

    .home-beneficios1 .right-img .hero-image-bg {
        height: 250px;
    }

    .home-beneficios1 .right-img .hero-image-floating {
        width: 65%;
    }

    /*-- Quienes somos --*/

    .nosotros-hero .right-img {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

    .nosotros-hero .right-img .hero-image-floating {
        left: 0px;
        bottom: 0;
    }

    .mision-vision-container img {
        display: none;
    }

    .mision-vision-main {
        padding-right: 16px;
        padding-left: 16px;
    }

    /*-- Solutions --*/

    .solutions-comoAyudar {
        height: 480px;
        flex-direction: row;
        gap: 30px;
        z-index: 10;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .solutions-comoAyudar .comoAyudar-text {
        width: 100%;
        margin-top: 30px;
        max-width: 100vw;
        padding-right: 0;
        align-items: center;
    }

    .solutions-hero {
        min-height: auto;
    }

    /*-- Beneficios --*/
    .comoAyudar-text h2 {
        font-size: 35px;
        line-height: 49px;
        margin-bottom: 40px;
        max-width: 570px;
    }

    /*** como podemos financiar banner ***/
    .comoFinanciar-banner .right-text h2 {
        color: var(--text);
        font-size: 40px;
        line-height: 53px;
    }


    /*** Como podemos ayudarte ***/

    .ayudar-cotiza-container .left-img {
        display: none;
    }

    .ayudar-cotiza-main {
        padding-right: 16px;
        padding-left: 16px;
    }

    /*** Contact ***/

    .contact-form-container img {
        display: none;
    }

    .contact-form-description h4 {
        font-size: 30px !important;
        line-height: 54px !important;
    }

    .contact-form-description form {
        gap: 20px;
    }

    .contact-form-description .nombre,
    .contact-form-description .email,
    .contact-form-description .mensaje {
        border-radius: 50px;
        background-color: var(--background);
        color: var(--primary);
        font-weight: 300;
        padding: 16px 23px;
        width: 100%;
        font-size: 15px;
        line-height: 21px;
        border: none;
        letter-spacing: 1.15px;
    }

    .contact-form-description .nombre,
    .contact-form-description .email,
    .contact-form-description .mensaje {
        border-radius: 20px;
    }

    .contact-extra-info .left-img img{
        height: 310px;
    }

    /*-- Quienes somos --*/

    .sectores-hero .right-img {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

    .nosotros-hero .right-img .hero-image-bg {
        width: 600px;
        height: 290px;
    }

    .nosotros-hero .right-img .hero-image-floating {
        max-width: 228px;
    }

    .objetivo-introduction .right-img img {
        max-width: 190px;
    }

    /*** como podemos financiar banner ***/
    .procesos-flujo .right-text h2 {
        color: var(--text);
        font-size: 40px;
        line-height: 53px;
    }

    .comoFinanciar-banner .left-img img {
        max-width: 280px;
    }

    /*** Sectores ***/

    .sectores-hero .right-img .hero-image-floating {
        left: 0px;
        bottom: 0;
    }

    .sectores-hero .left-text a {
        margin-bottom: 13px;
        font-size: 19px;
        line-height: 25px;
    }

    .sectores-automotriz .right-text h3 {
        font-size: 25px !important;
        line-height: 30px !important;
        margin-bottom: 30px !important;
    }

    .faq-title {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0.56px;
    }

    .spacer56 {
        height: 20px;
    }

    .sectores-hero .right-img .hero-image-bg {
        height: 245px;
    }

    .sectores-hero .right-img .hero-image-floating {
        width: 50%;
    }

    .sectores-automotriz .left-img .hero-image-bg {
        height: 250px;
    }

    .sectores-right-image .right-img {
        height: 250px;
    }

    .sectores-wellness-introduction .right-img img.persona {
        width: 130px;
    }

}

@media (min-width: 2600px) {

    /*-- Nav y Global --*/

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 2600px;
    }

    .section {
        display: flex;
        align-self: center;
        max-width: 2600px;
        width: 100%;
        flex-direction: row;
    }

    /*-- Home --*/
    .center-fullwith-sections {
        display: flex;
        flex-direction: row;
        max-width: 2600px;
        justify-content: space-between;
        align-items: stretch;
        padding: 0 54px 0 0;
    }

    .home-more_solutions {
        justify-content: center;
        align-items: stretch;
    }

    .home-more_solutions .right-text {
        padding-right: 0;

    }

    .home-more_solutions-title h2 {
        max-width: 1000px;
    }

    .center-fullwith-sections-alt {
        display: flex;
        flex-direction: row;
        max-width: 2600px;
        justify-content: flex-end;
        align-items: stretch;
        padding: 0 0 0 54px;
    }

    .home-beneficios1 {
        justify-content: center;
        align-items: stretch;
    }

    .home-beneficios1 .left-text {
        padding-left: 0;
    }

    .home-beneficios1 .left-text h2,
    .home-beneficios1 .left-text h4,
    .home-beneficios1 .left-text p,
    .home-beneficios1 .left-text li {
        max-width: 1000px;
    }

    .home-beneficios1 .right-img {
        width: 40vw;
    }

    /*** Nuestra empresa ***/

    .nosotros-hero {
        justify-content: center;
        align-items: stretch;
    }

    .nosotros-hero .left-text {
        padding-left: 0;
    }

    .nosotros-hero .left-text h2,
    .nosotros-hero .left-text h4,
    .nosotros-hero .left-text p {
        max-width: 1000px;
    }

    .nosotros-hero .right-img {
        width: 40vw;
    }

    .mision-vision-main {
        justify-content: center;
        align-items: stretch;
        flex-direction: row;
    }

    .mision-vision-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        width: 2600px;
        min-height: auto;
        overflow: hidden;
        gap: 9vw;
    }

    /*** Solutions y Beneficios ***/
    .home-comoAyudar {
        background-size: 2600px;
        /* Evita que siga creciendo como cover */
        background-position: center;
    }

    .solutions-comoAyudar {
        background-size: 2600px;
        /* Evita que siga creciendo como cover */
        background-position: center;
    }

    .solutions-hero {
        background-size: 2600px;
        background-position: center;
    }

    /*** como podemos ayudar ***/

    .ayudar-cotiza-main {
        justify-content: center;
        align-items: stretch;
        flex-direction: row;
    }

    .ayudar-cotiza-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        width: 2600px;
        min-height: auto;
        overflow: hidden;
    }

    .ayudar-cotiza-content {
        max-width: 1500%;
    }

    /*** Contact ***/

    .contact-form-main {
        justify-content: center;
        align-items: stretch;
        flex-direction: row;
    }

    .contact-form-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-end;
        width: 2544px;
        min-height: auto;
        overflow: hidden;
    }

    .contact-extra-info {
        justify-content: center;
        align-items: stretch;
    }

    .contact-extra-info .right-text {
        padding-right: 0;

    }

    .contact-extra-info-title h2 {
        max-width: 1000px;
    }

    /*** Sectores ***/

    .sectores-hero {
        justify-content: center;
        align-items: stretch;
    }

    .sectores-hero .left-text {
        padding-left: 0;
    }

    .sectores-hero .left-text h2,
    .sectores-hero .left-text h4,
    .sectores-hero .left-text a,
    .sectores-hero .left-text p {
        max-width: 1000px;
    }

    .sectores-hero .right-img {
        width: 40vw;
    }

    .sectores-automotriz {
        justify-content: center;
        align-items: stretch;
    }

    .sectores-automotriz .right-text {
        padding-right: 0;

    }

    .sectores-automotriz-title h2 {
        max-width: 1000px;
    }

    .sectores-wellness-introduction .right-img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 88%;
        max-width: 38vw;
        position: relative;
    }

    .sectores-wellness-introduction {
        gap: 15vw;
        flex-direction: row-reverse;
    }

}