﻿/* Vista nosotros - banner, hero, servicios, aeronaves, mantenimiento */

/* Tipografía corporal unificada — secciones home Vestajets */
:root {
    --vj-body-size: clamp(0.95rem, 1.1vw, 1.05rem);
    --vj-body-line-height: 1.55;
}

@media (max-width: 1024px) {
    :root {
        --vj-body-size: clamp(0.9rem, 2.5vw, 1.02rem);
    }
}

@media (max-width: 768px) {
    :root {
        --vj-body-size: 0.9rem;
        --vj-body-line-height: 1.5;
    }
}

@media (max-width: 480px) {
    :root {
        --vj-body-size: 0.84rem;
    }
}

@media (min-width: 2000px) {
    :root {
        --vj-body-size: 1.35rem;
        --vj-body-line-height: 1.7;
    }
}

@media (min-width: 2560px) {
    :root {
        --vj-body-size: 1.5rem;
        --vj-body-line-height: 1.72;
    }
}

/* Banner Home */
.banner-home {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-home__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-home__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.banner-home__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 36%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 64%);
    z-index: 1;
}

.banner-home__content {
    position: relative;
    z-index: 5;
    padding-top: var(--nav-height);
    padding-left: clamp(2rem, 5vw, 6rem);
    padding-right: clamp(2rem, 5vw, 6rem);
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.banner-home__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.55rem);
    font-weight: 800;
    color: var(--color-primary, #1D2343);
    line-height: 1.12;
    margin: 0 0 1.5rem;
    max-width: 720px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.banner-home__title-line {
    display: block;
}

.banner-home__title-line--accent {
    color: var(--color-secondary, #223A8A);
}

.banner-home__text {
    margin-bottom: 1.75rem;
}

.banner-home__text > p:not(.banner-home__highlights) {
    max-width: 500px;
}

.banner-home__text p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.1rem);
    color: #3A3C45;
    line-height: 1.6;
    margin: 0 0 1rem;
    font-weight: 300;
    text-align: left;
}

.banner-home__text .banner-home__highlights {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: var(--color-secondary, #223A8A);
    line-height: 1.5;
    margin: 0;
    max-width: 720px;
}

.banner-home__actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 10;
}

.btn-banner {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 1.3vw, 1.15rem);
    padding: 0.85rem 1.85rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-banner--primary {
    background: var(--color-primary, #1D2343);
    color: #ffffff;
    border-color: var(--color-primary, #1D2343);
}

.btn-banner--primary:hover {
    background: var(--color-secondary, #223A8A);
    border-color: var(--color-secondary, #223A8A);
    color: #ffffff;
}

.btn-banner--outline {
    background: transparent;
    color: var(--color-primary, #1D2343);
    border-color: var(--color-primary, #1D2343);
}

.btn-banner--outline:hover {
    background: rgba(29, 35, 67, 0.06);
    color: var(--color-primary, #1D2343);
}

@media (min-width: 2000px) {
    .banner-home__content {
        padding-left: clamp(8rem, 10vw, 12rem);
        padding-right: clamp(8rem, 10vw, 12rem);
        max-width: 2200px;
    }

    .banner-home__title {
        font-size: clamp(2.15rem, 2.7vw, 3.2rem);
        max-width: 860px;
        line-height: 1.1;
    }

    .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 580px;
    }

    .banner-home__text .banner-home__highlights {
        max-width: 840px;
    }

    .banner-home__text {
        margin-bottom: 2rem;
    }

    .banner-home__text p,
    .banner-home__highlights {
        font-size: 1.28rem;
        line-height: 1.65;
    }

    .btn-banner {
        font-size: 1.4rem;
        font-weight: 700;
        padding: 1.05rem 2.65rem;
    }

    .banner-home__actions {
        gap: 1.35rem;
    }
}

@media (min-width: 2560px) {
    .banner-home__content {
        padding-left: 12rem;
        padding-right: 12rem;
        max-width: 2600px;
    }

    .banner-home__title {
        font-size: clamp(2.4rem, 2.4vw, 3.5rem);
        max-width: 960px;
    }

    .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 640px;
    }

    .banner-home__text .banner-home__highlights {
        max-width: 920px;
    }

    .banner-home__text p,
    .banner-home__highlights {
        font-size: 1.42rem;
    }

    .btn-banner {
        font-size: 1.55rem;
        font-weight: 700;
        padding: 1.15rem 3rem;
    }
}

.btn-blue {
    background: #185480;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 0.45rem 2.6rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.15rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-blue:hover {
    background: #113c5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 60, 92, 0.3);
    color: #ffffff;
}

/* Tablet y móvil: imagen completa + overlay claro + contenido legible */
@media (max-width: 1024px) {
    .banner-home {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        min-height: min(100svh, 860px);
        height: auto;
        background: #e8eef3;
        overflow: hidden;
    }

    .banner-home__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .banner-home__bg img {
        object-fit: cover;
        object-position: 78% 22%;
    }

    .banner-home__gradient {
        width: 100%;
        height: 100%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.28) 32%,
            rgba(255, 255, 255, 0.78) 62%,
            rgba(255, 255, 255, 0.97) 100%
        );
    }

    .banner-home__content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
        margin-top: auto;
        padding: calc(var(--nav-height) + 18vh) clamp(1.5rem, 5vw, 2.5rem) clamp(2rem, 4vw, 2.75rem);
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }

    .banner-home__title {
        max-width: 100%;
        font-size: clamp(1.35rem, 3.8vw, 1.85rem);
        text-align: center;
        margin-bottom: 1.1rem;
        line-height: 1.15;
    }

    .banner-home__text {
        max-width: 36rem;
        margin-bottom: 1.35rem;
    }

    .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 100%;
    }

    .banner-home__text p,
    .banner-home__text .banner-home__highlights {
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: clamp(0.92rem, 2.2vw, 1.05rem);
    }

    .banner-home__text .banner-home__highlights {
        max-width: 100%;
        margin-bottom: 0;
    }

    .banner-home__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }

    .btn-banner {
        width: auto;
        min-width: 11.5rem;
        text-align: center;
        font-size: 0.95rem;
        padding: 0.75rem 1.4rem;
    }
}

@media (max-width: 768px) {
    .banner-home {
        min-height: auto;
        height: auto;
    }

    .banner-home__bg img {
        object-position: 72% 28%;
    }

    .banner-home__gradient {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.35) 36%,
            rgba(255, 255, 255, 0.88) 68%,
            #ffffff 100%
        );
    }

    .banner-home__content {
        max-width: 100%;
        padding-top: calc(var(--nav-height-mobile) + clamp(12rem, 42vw, 18rem));
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 1.75rem;
    }

    .banner-home__title {
        font-size: clamp(1.4rem, 6vw, 1.85rem);
        line-height: 1.18;
        margin-bottom: 0.95rem;
    }

    .banner-home__title-line {
        width: auto;
        height: auto;
        margin: 0;
    }

    .banner-home__text {
        margin-bottom: 1.15rem;
    }

    .banner-home__text p,
    .banner-home__text .banner-home__highlights {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .banner-home__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 17.5rem;
        margin: 0 auto;
        gap: 0.65rem;
    }

    .btn-banner {
        width: 100%;
        min-width: 0;
        font-size: 0.9rem;
        padding: 0.72rem 1.2rem;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .banner-home__bg img {
        object-position: 70% 30%;
    }

    .banner-home__content {
        padding-top: calc(var(--nav-height-mobile) + clamp(10.5rem, 48vw, 15rem));
        padding-left: 1.1rem;
        padding-right: 1.1rem;
        padding-bottom: 1.5rem;
    }

    .banner-home__title {
        font-size: clamp(1.15rem, 6vw, 1.4rem);
        margin-bottom: 0.85rem;
    }

    .banner-home__text p,
    .banner-home__text .banner-home__highlights {
        font-size: 0.88rem;
    }

    .banner-home__actions {
        max-width: 100%;
    }

    .btn-banner {
        font-size: 0.86rem;
        padding: 0.68rem 1.1rem;
    }
}

/* --- BANNER FEATURES (curva full-bleed) --- */
.banner-features {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: clamp(-7.5rem, -11vw, -4.5rem) 0 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-features__wave {
    position: relative;
    width: 100%;
    max-width: none;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
}

/*
 * elemento-banners.svg: viewBox 1961.07 × clip útil 1920 desde x=28.28
 * Escalamos y desplazamos para eliminar los márgenes transparentes del arte.
 */
.banner-features__wave-img {
    display: block;
    width: calc(100% * 1961.07 / 1920);
    max-width: none;
    min-width: calc(100% * 1961.07 / 1920);
    height: auto;
    margin: 0 0 0 calc(-100% * 28.28 / 1920);
    padding: 0;
    border: 0;
    vertical-align: top;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .banner-features {
        margin-top: clamp(-3.75rem, -7.5vw, -1.85rem);
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .banner-features {
        margin-top: clamp(-2.5rem, -5.5vw, -1rem);
    }

    /* Extra crop en móvil por si el SVG aún deja un filo */
    .banner-features__wave-img {
        width: 106%;
        min-width: 106%;
        margin-left: -3%;
    }
}

/* --- WHY RADIODENT --- */
.why-radiodent {
    width: 100%;
    background: #ffffff;
    padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 6vw, 5.5rem);
}

.why-radiodent__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.why-radiodent__header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.why-radiodent__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.75rem);
    font-weight: 800;
    color: var(--color-secondary, #223A8A);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

.why-radiodent__line {
    display: block;
    width: clamp(4.5rem, 8vw, 6.5rem);
    height: 4px;
    background: var(--color-secondary, #223A8A);
    margin: 0.85rem auto 0.75rem;
}

.why-radiodent__intro {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 1.15vw, 1.05rem);
    font-weight: 300;
    color: #3A3C45;
    line-height: 1.6;
    margin: 0;
}

.why-radiodent__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.4vw, 1.15rem);
}

.why-radiodent__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: clamp(1.1rem, 1.6vw, 1.4rem) clamp(0.7rem, 1vw, 0.95rem);
    background: #ffffff;
    border: 1px solid #D7DEEA;
    border-radius: 10px;
    min-width: 0;
}

.why-radiodent__icon {
    width: clamp(64px, 5.5vw, 84px);
    height: auto;
    display: block;
    margin-bottom: 0.15rem;
}

.why-radiodent__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    font-weight: 700;
    color: var(--color-secondary, #223A8A);
    line-height: 1.25;
    margin: 0;
}

.why-radiodent__card-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    font-weight: 300;
    color: #5A6478;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 1100px) {
    .why-radiodent__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 700px) {
    .why-radiodent__header {
        margin-bottom: 1.75rem;
    }

    .why-radiodent__grid {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin: 0 auto;
        gap: 0.85rem;
    }

    .why-radiodent__icon {
        width: 78px;
    }

    .why-radiodent__card-title {
        font-size: 1rem;
    }

    .why-radiodent__card-text {
        font-size: 0.9rem;
    }
}

/* --- TECH SALUD (imagen + texto) --- */
.tech-salud {
    width: 100%;
    background: #ffffff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.tech-salud__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.tech-salud__media {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    line-height: 0;
}

.tech-salud__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.tech-salud__media::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(4rem, 18%, 9rem);
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 90%);
    pointer-events: none;
    z-index: 1;
}

.tech-salud__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2.5rem);
    max-width: 640px;
}

.tech-salud__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.5rem);
    font-weight: 800;
    color: var(--color-secondary, #223A8A);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0;
}

.tech-salud__line {
    display: block;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 4px;
    background: var(--color-secondary, #223A8A);
    margin: 0.9rem 0 1.15rem;
}

.tech-salud__text p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 300;
    color: #4A5568;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.tech-salud__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .tech-salud__inner {
        grid-template-columns: 1fr;
    }

    .tech-salud__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .tech-salud__media img {
        position: absolute;
        inset: 0;
        object-fit: cover;
        object-position: center;
    }

    .tech-salud__media::after {
        width: 100%;
        height: clamp(3rem, 14%, 5rem);
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 92%);
    }

    .tech-salud__content {
        padding: 0 1.35rem 2.5rem;
        max-width: 100%;
        text-align: left;
    }
}

/* --- MISIÓN Y VISIÓN --- */
.mision-vision {
    width: 100%;
    background: #f7fafd;
    padding: clamp(4rem, 7vw, 6.5rem) clamp(1.5rem, 5vw, 4rem);
    margin: clamp(2.5rem, 5vw, 4.5rem) 0;
    box-sizing: border-box;
}

.mision-vision__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(1.75rem, 4vw, 3rem);
}

.mision-vision__col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mision-vision__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--color-secondary, #223A8A);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1.2;
}

.mision-vision__line {
    display: block;
    width: clamp(3.25rem, 5vw, 4.25rem);
    height: 4px;
    background: var(--color-secondary, #223A8A);
    margin: 0.85rem 0 1.15rem;
}

.mision-vision__text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(0.92rem, 1.15vw, 1.05rem);
    line-height: 1.65;
    color: #4A5568;
    margin: 0;
    max-width: 28rem;
}

.mision-vision__divider {
    width: 2px;
    min-width: 2px;
    align-self: stretch;
    background: var(--color-secondary, #223A8A);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .mision-vision {
        padding: 3.25rem 1.35rem;
        margin: 2rem 0;
    }

    .mision-vision__inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .mision-vision__divider {
        width: clamp(3.25rem, 20vw, 5rem);
        height: 2px;
        min-width: 0;
        justify-self: center;
    }
}

/* --- NUESTROS VALORES --- */
.nuestros-valores {
    width: 100%;
    background: #ffffff;
    padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.25rem, 3vw, 2.5rem);
    box-sizing: border-box;
}

.nuestros-valores__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nuestros-valores__header {
    text-align: center;
    margin: 0 auto clamp(2rem, 3.5vw, 3rem);
}

.nuestros-valores__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
    font-weight: 800;
    color: var(--color-secondary, #223A8A);
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0;
}

.nuestros-valores__line {
    display: block;
    width: clamp(4rem, 7vw, 5.5rem);
    height: 4px;
    background: var(--color-secondary, #223A8A);
    margin: 0.85rem auto 0;
}

.nuestros-valores__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.4vw, 1.15rem);
    align-items: stretch;
}

.nuestros-valores__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: clamp(1.25rem, 1.8vw, 1.65rem) clamp(0.75rem, 1.1vw, 1.1rem) clamp(1.35rem, 1.9vw, 1.75rem);
    background: #ffffff;
    border: 1px solid #D7DEEA;
    border-radius: 12px;
    min-width: 0;
    box-sizing: border-box;
}

.nuestros-valores__icon {
    width: clamp(72px, 6vw, 96px);
    height: auto;
    display: block;
    margin-bottom: 0.25rem;
}

.nuestros-valores__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.1rem);
    font-weight: 700;
    color: var(--color-secondary, #223A8A);
    line-height: 1.25;
    margin: 0;
}

.nuestros-valores__card-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 0.92rem);
    font-weight: 300;
    color: #4A5568;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1100px) {
    .nuestros-valores__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .nuestros-valores {
        padding: 3rem 1.15rem;
    }

    .nuestros-valores__grid {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin: 0 auto;
        gap: 0.9rem;
    }

    .nuestros-valores__card {
        padding: 1.35rem 1.15rem 1.5rem;
    }

    .nuestros-valores__icon {
        width: 88px;
    }
}

/* --- ESTUDIOS DE IMAGEN --- */
.estudios-imagen {
    width: 100%;
    background: #ffffff;
    padding: clamp(3rem, 5vw, 4.5rem) clamp(0.75rem, 2.5vw, 1.75rem) clamp(3.5rem, 6vw, 5.5rem);
}

.estudios-imagen__inner {
    max-width: 1480px;
    margin: 0 auto;
}

.estudios-imagen__header {
    text-align: center;
    margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
}

.estudios-imagen__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.5rem);
    font-weight: 800;
    color: var(--color-secondary, #223A8A);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0;
}

.estudios-imagen__line {
    display: block;
    width: clamp(4rem, 7vw, 5.5rem);
    height: 4px;
    background: var(--color-secondary, #223A8A);
    margin: 0.85rem auto 0;
}

.estudios-imagen__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.15rem);
    align-items: start;
}

.estudios-card {
    position: relative;
    display: block;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    min-height: 0;
    line-height: 0;
}

.estudios-card__img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: 100% 50%;
}

.estudios-card__content {
    position: absolute;
    top: 18%;
    bottom: 16%;
    left: 11%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 36%;
    max-width: 36%;
    box-sizing: border-box;
    padding: 0;
    line-height: normal;
    overflow: hidden;
}

.estudios-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    font-weight: 700;
    color: var(--color-secondary, #223A8A);
    line-height: 1.2;
    margin: 0;
}

.estudios-card__line {
    display: block;
    width: 2.35rem;
    height: 3px;
    background: var(--color-secondary, #223A8A);
    margin: 0.4rem 0 0.5rem;
}

.estudios-card__text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    font-weight: 300;
    color: #5A6478;
    line-height: 1.35;
    margin: 0 0 0.7rem;
}

.estudios-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    background: var(--color-primary, #1D2343);
    text-decoration: none;
    padding: 0.38rem 0.75rem;
    border-radius: 7px;
    transition: background 0.2s ease;
}

.estudios-card__btn:hover {
    background: var(--color-secondary, #223A8A);
    color: #ffffff;
}

@media (min-width: 1600px) and (max-width: 1999.98px) {
    .estudios-imagen__inner {
        max-width: 1580px;
    }

    .estudios-imagen__title {
        font-size: 1.65rem;
    }

    .estudios-card__content {
        width: 38%;
        max-width: 38%;
        left: 10%;
    }

    .estudios-card__title {
        font-size: 1.12rem;
    }

    .estudios-card__text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .estudios-card__btn {
        font-size: 0.95rem;
        padding: 0.45rem 0.95rem;
    }
}

@media (max-width: 1024px) {
    .estudios-imagen__grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
        gap: 1.35rem;
    }

    .estudios-card {
        line-height: normal;
        overflow: hidden;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(29, 35, 67, 0.1);
        background: #ffffff;
        padding: 0;
    }

    .estudios-card__img {
        position: absolute;
        top: 50%;
        right: -12%;
        bottom: auto;
        left: auto;
        width: 82%;
        height: 160%;
        margin: 0;
        padding: 0;
        border: 0;
        object-fit: cover;
        object-position: 98% 50%;
        transform: translateY(-50%) scale(1.9);
        transform-origin: right center;
    }

    .estudios-card__content {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        width: 58%;
        max-width: 58%;
        padding: 1.4rem 0.85rem 1.45rem 1.25rem;
        overflow: visible;
        justify-content: center;
        background: linear-gradient(to right, #ffffff 58%, rgba(255, 255, 255, 0.88) 78%, rgba(255, 255, 255, 0) 100%);
    }

    .estudios-card__title {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .estudios-card__line {
        margin: 0.45rem 0 0.55rem;
    }

    .estudios-card__text {
        font-size: 0.88rem;
        line-height: 1.45;
        margin: 0 0 0.9rem;
    }

    .estudios-card__btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 560px) {
    .estudios-imagen {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .estudios-imagen__grid {
        max-width: 100%;
        gap: 1.1rem;
    }

    .estudios-card__content {
        width: 62%;
        max-width: 62%;
        padding: 1.25rem 0.75rem 1.3rem 1.05rem;
    }

    .estudios-card__img {
        width: 90%;
        right: -16%;
        height: 170%;
        transform: translateY(-50%) scale(2.15);
        transform-origin: right center;
        object-position: 100% 50%;
    }

    .estudios-card__title {
        font-size: 0.98rem;
    }

    .estudios-card__text {
        font-size: 0.84rem;
    }

    .estudios-card__btn {
        font-size: 0.88rem;
        padding: 0.36rem 0.72rem;
    }
}

/* --- CONTACTO HOME --- */
.contacto-home {
    width: 100%;
    background: #04245F;
    padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 6vw, 5.5rem);
}

.contacto-home__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: start;
}

.contacto-home__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 1.25rem;
}

.contacto-home__text p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 1.1vw, 1.02rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.contacto-home__text p:last-child {
    margin-bottom: 0;
}

.contacto-home__divider {
    width: 1px;
    min-width: 1px;
    align-self: stretch;
    margin: 0;
    background: rgba(255, 255, 255, 0.85);
}

.contacto-home__form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contacto-home__field input,
.contacto-home__field textarea {
    width: 100%;
    display: block;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-primary, #1D2343);
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.contacto-home__field textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.contacto-home__field input::placeholder,
.contacto-home__field textarea::placeholder {
    color: #9AA3B5;
}

.contacto-home__field input:focus,
.contacto-home__field textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.contacto-home__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.35rem;
}

.contacto-home__submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary, #1D2343);
    background: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.contacto-home__submit:hover {
    background: #f0f3f8;
    color: var(--color-secondary, #223A8A);
}

.contacto-home__submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .contacto-home__inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contacto-home__divider {
        width: 100%;
        height: 1px;
        min-width: 0;
        margin: 0;
    }

    .contacto-home__title {
        margin-bottom: 1rem;
    }

    .contacto-home__actions {
        justify-content: stretch;
    }

    .contacto-home__submit {
        width: 100%;
    }
}

/* --- ULTRA WIDE (≥2000px / ≥2560px) --- */
@media (min-width: 2000px) {
    .banner-home {
        min-height: 720px;
    }

    .banner-features {
        margin-top: clamp(-10rem, -12vw, -7rem);
    }

    .tech-salud__inner {
        min-height: 560px;
    }

    .tech-salud__content {
        max-width: 760px;
        padding: 4.5rem 5rem 4.5rem 3rem;
    }

    .tech-salud__text p {
        font-size: 1.35rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .mision-vision {
        padding: 6rem 5rem;
        margin: 4rem 0;
    }

    .mision-vision__inner {
        max-width: 1400px;
        gap: 4rem;
    }

    .mision-vision__title {
        font-size: 2rem;
    }

    .mision-vision__line {
        width: 5rem;
        height: 5px;
        margin: 1rem 0 1.4rem;
    }

    .mision-vision__text {
        font-size: 1.35rem;
        line-height: 1.7;
        max-width: 34rem;
    }

    .mision-vision__divider {
        width: 3px;
        min-width: 3px;
    }

    .nuestros-valores {
        padding: 5.5rem 3.5rem;
    }

    .nuestros-valores__inner {
        max-width: 1680px;
    }

    .nuestros-valores__header {
        margin-bottom: 3.25rem;
    }

    .nuestros-valores__title {
        font-size: 2.2rem;
    }

    .nuestros-valores__line {
        width: 6rem;
        height: 5px;
        margin-top: 1rem;
    }

    .nuestros-valores__grid {
        gap: 1.35rem;
    }

    .nuestros-valores__card {
        padding: 1.85rem 1.25rem 2rem;
        border-radius: 14px;
        gap: 0.7rem;
    }

    .nuestros-valores__icon {
        width: 110px;
    }

    .nuestros-valores__card-title {
        font-size: 1.4rem;
    }

    .nuestros-valores__card-text {
        font-size: 1.2rem;
        line-height: 1.55;
    }

    .estudios-imagen {
        padding: 5.5rem clamp(2.5rem, 4vw, 5rem) 6.5rem;
    }

    .estudios-imagen__inner {
        max-width: 1760px;
    }

    .estudios-imagen__header {
        margin-bottom: 3.5rem;
    }

    .estudios-imagen__title {
        font-size: 2.35rem;
        letter-spacing: 0.02em;
    }

    .estudios-imagen__line {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }

    .estudios-imagen__grid {
        gap: 1.65rem;
        align-items: stretch;
    }

    .estudios-card__content {
        top: 15%;
        bottom: 13%;
        left: 9.5%;
        width: 40%;
        max-width: 40%;
    }

    .estudios-card__title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .estudios-card__line {
        width: 3rem;
        height: 4px;
        margin: 0.55rem 0 0.75rem;
    }

    .estudios-card__text {
        font-size: 1.18rem;
        line-height: 1.45;
        margin: 0 0 1.05rem;
    }

    .estudios-card__btn {
        font-size: 1.2rem;
        padding: 0.55rem 1.2rem;
        border-radius: 8px;
    }

    .contacto-home {
        padding: 5rem 4rem 6rem;
    }

    .contacto-home__inner {
        max-width: 1680px;
        gap: 3.5rem;
    }

    .contacto-home__title {
        font-size: 2.05rem;
        margin-bottom: 1.5rem;
    }

    .contacto-home__text p {
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .contacto-home__form {
        gap: 1rem;
    }

    .contacto-home__field input,
    .contacto-home__field textarea {
        font-size: 1.22rem;
        padding: 1rem 1.25rem;
        border-radius: 14px;
    }

    .contacto-home__field textarea {
        min-height: 8rem;
    }

    .contacto-home__submit {
        font-size: 1.28rem;
        padding: 0.85rem 2rem;
    }
}

@media (min-width: 2560px) {
    .banner-home {
        min-height: 820px;
    }

    .banner-features {
        margin-top: clamp(-12rem, -11vw, -8rem);
    }

    .tech-salud__inner {
        min-height: 640px;
    }

    .tech-salud__content {
        max-width: 860px;
        padding: 5rem 6rem 5rem 3.5rem;
    }

    .tech-salud__text p {
        font-size: 1.45rem;
    }

    .mision-vision {
        padding: 7rem 6rem;
        margin: 5rem 0;
    }

    .mision-vision__inner {
        max-width: 1680px;
        gap: 5rem;
    }

    .mision-vision__title {
        font-size: 2.2rem;
    }

    .mision-vision__text {
        font-size: 1.45rem;
        max-width: 38rem;
    }

    .nuestros-valores {
        padding: 6.5rem 4.5rem;
    }

    .nuestros-valores__inner {
        max-width: 1920px;
    }

    .nuestros-valores__title {
        font-size: 2.4rem;
    }

    .nuestros-valores__icon {
        width: 124px;
    }

    .nuestros-valores__card-title {
        font-size: 1.5rem;
    }

    .nuestros-valores__card-text {
        font-size: 1.28rem;
    }

    .estudios-imagen {
        padding: 6.5rem clamp(3rem, 4.5vw, 6rem) 7.5rem;
    }

    .estudios-imagen__inner {
        max-width: 2100px;
    }

    .estudios-imagen__header {
        margin-bottom: 4rem;
    }

    .estudios-imagen__title {
        font-size: 2.55rem;
    }

    .estudios-imagen__line {
        width: 7.5rem;
        height: 6px;
        margin-top: 1.15rem;
    }

    .estudios-imagen__grid {
        gap: 2rem;
    }

    .estudios-card__content {
        top: 14%;
        bottom: 12%;
        left: 9%;
        width: 40%;
        max-width: 40%;
    }

    .estudios-card__title {
        font-size: 1.55rem;
    }

    .estudios-card__line {
        width: 3.5rem;
        height: 5px;
        margin: 0.65rem 0 0.85rem;
    }

    .estudios-card__text {
        font-size: 1.32rem;
        line-height: 1.5;
        margin: 0 0 1.2rem;
    }

    .estudios-card__btn {
        font-size: 1.32rem;
        padding: 0.65rem 1.4rem;
        border-radius: 9px;
    }

    .contacto-home {
        padding: 6rem 5rem 7rem;
    }

    .contacto-home__inner {
        max-width: 1920px;
        gap: 4.5rem;
    }

    .contacto-home__title {
        font-size: 2.25rem;
    }

    .contacto-home__text p {
        font-size: 1.4rem;
    }

    .contacto-home__field input,
    .contacto-home__field textarea {
        font-size: 1.3rem;
        padding: 1.1rem 1.35rem;
    }

    .contacto-home__submit {
        font-size: 1.38rem;
        padding: 0.95rem 2.35rem;
    }
}

/* --- HOME INTRO (imagen + texto) --- */
.home-intro {
    width: 100%;
    background: #ffffff;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
    overflow: hidden;
}

.home-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(0, 1fr);
    gap: clamp(2rem, 3.5vw, 3.5rem);
    max-width: none;
    margin: 0;
    align-items: center;
}

.home-intro__image {
    width: 100%;
    justify-self: start;
}

.home-intro__image img {
    width: 100%;
    height: auto;
    display: block;
}

.home-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 0 0;
    max-width: 620px;
    background: #ffffff;
}

.home-intro__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    font-weight: 500;
    color: #001e42;
    line-height: 1.25;
    margin: 0 0 2rem;
}

.home-intro__title-accent {
    color: #42b1e5;
    font-weight: 800;
}

.home-intro__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.home-intro__list li {
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    color: #001e42;
    line-height: var(--vj-body-line-height);
    padding-left: 1.85rem;
    position: relative;
}

.home-intro__list li::before {
    content: '';
    position: absolute;
    left: 0.1rem;
    top: 0.38em;
    width: 0.5em;
    height: 0.5em;
    border-right: 2.5px solid #42b1e5;
    border-top: 2.5px solid #42b1e5;
    transform: rotate(45deg);
    box-sizing: border-box;
}

@media (min-width: 2000px) {
    .home-intro {
        padding: 6rem 0 5.5rem;
    }

    .home-intro__inner {
        grid-template-columns: minmax(0, 54%) minmax(0, 1fr);
        gap: 4.5rem;
    }

    .home-intro__content {
        max-width: 780px;
        padding-right: clamp(4rem, 6vw, 6rem);
    }

    .home-intro__title {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 2.5rem;
    }

    .home-intro__list {
        gap: 1.1rem;
    }

    .home-intro__list li {
        padding-left: 2.1rem;
    }

    .home-intro__list li::before {
        width: 0.55em;
        height: 0.55em;
        border-right-width: 3px;
        border-top-width: 3px;
        top: 0.4em;
    }
}

@media (min-width: 2560px) {
    .home-intro {
        padding: 7rem 0 6.5rem;
    }

    .home-intro__inner {
        grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
        gap: 5.5rem;
    }

    .home-intro__content {
        max-width: 900px;
        padding-right: 7rem;
    }

    .home-intro__title {
        font-size: 3.15rem;
        line-height: 1.18;
        margin-bottom: 3rem;
    }

    .home-intro__list {
        gap: 1.25rem;
    }

    .home-intro__list li {
        padding-left: 2.35rem;
    }

    .home-intro__list li::before {
        width: 0.58em;
        height: 0.58em;
        border-right-width: 3.5px;
        border-top-width: 3.5px;
        top: 0.42em;
        left: 0.15rem;
    }
}

@media (max-width: 900px) {
    .home-intro {
        padding: 2.5rem 0 3rem;
    }

    .home-intro__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-intro__image {
        width: 100%;
        margin: 0;
    }

    .home-intro__content {
        padding: 0 1.5rem;
        max-width: none;
    }

    .home-intro__title {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .home-intro {
        padding: 2rem 0 2.5rem;
    }

    .home-intro__content {
        padding: 0 1.15rem;
    }
}

/* --- FLIGHT BENEFITS (More than a private flight) --- */
.flight-benefits {
    --flight-benefits-split: clamp(320px, 44vw, 480px);
    position: relative;
    width: 100%;
    background: #001e42;
    overflow: hidden;
    padding: 0;
}

.flight-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--flight-benefits-split);
    background: #ffffff;
    z-index: 0;
}

.flight-benefits__inner {
    position: relative;
    z-index: 1;
    padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(2rem, 3vw, 2.5rem);
}

@media (min-width: 901px) {
    .flight-benefits__inner {
        padding-bottom: 2.25rem;
    }

    .flight-benefits__grid {
        margin-bottom: 2rem;
    }
}

.flight-benefits__header {
    display: flex;
    justify-content: center;
    background: #ffffff;
    margin: 0 calc(-1 * clamp(1.25rem, 4vw, 3rem)) clamp(2rem, 3.5vw, 3rem);
    padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
    z-index: 2;
}

.flight-benefits__title-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
    width: 100%;
    max-width: 1320px;
}

.flight-benefits__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #001e42;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.flight-benefits__title strong {
    font-weight: 700;
}

.flight-benefits__underline {
    display: block;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 4px;
    background: #42b1e5;
    margin: 0 auto;
}

.flight-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 1rem);
    max-width: 1320px;
    margin: 0 auto clamp(1.75rem, 3vw, 2.25rem);
}

.flight-benefits__card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #d6e4f0;
    padding: clamp(0.7rem, 1.1vw, 0.95rem) clamp(0.7rem, 1.1vw, 0.95rem) clamp(1.25rem, 2vw, 1.65rem);
}

.flight-benefits__card-image {
    line-height: 0;
}

.flight-benefits__card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.flight-benefits__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    padding: clamp(1rem, 1.6vw, 1.35rem) clamp(0.35rem, 0.8vw, 0.65rem) 0;
    min-height: clamp(8.5rem, 13vw, 10.5rem);
}

.flight-benefits__card-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: #001e42;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.flight-benefits__card-text {
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    color: #001e42;
    line-height: var(--vj-body-line-height);
    margin: 0;
    max-width: 15.5rem;
}

.flight-benefits__cta {
    text-align: center;
}

.btn-flight-benefits {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.7rem 2.25rem;
    border-radius: 999px;
    text-decoration: none;
    background: #ffffff;
    color: #001e42;
    border: 2px solid #ffffff;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.btn-flight-benefits:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #001e42;
}

@media (min-width: 2000px) {
    .flight-benefits {
        --flight-benefits-split: 520px;
    }

    .flight-benefits__inner {
        padding: 0 clamp(4rem, 5vw, 5rem) 2.75rem;
    }

    .flight-benefits__header {
        margin: 0 calc(-1 * clamp(4rem, 5vw, 5rem)) 3.5rem;
        padding: 5rem clamp(4rem, 5vw, 5rem) 2.25rem;
    }

    .flight-benefits__title-row {
        max-width: 1680px;
        gap: 1.1rem;
    }

    .flight-benefits__title {
        font-size: 3rem;
        line-height: 1.18;
    }

    .flight-benefits__underline {
        width: 5.5rem;
        height: 5px;
    }

    .flight-benefits__grid {
        max-width: 1680px;
        gap: 1.35rem;
        margin-bottom: 2.5rem;
    }

    .flight-benefits__card {
        padding: 1.1rem 1.1rem 1.85rem;
    }

    .flight-benefits__card-body {
        padding: 1.65rem 1rem 0;
        min-height: 13rem;
    }

    .flight-benefits__card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.32;
    }

    .flight-benefits__card-text {
        max-width: 20rem;
    }

    .btn-flight-benefits {
        font-size: 1.15rem;
        padding: 0.85rem 2.75rem;
    }
}

@media (min-width: 2560px) {
    .flight-benefits {
        --flight-benefits-split: 600px;
    }

    .flight-benefits__inner {
        padding: 0 6rem 3.25rem;
    }

    .flight-benefits__header {
        margin: 0 -6rem 4rem;
        padding: 6rem 6rem 2.5rem;
    }

    .flight-benefits__title-row {
        max-width: 2100px;
        gap: 1.25rem;
    }

    .flight-benefits__title {
        font-size: 3.5rem;
        line-height: 1.16;
    }

    .flight-benefits__underline {
        width: 6.5rem;
        height: 6px;
    }

    .flight-benefits__grid {
        max-width: 2100px;
        gap: 1.65rem;
        margin-bottom: 2.75rem;
    }

    .flight-benefits__card {
        padding: 1.25rem 1.25rem 2.15rem;
    }

    .flight-benefits__card-body {
        padding: 1.85rem 1.15rem 0;
        min-height: 14.5rem;
    }

    .flight-benefits__card-title {
        font-size: 1.45rem;
        margin-bottom: 0.9rem;
        line-height: 1.3;
    }

    .flight-benefits__card-text {
        max-width: 22rem;
    }

    .btn-flight-benefits {
        font-size: 1.25rem;
        padding: 0.95rem 3.15rem;
    }
}

@media (max-width: 1100px) {
    .flight-benefits {
        --flight-benefits-split: clamp(280px, 36vw, 360px);
    }

    .flight-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .flight-benefits {
        --flight-benefits-split: 260px;
    }

    .flight-benefits__inner {
        padding: 0 1.25rem 3rem;
    }

    .flight-benefits__header {
        margin: 0 -1.25rem 2rem;
        padding: 2.5rem 1.25rem 1.25rem;
    }

    .flight-benefits__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .flight-benefits__card-text {
        max-width: none;
    }
}

/* --- GLOBAL REACH --- */
.global-reach {
    width: 100%;
    background: #ffffff;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(2rem, 3vw, 2.5rem);
    overflow: hidden;
}

.global-reach__inner {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    max-width: none;
    margin: 0;
}

.global-reach__content {
    --content-align-max: 1320px;
    max-width: 540px;
    padding-left: max(clamp(1.25rem, 4vw, 3rem), calc((100vw - var(--content-align-max)) / 2));
    padding-right: clamp(1rem, 2vw, 1.5rem);
}

.global-reach__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    line-height: 1.05;
}

.global-reach__title-line {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #001e42;
}

.global-reach__title-line--indent {
    padding-left: clamp(2.5rem, 5vw, 4.5rem);
}

.global-reach__title-accent {
    color: #42b1e5;
    font-weight: 700;
}

.global-reach__title-underline {
    display: block;
    width: clamp(11rem, 22vw, 16rem);
    height: 5px;
    background: #001e42;
    margin: clamp(0.85rem, 1.5vw, 1.15rem) 0 clamp(1.25rem, 2vw, 1.75rem);
}

.global-reach__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    color: #001e42;
    line-height: 1.3;
    margin: 0 0 clamp(1rem, 1.8vw, 1.35rem);
}

.global-reach__subtitle-accent {
    color: #42b1e5;
    font-weight: 700;
}

.global-reach__text {
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    color: #001e42;
    line-height: var(--vj-body-line-height);
    margin: 0;
}

.global-reach__text strong {
    font-weight: 700;
}

.global-reach__map {
    width: 100%;
    line-height: 0;
    justify-self: end;
}

.global-reach__map img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

@media (min-width: 901px) {
    .global-reach {
        padding-bottom: 2.25rem;
    }

    .global-reach__inner {
        grid-template-columns: minmax(0, 38%) minmax(0, 62%);
    }
}

@media (min-width: 2000px) {
    .global-reach {
        padding: 6rem 0 2.75rem;
    }

    .global-reach__inner {
        grid-template-columns: minmax(0, 36%) minmax(0, 64%);
        gap: 3.5rem;
    }

    .global-reach__content {
        --content-align-max: 1680px;
        max-width: 720px;
        padding-left: max(clamp(4rem, 5vw, 5rem), calc((100vw - var(--content-align-max)) / 2));
        padding-right: 2rem;
    }

    .global-reach__title-line {
        font-size: 4.75rem;
        line-height: 1.04;
    }

    .global-reach__title-line--indent {
        padding-left: 5.5rem;
    }

    .global-reach__title-underline {
        width: 18rem;
        height: 6px;
        margin: 1.35rem 0 2.1rem;
    }

    .global-reach__subtitle {
        font-size: 1.85rem;
        line-height: 1.32;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 2560px) {
    .global-reach {
        padding: 7rem 0 3.25rem;
    }

    .global-reach__inner {
        grid-template-columns: minmax(0, 32%) minmax(0, 68%);
        gap: 4rem;
    }

    .global-reach__content {
        --content-align-max: 2100px;
        max-width: 840px;
        padding-left: max(6rem, calc((100vw - var(--content-align-max)) / 2));
        padding-right: 2.5rem;
    }

    .global-reach__title-line {
        font-size: 5.25rem;
        line-height: 1.02;
    }

    .global-reach__title-line--indent {
        padding-left: 6.25rem;
    }

    .global-reach__title-underline {
        width: 20rem;
        height: 7px;
        margin: 1.5rem 0 2.35rem;
    }

    .global-reach__subtitle {
        font-size: 2.05rem;
        line-height: 1.34;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 900px) {
    .global-reach {
        padding: 3rem 0;
    }

    .global-reach__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .global-reach__content {
        --content-align-max: 1320px;
        max-width: none;
        padding: 0 max(clamp(1.25rem, 4vw, 3rem), calc((100vw - var(--content-align-max)) / 2));
    }

    .global-reach__map {
        max-width: none;
        width: 100%;
    }

    .global-reach__map img {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .global-reach {
        padding: 2.5rem 0;
    }

    .global-reach__content {
        padding: 0 1.25rem;
    }

    .global-reach__title-line--indent {
        padding-left: 2rem;
    }
}

/* --- NUEVA SECCIÓN DE FEATURES (Herramienta ideal) --- */
.features {
    padding: 6rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    font-family: 'Montserrat', sans-serif;
    color: #212529;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.features-underline {
    display: block;
    width: 120px;
    height: 5px;
    background-color: #8bb7cc;
    margin: 0 auto 5rem auto;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    justify-content: space-between;
}

.features-line {
    display: none;
    position: absolute;
    top: 54px;
    /* Mitad de los 110px del círculo (centrado para 2px de grosor) */
    left: 10%;
    right: 10%;
    height: 2.5px;
    background-color: #185480;
    z-index: 0;
}

@media (min-width: 900px) {
    .features-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .features-line {
        display: block;
    }
}

.feature-item {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #185480;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 10px #ffffff;
    /* Borde interior invisible para cortar la línea trasera */
}

.feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-icon--built {
    width: 63px;
    height: 63px;
    margin-right: 13px;
}

.feature-icon--powered {
    width: 55px;
    height: 55px;
    margin-left: 5px;
}

.feature-content {
    text-align: center;
    padding: 0 1rem;
}

.feature-heading {
    font-family: 'Montserrat', sans-serif;
    color: #185480;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-desc {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 1.05rem;
    line-height: 1.25;
    margin: 0;
    font-weight: 600;
}

.feature-subtext {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #606060;
}

/* --- MODULES SHOWCASE --- */
.modules-showcase {
    padding: 0 5% 6rem 5%;
    background-color: #ffffff;
}

.modules-box {
    background-color: #F2F3F7;
    border-radius: 2.5rem;
    padding: 3rem 2rem;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

.modules-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.modules-text {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
    padding-top: 1.5rem;
}

.modules-title {
    font-family: 'Montserrat', sans-serif;
    color: #185480;
    font-size: clamp(1.5rem, 2.8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 2.5rem 0;
    line-height: 1.2;
    white-space: normal;
}

.modules-text p {
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 1.18rem;
    line-height: 1.25;
    margin: 0;
    font-weight: 300;
}

.modules-image-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 1.35rem;
    /* El espacio blanco envolvente */
    border-radius: 2.5rem;
    width: 100%;
}

.modules-image-inner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2.5 / 1;
}

.modules-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modules-img-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(28, 109, 166, 0.8);
    mix-blend-mode: overlay;
}

.btn-modulos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    color: #185480;
    padding: 0.8rem 2.8rem;
    border-radius: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
    white-space: nowrap;
}

.btn-modulos:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

@media (min-width: 900px) {
    .modules-box {
        padding: 3rem 6.5rem 3rem 4.2rem;
    }

    .modules-title {
        white-space: nowrap;
    }

    .modules-body {
        flex-direction: row;
        align-items: stretch;
    }

    .modules-text {
        padding-right: 2rem;
        padding-bottom: 1.5rem;
        /* Espacio para que flote naturalmente */
    }

    .modules-image-wrapper {
        margin-right: -8rem;
        margin-bottom: -3rem;
        align-self: flex-end;
        /* Lo ancla abajo a la derecha */
    }
}

@media (max-width: 899px) {
    .modules-image-wrapper {
        margin-right: -1rem;
        margin-left: -1rem;
        margin-bottom: -3rem;
        width: calc(100% + 2rem);
    }
}

/* --- MODULES LIST SECTION --- */
.modules-list-section {
    background-color: #185480;
    padding: 6rem 5%;
    color: #ffffff;
}

.modules-list-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.modules-list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.modules-list-underline {
    display: block;
    width: 65px;
    height: 4px;
    background-color: #ffffff;
    margin: 0 auto 5rem auto;
}

.modules-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 900px) {
    .modules-list-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.modules-list-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    /* Separación vertical entre módulos */
}

.modules-list-line {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    /* Centro del círculo blanco de 80px */
    width: 2.5px;
    background-color: #ffffff;
    z-index: 1;
}

.module-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.module-item-icon {
    width: 85px;
    height: 85px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 2rem;
}

.module-plus {
    position: relative;
    width: 30px;
    height: 30px;
}

.module-plus::before,
.module-plus::after {
    content: '';
    position: absolute;
    background-color: #185480;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.module-plus::before {
    width: 100%;
    height: 6.5px;
}

.module-plus::after {
    width: 6.5px;
    height: 100%;
}

.module-item-content {
    flex: 1;
}

.module-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.module-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* --- WORKFLOW SECTION --- */
.workflow-section {
    padding: 8rem 5% 6rem 5%;
    background-color: #ffffff;
}

.workflow-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 900px) {
    .workflow-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 6rem;
    }
}

.workflow-left {
    flex: 1;
    /* Changed to take even partition initially */
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 900px) {
    .workflow-left {
        flex: 0.85;
        /* Shrink width on desktop */
    }
}

.workflow-title {
    font-family: 'Montserrat', sans-serif;
    color: #185480;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.workflow-desc p {
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 0 0 1.25rem 0;
    font-weight: 300;
}

.workflow-desc p.workflow-desc-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #606060;
    margin-bottom: 0;
}

.btn-workflow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #185480;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 0.45rem 2.6rem;
    border-radius: 20px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.2s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-workflow:hover {
    background: #113c5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 60, 92, 0.3);
    color: #ffffff;
}

.workflow-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .workflow-right {
        flex: 1.15;
        /* Grow width on desktop to fit long cards */
    }
}

.workflow-step-card {
    background-color: #F2F3F7;
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workflow-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
}

.workflow-step-num {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #185480;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
    /* keeps number perfectly centered */
}

.workflow-step-content {
    flex: 1;
}

.workflow-step-title {
    font-family: 'Montserrat', sans-serif;
    color: #185480;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.02em;
}

.workflow-step-desc {
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 1.05rem;
    line-height: 1.25;
    margin: 0;
    font-weight: 300;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 6rem 0;
    background-color: #F4F6F9;
    overflow-x: hidden;
}

.contact-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    margin-bottom: 5rem;
    width: 100%;
}

.contact-header::after {
    content: '';
    display: block;
}

.contact-line {
    height: 7px;
    background-color: #8bb7cc;
    margin-bottom: 1.5rem;
    /* Ajuste visual a la línea base del texto */
    width: 100%;
}

@media (max-width: 900px) {
    .contact-line {
        margin-bottom: 0.8rem;
    }
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    color: #185480;
    font-size: clamp(4rem, 8vw, 8rem);
    text-transform: uppercase;
    line-height: 0.85;
    margin: 0;
    padding: 0 2rem;
    text-align: center;
}

.contact-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 900px) {
    .contact-body {
        flex-direction: row;
        align-items: center;
        gap: 6rem;
    }
}

.contact-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-image-wrap img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
}

.contact-form-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    color: #185480;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.contact-form-desc {
    font-family: 'Poppins', sans-serif;
    color: #185480;
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 2.5rem 0;
    font-weight: 300;
}

.clean-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.clean-form-group {
    position: relative;
    width: 100%;
}

.clean-form-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(24, 84, 128, 0.2);
    background: transparent;
    padding: 0.4rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #185480;
    outline: none;
    transition: all 0.3s ease;
}

.clean-form-group input::placeholder {
    color: #185480;
    font-weight: 300;
    opacity: 0.85;
}

.clean-form-group input:focus {
    border-bottom: 1.5px solid #185480;
}

.clean-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-contact-submit {
    background: #185480;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 0.6rem 2.8rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
}

.btn-contact-submit:hover {
    background: #113c5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 60, 92, 0.3);
}