/* =========================================================
   MAXIMILIANO ABREGO
   GLOBAL SYSTEM
========================================================= */

:root {

    --ma-navy: #041D3B;
    --ma-blue: #30638E;
    --ma-sky: #7FB1CC;
    --ma-silver: #E4E5E9;
    --ma-yellow: #F5BD2A;

    --ma-white: #F7F7F5;

    --ma-display: "Montserrat", sans-serif;
    --ma-body: "Inter", sans-serif;

    --ma-container: 1480px;

    --ma-gutter:
        clamp(22px, 4vw, 72px);

    --ma-header-height:
        102px;

    --ma-transition:
        cubic-bezier(.22, 1, .36, 1);
}


/* Raw HTML sections: no extra spacing from WPBakery */

.wpb_raw_code,
.wpb_raw_html,
.wpb_content_element {
    margin-bottom: 0;
}

.ma-endo {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}




/* =========================================================
   RESET LOCAL
========================================================= */

.ma-site,
.ma-site *,
.ma-site *::before,
.ma-site *::after {
    box-sizing: border-box;
}

.ma-site {
    position: relative;
    width: 100%;
    overflow: clip;

    font-family: var(--ma-body);
    color: var(--ma-white);

    background: var(--ma-navy);
}

.ma-site a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HEADER
========================================================= */

.ma-header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 999;

    width: 100%;

    transition:
        background .45s var(--ma-transition),
        backdrop-filter .45s var(--ma-transition),
        border-color .45s var(--ma-transition);
}

.ma-header::after {
    content: "";

    position: absolute;

    left: var(--ma-gutter);
    right: var(--ma-gutter);
    bottom: 0;

    height: 1px;

    background: rgba(255,255,255,.13);

    transition:
        opacity .4s var(--ma-transition);
}

.ma-header__inner {
    width: 100%;
    max-width: calc(var(--ma-container) + (var(--ma-gutter) * 2));

    min-height: var(--ma-header-height);

    margin: 0 auto;

    padding:
        0
        var(--ma-gutter);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 36px;

    transition:
        min-height .4s var(--ma-transition);
}


/* SCROLLED */

.ma-header.is-scrolled {
    background:
        rgba(4, 29, 59, .92);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}

.ma-header.is-scrolled .ma-header__inner {
    min-height: 78px;
}

.ma-header.is-scrolled::after {
    opacity: .6;
}


/* =========================================================
   BRAND
========================================================= */

.ma-brand {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    min-width: 210px;
}

.ma-brand__mark {
    font-family: var(--ma-display);

    font-size: 11px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: .12em;

    color: var(--ma-white);
}


/*
Después reemplazamos ma-brand__mark
por el SVG real del logo.
*/

.ma-brand__mark img,
.ma-brand__mark svg {
    display: block;

    width: auto;
    height: 46px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.ma-nav {
    display: flex;
    align-items: center;

    gap:
        clamp(22px, 2.3vw, 42px);

    margin-left: auto;
}

.ma-nav a {
    position: relative;

    padding: 8px 0;

    font-family: var(--ma-body);

    font-size: 13px;

    font-weight: 450;

    letter-spacing: .01em;

    color:
        rgba(247,247,245,.78);

    transition:
        color .25s ease;
}

.ma-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background:
        var(--ma-yellow);

    transition:
        width .35s var(--ma-transition);
}

.ma-nav a:hover {
    color: var(--ma-white);
}

.ma-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTION
========================================================= */

.ma-header__actions {
    display: flex;
    align-items: center;

    gap: 18px;
}

.ma-header__cta {
    min-height: 45px;

    padding:
        0 20px;

    display: inline-flex;
    align-items: center;

    gap: 26px;

    background:
        var(--ma-yellow);

    color:
        var(--ma-navy) !important;

    font-family:
        var(--ma-body);

    font-size: 12px;

    font-weight: 650;

    letter-spacing:
        .02em;

    transition:
        transform .35s var(--ma-transition),
        background .35s ease;
}

.ma-header__cta:hover {
    transform:
        translateY(-2px);

    background:
        #FFCA3A;
}

.ma-arrow {
    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   MOBILE MENU TOGGLE
========================================================= */

.ma-menu-toggle {
    display: none;

    appearance: none;
    border: 0;
    background: transparent;

    width: 44px;
    height: 44px;

    position: relative;

    padding: 0;

    cursor: pointer;

    z-index: 1002;
}

.ma-menu-toggle span {
    position: absolute;

    left: 9px;

    width: 26px;
    height: 1px;

    background:
        var(--ma-white);

    transition:
        transform .4s var(--ma-transition),
        top .4s var(--ma-transition);
}

.ma-menu-toggle span:first-child {
    top: 17px;
}

.ma-menu-toggle span:last-child {
    top: 26px;
}

.ma-menu-toggle.is-active span:first-child {
    top: 22px;

    transform:
        rotate(45deg);
}

.ma-menu-toggle.is-active span:last-child {
    top: 22px;

    transform:
        rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ma-mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 998;

    background:
        var(--ma-navy);

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .45s var(--ma-transition),
        visibility .45s;
}

.ma-mobile-menu.is-open {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}

.ma-mobile-menu__inner {
    min-height:
        100svh;

    padding:
        120px
        var(--ma-gutter)
        34px;

    display: flex;
    flex-direction: column;
}

.ma-mobile-menu__meta {
    padding-bottom:
        24px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-bottom:
        1px solid rgba(255,255,255,.15);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.48);
}

.ma-mobile-menu__nav {
    padding:
        clamp(34px, 7vh, 70px)
        0;

    display: flex;
    flex-direction: column;
}

.ma-mobile-menu__nav a {
    display: grid;

    grid-template-columns:
        42px 1fr;

    align-items: baseline;

    gap: 6px;

    padding:
        12px 0;

    font-family:
        var(--ma-display);

    font-size:
        clamp(29px, 8vw, 54px);

    line-height: 1.07;

    font-weight: 500;

    letter-spacing:
        -.045em;

    color:
        var(--ma-white);
}

.ma-mobile-menu__nav a span {
    font-family:
        var(--ma-body);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .08em;

    color:
        var(--ma-yellow);
}

.ma-mobile-menu__footer {
    margin-top: auto;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.15);
}

.ma-mobile-menu__cta {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding:
        18px 20px;

    background:
        var(--ma-yellow);

    color:
        var(--ma-navy) !important;

    font-size: 13px;

    font-weight: 650;
}

.ma-mobile-menu__details {
    margin-top: 20px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    font-size: 11px;
    line-height: 1.5;

    color:
        rgba(255,255,255,.5);
}


/* =========================================================
   HERO
========================================================= */

.ma-hero {
    position: relative;

    min-height:
        max(780px, 100svh);

    background:
        var(--ma-navy);

    overflow: hidden;
}

.ma-hero__ambient {
    position: absolute;

    top: -18%;
    right: -12%;

    width:
        min(62vw, 940px);

    aspect-ratio: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(48,99,142,.22) 0%,
            rgba(48,99,142,.07) 42%,
            transparent 72%
        );

    filter:
        blur(20px);
}


/* =========================================================
   HERO GRID
========================================================= */

.ma-hero__grid {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width:
        calc(
            var(--ma-container)
            + (var(--ma-gutter) * 2)
        );

    min-height:
        max(780px, 100svh);

    margin: 0 auto;

    padding:
        calc(var(--ma-header-height) + 80px)
        var(--ma-gutter)
        135px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.07fr)
        minmax(390px, .93fr);

    align-items: center;

    gap:
        clamp(52px, 7vw, 118px);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.ma-hero__content {
    position: relative;

    z-index: 3;

    max-width: 820px;
}

.ma-hero__eyebrow {
    margin-bottom:
        clamp(28px, 4vh, 48px);

    display: flex;
    align-items: center;

    gap: 16px;

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;

    color:
        rgba(247,247,245,.58);
}

.ma-hero__eyebrow-line {
    width: 42px;
    height: 1px;

    background:
        var(--ma-yellow);
}


/* TITLE */

.ma-hero__title {
    margin: 0;

    max-width: 880px;

    font-family:
        var(--ma-display);

    font-size:
        clamp(50px, 6.4vw, 110px);

    line-height:
        .91;

    font-weight:
        520;

    letter-spacing:
        -.061em;

    color:
        var(--ma-white);
}

.ma-hero__title span {
    display: block;

    color:
        var(--ma-sky);
}


/* INTRO */

.ma-hero__intro {
    width: min(100%, 550px);

    margin-top:
        clamp(32px, 5vh, 58px);

    margin-left:
        clamp(0px, 9vw, 150px);
}

.ma-hero__intro > p {
    margin:
        0 0 30px;

    max-width: 500px;

    font-size:
        clamp(15px, 1.3vw, 18px);

    line-height:
        1.75;

    font-weight:
        350;

    color:
        rgba(247,247,245,.67);
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.ma-hero__buttons {
    display: flex;
    align-items: center;

    gap:
        clamp(22px, 3vw, 40px);

    flex-wrap: wrap;
}

.ma-btn {
    display: inline-flex;
    align-items: center;

    font-family:
        var(--ma-body);

    transition:
        all .35s var(--ma-transition);
}

.ma-btn--primary {
    min-height:
        56px;

    padding:
        0 23px;

    gap:
        38px;

    background:
        var(--ma-yellow);

    color:
        var(--ma-navy) !important;

    font-size:
        12px;

    font-weight:
        650;

    letter-spacing:
        .02em;
}

.ma-btn--primary:hover {
    transform:
        translateY(-3px);

    background:
        #FFCA3A;
}

.ma-btn__arrow {
    font-size:
        18px;
}

.ma-btn--text {
    position: relative;

    padding:
        16px 0;

    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    font-size:
        12px;

    font-weight:
        500;

    color:
        rgba(247,247,245,.78);
}

.ma-btn__line {
    display: block;

    width: 100%;
    height: 1px;

    background:
        rgba(255,255,255,.27);

    position: relative;

    overflow: hidden;
}

.ma-btn__line::after {
    content: "";

    position: absolute;

    inset: 0;

    transform:
        translateX(-101%);

    background:
        var(--ma-yellow);

    transition:
        transform .4s var(--ma-transition);
}

.ma-btn--text:hover {
    color:
        var(--ma-white);
}

.ma-btn--text:hover .ma-btn__line::after {
    transform:
        translateX(0);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.ma-hero__visual {
    position: relative;

    min-width: 0;

    padding-top:
        24px;
}

.ma-hero__image-frame {
    position: relative;

    width: min(100%, 570px);

    margin-left: auto;

    aspect-ratio:
        4 / 5;

    overflow: hidden;

    background:
        #0A2849;
}

.ma-hero__image-frame::before {
    content: "";

    position: absolute;

    z-index: 2;

    inset:
        0 auto 0 0;

    width: 1px;

    background:
        rgba(245,189,42,.65);
}


/* TEMP PLACEHOLDER */

.ma-image-placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 12px;

    background:
        linear-gradient(
            135deg,
            #0C2C50,
            #12385B
        );

    color:
        rgba(255,255,255,.55);

    font-family:
        var(--ma-body);

    font-size:
        12px;

    font-weight:
        600;

    letter-spacing:
        .12em;

    text-align: center;
}

.ma-image-placeholder::before {
    content: "";

    position: absolute;

    inset: 9%;

    border:
        1px solid rgba(255,255,255,.08);
}

.ma-image-placeholder small {
    font-size:
        8px;

    font-weight:
        500;

    letter-spacing:
        .16em;

    color:
        rgba(255,255,255,.30);
}


/* REAL IMAGE LATER */

.ma-hero__image-frame img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center;

    display: block;
}


/* INDEX */

.ma-hero__visual-index {
    position: absolute;

    top: 5px;
    right: -7px;

    display: flex;
    align-items: center;

    gap: 10px;

    transform:
        rotate(90deg)
        translateX(100%);

    transform-origin:
        top right;

    font-family:
        var(--ma-body);

    font-size:
        9px;

    font-weight:
        600;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    color:
        rgba(255,255,255,.35);
}

.ma-hero__visual-index span:first-child {
    color:
        var(--ma-yellow);
}


/* CREDENTIAL */

.ma-hero__credential {
    position: absolute;

    left:
        clamp(-72px, -4vw, -38px);

    bottom:
        clamp(30px, 5vw, 70px);

    width:
        min(310px, 58%);

    padding:
        18px 0 0 20px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    border-left:
        1px solid var(--ma-yellow);

    font-size:
        10px;

    line-height:
        1.45;

    color:
        rgba(247,247,245,.54);
}

.ma-hero__credential-label {
    margin-bottom:
        5px;

    font-size:
        11px;

    font-weight:
        600;

    color:
        var(--ma-white);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.ma-hero__bottom {
    position: absolute;

    z-index: 3;

    left: 0;
    right: 0;
    bottom: 0;

    max-width:
        calc(
            var(--ma-container)
            + (var(--ma-gutter) * 2)
        );

    margin: 0 auto;

    padding:
        0
        var(--ma-gutter)
        32px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;
}

.ma-hero__specialties {
    display: flex;
    align-items: center;

    gap:
        clamp(12px, 2vw, 28px);

    font-size:
        9px;

    font-weight:
        600;

    letter-spacing:
        .11em;

    text-transform:
        uppercase;

    color:
        rgba(247,247,245,.38);
}

.ma-hero__specialties i {
    width: 3px;
    height: 3px;

    border-radius:
        50%;

    background:
        var(--ma-yellow);
}

.ma-scroll-cue {
    display: flex;
    align-items: center;

    gap: 16px;

    font-size:
        9px;

    font-weight:
        600;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    color:
        rgba(247,247,245,.42) !important;
}

.ma-scroll-cue__line {
    width: 62px;
    height: 1px;

    position: relative;

    overflow: hidden;

    background:
        rgba(255,255,255,.18);
}

.ma-scroll-cue__line::after {
    content: "";

    position: absolute;

    inset: 0;

    transform:
        translateX(-100%);

    background:
        var(--ma-yellow);

    animation:
        maScrollLine 2.5s ease-in-out infinite;
}

@keyframes maScrollLine {

    0% {
        transform:
            translateX(-100%);
    }

    55% {
        transform:
            translateX(0%);
    }

    100% {
        transform:
            translateX(100%);
    }
}


/* =========================================================
   REVEAL
========================================================= */

.ma-reveal {
    opacity: 0;

    transform:
        translateY(26px);

    transition:
        opacity .9s var(--ma-transition),
        transform .9s var(--ma-transition);
}

.ma-reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.ma-hero__title.ma-reveal {
    transition-delay:
        .08s;
}

.ma-hero__intro.ma-reveal {
    transition-delay:
        .16s;
}

.ma-hero__visual.ma-reveal {
    transition-delay:
        .22s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {

    .ma-nav {
        gap: 20px;
    }

    .ma-nav a {
        font-size: 12px;
    }

    .ma-hero__grid {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(330px, .95fr);

        gap: 50px;
    }

    .ma-hero__intro {
        margin-left: 0;
    }

}


/* =========================================================
   MOBILE NAV BREAKPOINT
========================================================= */

@media (max-width: 980px) {

    :root {
        --ma-header-height:
            82px;
    }

    .ma-nav,
    .ma-header__cta {
        display: none;
    }

    .ma-menu-toggle {
        display: block;
    }

    .ma-header__inner {
        min-height:
            var(--ma-header-height);
    }

    .ma-header.is-scrolled .ma-header__inner {
        min-height: 68px;
    }

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

    .ma-hero__grid {
        min-height: auto;

        padding-top:
            150px;

        padding-bottom:
            150px;

        grid-template-columns:
            1fr;

        gap:
            66px;
    }

    .ma-hero__content {
        max-width:
            760px;
    }

    .ma-hero__title {
        max-width:
            820px;

        font-size:
            clamp(54px, 9vw, 88px);
    }

    .ma-hero__intro {
        max-width:
            520px;

        margin-left:
            clamp(0px, 8vw, 70px);
    }

    .ma-hero__visual {
        width:
            min(80%, 620px);

        margin-left:
            auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    :root {
        --ma-gutter: 20px;
    }

    .ma-brand {
        min-width: 0;
    }

    .ma-brand__mark {
        font-size: 9px;
    }

    .ma-hero__grid {
        padding-top:
            126px;

        padding-bottom:
            130px;

        gap:
            52px;
    }

    .ma-hero__eyebrow {
        margin-bottom: 28px;

        align-items: flex-start;

        font-size: 9px;

        line-height: 1.5;
    }

    .ma-hero__eyebrow-line {
        margin-top: 6px;

        width: 26px;
    }

    .ma-hero__title {
        font-size:
            clamp(47px, 15vw, 70px);

        line-height:
            .93;

        letter-spacing:
            -.058em;
    }

    .ma-hero__intro {
        margin-top: 30px;
        margin-left: 0;

        width: 100%;
    }

    .ma-hero__intro > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .ma-hero__buttons {
        flex-direction: column;
        align-items: flex-start;

        gap: 16px;
    }

    .ma-btn--primary {
        width: 100%;

        justify-content:
            space-between;

        min-height: 58px;
    }

    .ma-hero__visual {
        width: calc(100% - 26px);

        margin-left: 26px;

        padding-top: 0;
    }

    .ma-hero__image-frame {
        width: 100%;

        aspect-ratio:
            4 / 5;
    }

    .ma-hero__credential {
        left: -26px;
        bottom: 30px;

        width: 78%;

        padding-left: 16px;
    }

    .ma-hero__visual-index {
        display: none;
    }

    .ma-hero__bottom {
        position: relative;

        padding-bottom:
            28px;

        flex-direction: column;
        align-items: flex-start;

        gap: 24px;
    }

    .ma-hero__specialties {
        width: 100%;

        align-items: flex-start;
        flex-direction: column;

        gap: 7px;

        line-height: 1.4;
    }

    .ma-hero__specialties i {
        display: none;
    }

    .ma-scroll-cue {
        display: none;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 390px) {

    .ma-hero__title {
        font-size:
            clamp(42px, 14.4vw, 58px);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ma-reveal,
    .ma-scroll-cue__line::after {
        animation: none !important;
        transition: none !important;
    }

    .ma-reveal {
        opacity: 1;
        transform: none;
    }

}
/* =========================================================
   HOME — REMOVE SALIENT CHROME TEMPORARILY
========================================================= */

.home #header-outer,
.home #header-space {
    display: none !important;
}

.home #footer-outer {
    display: none !important;
}

.home #ajax-content-wrap {
    margin-top: 0 !important;
}

.home .container-wrap {
    padding-top: 0 !important;
}
html.ma-menu-open,
html.ma-menu-open body {
    overflow: hidden;
}

/* =========================================================
   HOME — 02 / APPROACH
========================================================= */

.ma-approach {
    position: relative;

    background:
        var(--ma-silver);

    color:
        var(--ma-navy);

    padding:
        clamp(95px, 11vw, 180px)
        var(--ma-gutter)
        clamp(90px, 10vw, 160px);
}

.ma-approach__inner {
    width: 100%;
    max-width:
        var(--ma-container);

    margin:
        0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.ma-section-label {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom:
        clamp(50px, 7vw, 105px);

    font-family:
        var(--ma-body);

    font-size:
        9px;

    font-weight:
        650;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;

    color:
        rgba(4, 29, 59, .48);
}

.ma-section-label span:first-child {
    color:
        var(--ma-blue);
}


/* =========================================================
   STATEMENT
========================================================= */

.ma-approach__statement {
    width:
        min(100%, 1220px);
}

.ma-approach__statement h2 {
    margin: 0;

    font-family:
        var(--ma-display);

    font-size:
        clamp(46px, 6.1vw, 104px);

    line-height:
        .96;

    font-weight:
        500;

    letter-spacing:
        -.057em;

    color:
        var(--ma-navy);
}

.ma-approach__statement h2 span {
    display: block;

    color:
        var(--ma-blue);
}


/* =========================================================
   TEXT AREA
========================================================= */

.ma-approach__content {
    display: grid;

    grid-template-columns:
        minmax(100px, 1fr)
        minmax(320px, 500px);

    gap:
        clamp(45px, 8vw, 135px);

    margin-top:
        clamp(65px, 8vw, 125px);

    margin-left:
        clamp(0px, 14vw, 230px);
}

.ma-approach__line {
    width: 100%;
    height: 1px;

    margin-top: 10px;

    background:
        rgba(4, 29, 59, .22);
}

.ma-approach__copy {
    max-width:
        500px;
}

.ma-approach__copy p {
    margin:
        0 0 22px;

    font-family:
        var(--ma-body);

    font-size:
        15px;

    line-height:
        1.75;

    font-weight:
        400;

    color:
        rgba(4, 29, 59, .67);
}

.ma-approach__copy .ma-approach__lead {
    font-size:
        clamp(19px, 1.7vw, 24px);

    line-height:
        1.5;

    font-weight:
        450;

    color:
        var(--ma-navy);
}


/* =========================================================
   EDITORIAL LINK
========================================================= */

.ma-link-arrow {
    width:
        100%;

    margin-top:
        34px;

    padding:
        18px 0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    border-top:
        1px solid rgba(4,29,59,.22);

    border-bottom:
        1px solid rgba(4,29,59,.22);

    font-family:
        var(--ma-body);

    font-size:
        11px;

    font-weight:
        650;

    letter-spacing:
        .025em;

    color:
        var(--ma-navy) !important;

    transition:
        padding .35s var(--ma-transition),
        color .35s ease;
}

.ma-link-arrow__icon {
    font-size:
        18px;

    transition:
        transform .35s var(--ma-transition);
}

.ma-link-arrow:hover {
    padding-left:
        10px;

    padding-right:
        10px;

    color:
        var(--ma-blue) !important;
}

.ma-link-arrow:hover .ma-link-arrow__icon {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   INDEX
========================================================= */

.ma-approach__index {
    margin-top:
        clamp(95px, 11vw, 165px);

    border-top:
        1px solid rgba(4,29,59,.20);
}

.ma-approach__index-item {
    min-height:
        102px;

    display:
        grid;

    grid-template-columns:
        90px 1fr;

    align-items:
        center;

    gap:
        20px;

    border-bottom:
        1px solid rgba(4,29,59,.20);

    transition:
        padding .35s var(--ma-transition),
        background .35s ease;
}

.ma-approach__index-number {
    font-size:
        9px;

    font-weight:
        650;

    letter-spacing:
        .12em;

    color:
        var(--ma-blue);
}

.ma-approach__index-item > div {
    display:
        flex;

    align-items:
        baseline;

    justify-content:
        space-between;

    gap:
        40px;
}

.ma-approach__index-item strong {
    font-family:
        var(--ma-display);

    font-size:
        clamp(18px, 1.7vw, 25px);

    font-weight:
        500;

    letter-spacing:
        -.025em;

    color:
        var(--ma-navy);
}

.ma-approach__index-item > div > span {
    font-size:
        10px;

    font-weight:
        500;

    letter-spacing:
        .03em;

    color:
        rgba(4,29,59,.45);
}


/* DESKTOP HOVER */

@media (hover: hover) {

    .ma-approach__index-item:hover {
        padding-left:
            14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ma-approach__content {
        grid-template-columns:
            1fr;

        margin-left:
            clamp(0px, 7vw, 60px);

        gap:
            30px;
    }

    .ma-approach__line {
        width:
            90px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ma-approach {
        padding-top:
            88px;

        padding-bottom:
            90px;
    }

    .ma-section-label {
        margin-bottom:
            44px;
    }

    .ma-approach__statement h2 {
        font-size:
            clamp(42px, 12vw, 62px);

        line-height:
            .98;
    }

    .ma-approach__content {
        margin-top:
            52px;

        margin-left:
            0;

        gap:
            26px;
    }

    .ma-approach__copy .ma-approach__lead {
        font-size:
            19px;
    }

    .ma-approach__index {
        margin-top:
            82px;
    }

    .ma-approach__index-item {
        min-height:
            auto;

        grid-template-columns:
            38px 1fr;

        align-items:
            flex-start;

        gap:
            12px;

        padding:
            24px 0;
    }

    .ma-approach__index-item > div {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            6px;
    }

    .ma-approach__index-item strong {
        font-size:
            19px;
    }

}
.home #header-outer,
.home #header-space {
    display: none !important;
}
/* Hide Salient default header on homepage */

body.home #header-outer,
body.home #header-space,
body.home #search-outer {
    display: none !important;
}

body.home #ajax-content-wrap {
    margin-top: 0 !important;
}

body.home .container-wrap {
    padding-top: 0 !important;
}
/* =========================================================
   HEADER — FINAL OVERRIDES
========================================================= */

.ma-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 78px !important;

    z-index: 99990 !important;

    margin: 0 !important;
    padding: 0 !important;

    background: rgba(4, 29, 59, .96) !important;

    border: 0 !important;
    box-shadow: none !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ma-header::after {
    left: var(--ma-gutter) !important;
    right: var(--ma-gutter) !important;

    background: rgba(255,255,255,.12) !important;
}

.ma-header__inner {
    width: 100% !important;
    max-width: 1480px !important;

    height: 78px !important;
    min-height: 78px !important;

    margin: 0 auto !important;
    padding: 0 var(--ma-gutter) !important;

    display: flex !important;
    align-items: center !important;
}


/* LOGO */

.ma-brand,
.ma-brand:link,
.ma-brand:visited {
    display: flex !important;
    align-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;
}

.ma-brand__mark {
    color: #fff !important;

    font-family: var(--ma-display) !important;
    font-size: 11px !important;
    font-weight: 600 !important;

    line-height: 1 !important;
}


/* NAV */

.ma-header .ma-nav {
    margin: 0 0 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;

    gap: clamp(22px, 2.2vw, 40px) !important;
}

.ma-header .ma-nav a,
.ma-header .ma-nav a:link,
.ma-header .ma-nav a:visited {
    margin: 0 !important;
    padding: 10px 0 !important;

    font-family: var(--ma-body) !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 500 !important;

    color: rgba(255,255,255,.72) !important;

    text-decoration: none !important;
}

.ma-header .ma-nav a:hover {
    color: #fff !important;
}


/* CTA */

.ma-header .ma-header__cta,
.ma-header .ma-header__cta:link,
.ma-header .ma-header__cta:visited {
    height: 46px !important;
    min-height: 46px !important;

    margin: 0 0 0 28px !important;
    padding: 0 20px !important;

    display: inline-flex !important;
    align-items: center !important;

    background: var(--ma-yellow) !important;
    color: var(--ma-navy) !important;

    border: 0 !important;
    border-radius: 0 !important;

    font-family: var(--ma-body) !important;
    font-size: 12px !important;
    font-weight: 700 !important;

    text-decoration: none !important;
}


/* WP ADMIN BAR */

body.admin-bar .ma-header {
    top: 32px !important;
}

@media (max-width: 782px) {
    body.admin-bar .ma-header {
        top: 46px !important;
    }
}


/* REMOVE WPBAKERY SPACE CREATED BY HEADER RAW HTML */

.wpb_raw_code:has(.ma-header),
.wpb_content_element:has(.ma-header),
.vc_column-inner:has(.ma-header) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* HEADER WHEN SCROLLING */

.ma-header.is-scrolled {
    height: 68px !important;

    background: rgba(4, 29, 59, .985) !important;
}

.ma-header.is-scrolled .ma-header__inner {
    height: 68px !important;
    min-height: 68px !important;
}


/* MOBILE */

@media (max-width: 980px) {

    .ma-header {
        height: 70px !important;
    }

    .ma-header__inner {
        height: 70px !important;
        min-height: 70px !important;
    }

    .ma-header .ma-nav,
    .ma-header .ma-header__cta {
        display: none !important;
    }

    .ma-menu-toggle {
        display: block !important;
        margin-left: auto !important;
    }

}
body.home #footer-outer,
body.home #copyright {
    display: none !important;
}
/* =========================================================
   HOME — 03 / ENDOMETRIOSIS
========================================================= */

.ma-endo {
    position: relative;

    display: grid;
    grid-template-columns: 52% 48%;

    min-height: 900px;

    background: var(--ma-yellow);
    color: var(--ma-navy);

    overflow: hidden;
}


/* CONTENT */

.ma-endo__content {
    position: relative;

    padding:
        clamp(90px, 9vw, 150px)
        clamp(40px, 6vw, 100px)
        clamp(70px, 7vw, 110px)
        var(--ma-gutter);

    display: flex;
    flex-direction: column;
}

.ma-section-label--dark {
    color: rgba(4,29,59,.55);
}

.ma-section-label--dark span:first-child {
    color: var(--ma-navy);
}


/* TITLE */

.ma-endo__text {
    margin-top: auto;
    margin-bottom: auto;
}

.ma-endo__kicker {
    max-width: 440px;

    margin: 0 0 32px;

    font-family: var(--ma-body);
    font-size: 11px;
    line-height: 1.5;

    font-weight: 650;

    letter-spacing: .09em;
    text-transform: uppercase;

    color: rgba(4,29,59,.58);
}

.ma-endo h2 {
    margin: 0;

    font-family: var(--ma-display);

    font-size: clamp(62px, 7vw, 122px);
    line-height: .86;

    font-weight: 520;

    letter-spacing: -.065em;

    color: var(--ma-navy);
}

.ma-endo h2 span {
    display: block;

    color: var(--ma-blue);
}


/* COPY */

.ma-endo__copy {
    width: min(100%, 520px);

    margin-top: clamp(45px, 5vw, 72px);
    margin-left: clamp(0px, 6vw, 100px);
}

.ma-endo__copy p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.75;

    color: rgba(4,29,59,.70);
}

.ma-endo__copy .ma-endo__lead {
    font-size: clamp(19px, 1.65vw, 24px);
    line-height: 1.45;

    font-weight: 500;

    color: var(--ma-navy);
}


/* ACTIONS */

.ma-endo__actions {
    width: min(100%, 520px);

    margin:
        35px 0 0
        clamp(0px, 6vw, 100px);

    display: flex;
    align-items: center;

    gap: 28px;

    flex-wrap: wrap;
}

.ma-btn--dark {
    min-height: 58px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background: var(--ma-navy);
    color: #fff !important;

    font-size: 12px;
    font-weight: 650;

    transition:
        transform .3s var(--ma-transition),
        background .3s ease;
}

.ma-btn--dark:hover {
    transform: translateY(-3px);

    background: var(--ma-blue);
}

.ma-endo__secondary {
    position: relative;

    padding: 9px 0;

    font-size: 11px;
    font-weight: 650;

    color: var(--ma-navy) !important;

    border-bottom: 1px solid rgba(4,29,59,.35);
}


/* SYMPTOM STRIP */

.ma-endo__symptoms {
    margin-top: auto;

    padding-top: 30px;

    display: flex;
    align-items: center;

    gap: 18px;

    border-top: 1px solid rgba(4,29,59,.22);

    font-size: 9px;
    font-weight: 650;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(4,29,59,.58);
}

.ma-endo__symptoms i {
    width: 3px;
    height: 3px;

    background: var(--ma-navy);

    border-radius: 50%;
}


/* =========================================================
   IMAGE
========================================================= */

.ma-endo__visual {
    position: relative;

    min-width: 0;

    background: var(--ma-navy);
}

.ma-endo__image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.ma-image-placeholder--endo {
    background:
        linear-gradient(
            145deg,
            #061e3a,
            #123f66
        );
}

.ma-endo__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* DARK OVERLAY FOR FUTURE IMAGE */

.ma-endo__image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(4,29,59,.05),
            rgba(4,29,59,.32)
        );
}


/* CAPTION */

.ma-endo__image-caption {
    position: absolute;

    z-index: 3;

    left: 42px;
    right: 42px;
    bottom: 38px;

    padding-top: 17px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.22);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .09em;

    text-transform: uppercase;

    color: rgba(255,255,255,.55);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .ma-endo {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .ma-endo__content {
        min-height: 820px;
    }

    .ma-endo__visual {
        min-height: 720px;
    }

}


@media (max-width: 700px) {

    .ma-endo__content {
        min-height: auto;

        padding:
            88px
            var(--ma-gutter)
            65px;
    }

    .ma-endo h2 {
        font-size: clamp(58px, 17vw, 82px);
    }

    .ma-endo__text {
        margin: 20px 0 0;
    }

    .ma-endo__copy,
    .ma-endo__actions {
        margin-left: 0;
    }

    .ma-endo__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .ma-btn--dark {
        width: 100%;
    }

    .ma-endo__symptoms {
        margin-top: 70px;

        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .ma-endo__symptoms i {
        display: none;
    }

    .ma-endo__visual {
        min-height: 570px;
    }

    .ma-endo__image-caption {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

}
/* =========================================================
   FULL BLEED UTILITY
   Fuerza secciones a tocar ambos bordes del viewport
========================================================= */

.ma-fullbleed {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Evitar scroll horizontal por wrappers de Salient */
html,
body {
    overflow-x: clip;
}
/* =========================================================
   HOME — 03 / ENDOMETRIOSIS
   NUEVA VERSIÓN
========================================================= */


/* ---------------------------------------------------------
   BREAK OUT OF SALIENT CONTAINER
   Esta técnica centra la sección respecto al viewport.
   No acumula márgenes hacia la izquierda.
--------------------------------------------------------- */

.max-endo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: 100vw;
    max-width: 100vw;

    margin: 0 !important;
    padding: 0 !important;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    min-height: 900px;

    background: #F5BD2A;

    overflow: hidden;
}


/* ---------------------------------------------------------
   PANELS
--------------------------------------------------------- */

.max-endo__panel {
    position: relative;
    min-width: 0;
}

.max-endo__panel--content {
    background: #F5BD2A;
    color: #041D3B;
}

.max-endo__panel--visual {
    background: #041D3B;
}


/* ---------------------------------------------------------
   CONTENT INNER
--------------------------------------------------------- */

.max-endo__inner {
    width: 100%;
    height: 100%;

    min-height: 900px;

    padding:
        clamp(70px, 7vw, 120px)
        clamp(40px, 5vw, 82px)
        clamp(55px, 6vw, 90px)
        clamp(28px, 5vw, 80px);

    display: flex;
    flex-direction: column;
}


/* ---------------------------------------------------------
   SECTION LABEL
--------------------------------------------------------- */

.max-endo__label {
    display: flex;
    align-items: center;

    gap: 14px;

    font-family: var(--ma-body) !important;
    font-size: 9px !important;
    line-height: 1 !important;

    font-weight: 700 !important;

    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(4, 29, 59, .55);
}

.max-endo__label span:first-child {
    color: #041D3B;
}


/* ---------------------------------------------------------
   MAIN CONTENT
--------------------------------------------------------- */

.max-endo__main {
    width: 100%;

    margin: auto 0;
}

.max-endo__eyebrow {
    max-width: 520px;

    margin: 0 0 30px !important;

    font-family: var(--ma-body) !important;

    font-size: 10px !important;
    line-height: 1.5 !important;

    font-weight: 700 !important;

    letter-spacing: .09em;
    text-transform: uppercase;

    color: rgba(4, 29, 59, .60);
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.max-endo__title {
    margin: 0 !important;
    padding: 0 !important;

    font-family: var(--ma-display) !important;

    font-size: clamp(58px, 6.6vw, 112px) !important;
    line-height: .88 !important;

    font-weight: 500 !important;

    letter-spacing: -.065em !important;

    color: #041D3B !important;
}

.max-endo__title span {
    display: block;

    color: #30638E !important;
}


/* ---------------------------------------------------------
   COPY
--------------------------------------------------------- */

.max-endo__copy {
    width: min(100%, 520px);

    margin:
        clamp(42px, 5vw, 70px)
        0
        0
        clamp(0px, 5vw, 80px);
}

.max-endo__copy p {
    margin: 0 0 18px !important;

    font-family: var(--ma-body) !important;

    font-size: 14px !important;
    line-height: 1.75 !important;

    font-weight: 400 !important;

    color: rgba(4, 29, 59, .72) !important;
}

.max-endo__copy .max-endo__lead {
    margin-bottom: 18px !important;

    font-size: clamp(19px, 1.5vw, 23px) !important;
    line-height: 1.45 !important;

    font-weight: 500 !important;

    color: #041D3B !important;
}


/* ---------------------------------------------------------
   ACTIONS
--------------------------------------------------------- */

.max-endo__actions {
    width: min(100%, 520px);

    margin:
        30px
        0
        0
        clamp(0px, 5vw, 80px);

    display: flex;
    align-items: center;

    gap: 26px;

    flex-wrap: wrap;
}

.max-endo__primary {
    min-height: 56px;

    padding: 0 22px;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 36px;

    background: #041D3B !important;

    color: #fff !important;

    font-family: var(--ma-body) !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    border: 0 !important;
    border-radius: 0 !important;

    transition:
        transform .3s var(--ma-transition),
        background .3s ease;
}

.max-endo__primary:hover {
    transform: translateY(-2px);

    background: #30638E !important;

    color: #fff !important;
}

.max-endo__secondary {
    padding: 10px 0;

    display: inline-flex !important;
    align-items: center;

    gap: 16px;

    border-bottom: 1px solid rgba(4, 29, 59, .35);

    font-family: var(--ma-body) !important;

    font-size: 11px !important;
    line-height: 1 !important;

    font-weight: 650 !important;

    color: #041D3B !important;

    text-decoration: none !important;
}

.max-endo__secondary:hover {
    color: #30638E !important;
}


/* ---------------------------------------------------------
   TOPICS
--------------------------------------------------------- */

.max-endo__topics {
    padding-top: 25px;

    display: flex;
    align-items: center;

    gap: 16px;

    border-top: 1px solid rgba(4, 29, 59, .20);

    font-family: var(--ma-body) !important;

    font-size: 8px !important;
    line-height: 1.4 !important;

    font-weight: 650 !important;

    letter-spacing: .09em;
    text-transform: uppercase;

    color: rgba(4, 29, 59, .62);
}

.max-endo__topics i {
    width: 3px;
    height: 3px;

    flex: 0 0 3px;

    border-radius: 50%;

    background: #041D3B;
}


/* =========================================================
   VISUAL
========================================================= */

.max-endo__panel--visual {
    min-height: 900px;
}

.max-endo__image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


/* PLACEHOLDER */

.max-endo__placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background:
        radial-gradient(
            circle at 50% 45%,
            #103d65 0%,
            #082b50 45%,
            #041D3B 100%
        );

    font-family: var(--ma-body) !important;

    color: rgba(255,255,255,.48);
}

.max-endo__placeholder::before {
    content: "";

    position: absolute;

    top: 8%;
    right: 8%;
    bottom: 8%;
    left: 8%;

    border: 1px solid rgba(255,255,255,.08);
}

.max-endo__placeholder span {
    position: relative;
    z-index: 2;

    font-size: 11px !important;
    font-weight: 700 !important;

    letter-spacing: .12em;
}

.max-endo__placeholder small {
    position: relative;
    z-index: 2;

    font-size: 7px !important;
    font-weight: 600 !important;

    letter-spacing: .15em;

    color: rgba(255,255,255,.27);
}


/* REAL IMAGE */

.max-endo__image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* OVERLAY */

.max-endo__image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(4, 29, 59, 0) 50%,
            rgba(4, 29, 59, .34) 100%
        );
}


/* ---------------------------------------------------------
   IMAGE CAPTION
--------------------------------------------------------- */

.max-endo__caption {
    position: absolute;

    z-index: 5;

    left: clamp(25px, 3vw, 46px);
    right: clamp(25px, 3vw, 46px);
    bottom: clamp(25px, 3vw, 42px);

    padding-top: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255,255,255,.20);

    font-family: var(--ma-body) !important;

    font-size: 8px !important;
    line-height: 1.4 !important;

    font-weight: 650 !important;

    letter-spacing: .10em;
    text-transform: uppercase;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   SALIENT CLEANUP FOR THIS BLOCK
========================================================= */

.wpb_raw_code:has(.max-endo),
.wpb_content_element:has(.max-endo) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.vc_column-inner:has(.max-endo) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .max-endo {
        grid-template-columns: 1fr;
    }

    .max-endo__inner {
        min-height: 780px;
    }

    .max-endo__panel--visual {
        min-height: 720px;
    }

    .max-endo__main {
        margin-top: 100px;
        margin-bottom: 100px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .max-endo__inner {
        min-height: auto;

        padding:
            78px
            20px
            55px;
    }

    .max-endo__main {
        margin:
            72px
            0
            0;
    }

    .max-endo__title {
        font-size: clamp(52px, 15vw, 72px) !important;
        line-height: .91 !important;
    }

    .max-endo__copy {
        width: 100%;

        margin:
            42px
            0
            0;
    }

    .max-endo__actions {
        width: 100%;

        margin:
            30px
            0
            0;

        flex-direction: column;
        align-items: stretch;
    }

    .max-endo__primary {
        width: 100%;

        min-height: 58px;

        justify-content: space-between !important;
    }

    .max-endo__secondary {
        width: 100%;

        justify-content: space-between;
    }

    .max-endo__topics {
        margin-top: 70px;

        align-items: flex-start;
        flex-direction: column;

        gap: 7px;
    }

    .max-endo__topics i {
        display: none;
    }

    .max-endo__panel--visual {
        min-height: 560px;
    }

    .max-endo__caption {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

}
/* =========================================================
   HOME — 04 / CIRUGÍA ROBÓTICA
   VERSIÓN ESTABLE — SIN 100VW / SIN TRANSFORMS
========================================================= */

.mxr-robot,
.mxr-robot *,
.mxr-robot *::before,
.mxr-robot *::after {
    box-sizing: border-box;
}


.mxr-robot {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #041D3B;
    color: #F7F7F5;
}


.mxr-robot__inner {
    width: 100%;

    max-width: 1560px;

    margin: 0 auto;

    padding:
        clamp(85px, 8vw, 140px)
        clamp(24px, 5vw, 76px)
        clamp(75px, 7vw, 120px);
}


/* =========================================================
   TOP
========================================================= */

.mxr-robot__top {
    width: 100%;

    display: grid;

    grid-template-columns:
        120px
        minmax(0, 1.25fr)
        minmax(280px, .65fr);

    gap:
        clamp(28px, 4vw, 70px);

    align-items: start;
}


/* LABEL */

.mxr-robot__number {
    padding-top: 9px;

    display: flex;

    gap: 11px;

    font-family: var(--ma-body);

    font-size: 9px;
    line-height: 1.4;

    font-weight: 650;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}

.mxr-robot__number span:first-child {
    color: #F5BD2A;
}


/* =========================================================
   HEADING
========================================================= */

.mxr-robot__heading {
    min-width: 0;
}

.mxr-robot__heading h2 {
    max-width: 800px;

    margin: 0 !important;
    padding: 0 !important;

    font-family: var(--ma-display) !important;

    font-size:
        clamp(50px, 6vw, 100px) !important;

    line-height: .92 !important;

    font-weight: 500 !important;

    letter-spacing: -.058em !important;

    color: #F7F7F5 !important;
}

.mxr-robot__heading h2 span {
    display: block;

    color: #7FB1CC !important;
}


/* =========================================================
   INTRO
========================================================= */

.mxr-robot__intro {
    min-width: 0;

    padding-top: 8px;
}

.mxr-robot__intro p {
    margin: 0 0 18px !important;

    font-family: var(--ma-body) !important;

    font-size: 14px !important;

    line-height: 1.7 !important;

    font-weight: 400 !important;

    color: rgba(247,247,245,.58) !important;
}

.mxr-robot__intro .mxr-robot__lead {
    font-size:
        clamp(18px, 1.4vw, 22px) !important;

    line-height: 1.48 !important;

    font-weight: 500 !important;

    color: #F7F7F5 !important;
}


/* CTA */

.mxr-robot__cta {
    width: 100%;

    margin-top: 30px;

    padding: 17px 0;

    display: flex !important;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,.18);

    border-bottom:
        1px solid rgba(255,255,255,.18);

    font-family: var(--ma-body) !important;

    font-size: 11px !important;

    line-height: 1.2 !important;

    font-weight: 650 !important;

    color: #F7F7F5 !important;

    text-decoration: none !important;

    transition:
        padding .3s var(--ma-transition),
        color .3s ease;
}

.mxr-robot__cta:hover {
    padding-left: 8px;
    padding-right: 8px;

    color: #F5BD2A !important;
}


/* =========================================================
   IMAGE
========================================================= */

.mxr-robot__media {
    position: relative;

    width: 100%;

    margin-top:
        clamp(65px, 7vw, 110px);

    aspect-ratio: 16 / 7;

    overflow: hidden;

    background: #082B50;
}


/* YELLOW DETAIL */

.mxr-robot__media::before {
    content: "";

    position: absolute;

    z-index: 4;

    top: 0;
    left: 0;

    width: 2px;
    height: 100%;

    background: #F5BD2A;
}


/* PLACEHOLDER */

.mxr-robot__placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background:
        radial-gradient(
            circle at 65% 45%,
            #154B76 0%,
            #0B3358 45%,
            #041D3B 100%
        );

    color: rgba(255,255,255,.48);

    font-family: var(--ma-body);
}

.mxr-robot__placeholder::before {
    content: "";

    position: absolute;

    top: 9%;
    right: 6%;
    bottom: 9%;
    left: 6%;

    border:
        1px solid rgba(255,255,255,.07);
}

.mxr-robot__placeholder span {
    position: relative;

    z-index: 2;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .12em;
}

.mxr-robot__placeholder small {
    position: relative;

    z-index: 2;

    font-size: 7px;

    line-height: 1.4;

    font-weight: 600;

    letter-spacing: .14em;

    color: rgba(255,255,255,.27);
}


/* REAL IMAGE LATER */

.mxr-robot__media img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* BOTTOM META */

.mxr-robot__media-bottom {
    position: absolute;

    z-index: 5;

    left: clamp(22px, 3vw, 42px);
    right: clamp(22px, 3vw, 42px);
    bottom: clamp(20px, 3vw, 36px);

    padding-top: 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid rgba(255,255,255,.18);

    font-family: var(--ma-body);

    font-size: 8px;

    font-weight: 650;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: rgba(255,255,255,.46);
}


/* =========================================================
   FACTS
========================================================= */

.mxr-robot__facts {
    width: 100%;

    margin-top:
        clamp(45px, 5vw, 75px);

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top:
        1px solid rgba(255,255,255,.15);

    border-bottom:
        1px solid rgba(255,255,255,.15);
}


.mxr-robot__fact {
    min-width: 0;

    min-height: 105px;

    padding:
        25px
        clamp(18px, 2vw, 30px);

    display: grid;

    grid-template-columns:
        34px minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    border-right:
        1px solid rgba(255,255,255,.15);
}


.mxr-robot__fact:first-child {
    padding-left: 0;
}

.mxr-robot__fact:last-child {
    border-right: 0;
}


.mxr-robot__fact-number {
    font-family: var(--ma-body);

    font-size: 9px;

    font-weight: 650;

    color: #F5BD2A;
}


.mxr-robot__fact > div {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.mxr-robot__fact strong {
    font-family: var(--ma-display);

    font-size:
        clamp(15px, 1.2vw, 19px);

    line-height: 1.25;

    font-weight: 500;

    color: #F7F7F5;
}


.mxr-robot__fact > div > span {
    font-family: var(--ma-body);

    font-size: 9px;

    line-height: 1.4;

    color: rgba(255,255,255,.38);
}


/* =========================================================
   SALIENT
========================================================= */

.wpb_raw_code:has(.mxr-robot),
.wpb_content_element:has(.mxr-robot) {
    width: 100% !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.vc_column-inner:has(.mxr-robot) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .mxr-robot__top {
        grid-template-columns:
            80px
            minmax(0, 1fr)
            minmax(250px, .65fr);

        gap: 30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .mxr-robot__top {
        grid-template-columns:
            70px
            minmax(0, 1fr);
    }

    .mxr-robot__intro {
        grid-column: 2;

        max-width: 520px;

        margin-top: 25px;
    }

    .mxr-robot__media {
        aspect-ratio: 4 / 3;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .mxr-robot__inner {
        padding:
            80px
            20px
            72px;
    }

    .mxr-robot__top {
        display: block;
    }

    .mxr-robot__number {
        margin-bottom: 45px;
    }

    .mxr-robot__heading h2 {
        font-size:
            clamp(48px, 14vw, 68px) !important;

        line-height: .94 !important;
    }

    .mxr-robot__intro {
        width: 100%;
        max-width: none;

        margin-top: 42px;
        padding-top: 0;
    }

    .mxr-robot__media {
        margin-top: 60px;

        aspect-ratio: 4 / 5;
    }

    .mxr-robot__media-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

    .mxr-robot__facts {
        grid-template-columns: 1fr;
    }

    .mxr-robot__fact {
        min-height: auto;

        padding: 23px 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.15);
    }

    .mxr-robot__fact:last-child {
        border-bottom: 0;
    }

}
/* =========================================================
   HOME — 04 / CIRUGÍA ROBÓTICA
========================================================= */

.max-robot {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: 100vw;
    max-width: 100vw;

    margin: 0 !important;
    padding: 0 !important;

    background: #041D3B;
    color: #F7F7F5;

    overflow: hidden;
}

.max-robot__inner {
    width: 100%;
    max-width: 1560px;

    margin: 0 auto;

    padding:
        clamp(90px, 9vw, 150px)
        var(--ma-gutter)
        clamp(80px, 8vw, 130px);
}


/* =========================================================
   TOP GRID
========================================================= */

.max-robot__top {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    gap:
        clamp(30px, 5vw, 80px);

    align-items: start;
}


/* LABEL */

.max-robot__label {
    display: flex;
    gap: 12px;

    padding-top: 10px;

    font-family: var(--ma-body);
    font-size: 9px;
    font-weight: 650;

    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}

.max-robot__label span:first-child {
    color: var(--ma-yellow);
}


/* =========================================================
   TITLE
========================================================= */

.max-robot__heading h2 {
    margin: 0 !important;

    font-family: var(--ma-display) !important;

    font-size:
        clamp(54px, 6.5vw, 110px) !important;

    line-height: .9 !important;

    font-weight: 500 !important;

    letter-spacing: -.062em !important;

    color: #F7F7F5 !important;
}

.max-robot__heading h2 span {
    display: block;

    color: var(--ma-sky);
}


/* =========================================================
   INTRO
========================================================= */

.max-robot__intro {
    padding-top: 10px;
}

.max-robot__intro p {
    margin: 0 0 18px !important;

    font-family: var(--ma-body) !important;

    font-size: 14px !important;
    line-height: 1.75 !important;

    color: rgba(255,255,255,.58) !important;
}

.max-robot__intro .max-robot__lead {
    font-size:
        clamp(18px, 1.45vw, 22px) !important;

    line-height: 1.5 !important;

    font-weight: 450 !important;

    color: #F7F7F5 !important;
}


/* LINK */

.max-robot__link {
    margin-top: 30px;

    padding: 17px 0;

    display: flex !important;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border-top:
        1px solid rgba(255,255,255,.18);

    border-bottom:
        1px solid rgba(255,255,255,.18);

    font-family: var(--ma-body) !important;

    font-size: 11px !important;
    font-weight: 650 !important;

    color: #F7F7F5 !important;

    text-decoration: none !important;

    transition:
        padding .3s var(--ma-transition),
        color .3s ease;
}

.max-robot__link:hover {
    padding-left: 10px;
    padding-right: 10px;

    color: var(--ma-yellow) !important;
}


/* =========================================================
   PANORAMIC VISUAL
========================================================= */

.max-robot__visual {
    position: relative;

    width: 100%;

    margin-top:
        clamp(70px, 8vw, 120px);

    aspect-ratio: 16 / 7;

    overflow: hidden;

    background: #082B50;
}

.max-robot__visual::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    z-index: 4;

    width: 1px;
    height: 100%;

    background: var(--ma-yellow);
}


/* PLACEHOLDER */

.max-robot__placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background:
        radial-gradient(
            circle at 65% 45%,
            #154B76,
            #082B50 46%,
            #041D3B 100%
        );

    font-family: var(--ma-body);

    color: rgba(255,255,255,.48);
}

.max-robot__placeholder::after {
    content: "";

    position: absolute;

    inset: 7%;

    border:
        1px solid rgba(255,255,255,.07);
}

.max-robot__placeholder span {
    position: relative;
    z-index: 2;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
}

.max-robot__placeholder small {
    position: relative;
    z-index: 2;

    font-size: 7px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.27);
}


/* REAL IMAGE */

.max-robot__visual img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* IMAGE META */

.max-robot__visual-meta {
    position: absolute;

    z-index: 5;

    left: clamp(25px, 3vw, 45px);
    right: clamp(25px, 3vw, 45px);
    bottom: clamp(22px, 3vw, 38px);

    padding-top: 16px;

    display: flex;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid rgba(255,255,255,.18);

    font-family: var(--ma-body);

    font-size: 8px;
    font-weight: 650;

    letter-spacing: .10em;
    text-transform: uppercase;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   BOTTOM DATA STRIP
========================================================= */

.max-robot__foot {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top:
        clamp(50px, 6vw, 90px);

    border-top:
        1px solid rgba(255,255,255,.16);

    border-bottom:
        1px solid rgba(255,255,255,.16);
}

.max-robot__credential {
    min-height: 110px;

    padding:
        28px
        clamp(20px, 2vw, 34px);

    display: grid;

    grid-template-columns:
        34px 1fr;

    gap: 14px;

    align-items: center;

    border-right:
        1px solid rgba(255,255,255,.16);
}

.max-robot__credential:first-child {
    padding-left: 0;
}

.max-robot__credential:last-child {
    border-right: 0;
}

.max-robot__credential-number {
    font-family: var(--ma-body);

    font-size: 9px;
    font-weight: 650;

    color: var(--ma-yellow);
}

.max-robot__credential div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.max-robot__credential strong {
    font-family: var(--ma-display);

    font-size:
        clamp(15px, 1.25vw, 19px);

    line-height: 1.2;

    font-weight: 500;

    color: #F7F7F5;
}

.max-robot__credential div span {
    font-family: var(--ma-body);

    font-size: 9px;

    color: rgba(255,255,255,.40);
}


/* =========================================================
   SALIENT CLEANUP
========================================================= */

.wpb_raw_code:has(.max-robot),
.wpb_content_element:has(.max-robot) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.vc_column-inner:has(.max-robot) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .max-robot__top {
        grid-template-columns:
            80px 1fr;

        gap: 30px;
    }

    .max-robot__intro {
        grid-column: 2;

        width: min(100%, 520px);

        margin-top: 20px;
    }

    .max-robot__visual {
        aspect-ratio: 4 / 3;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .max-robot__inner {
        padding:
            82px
            20px
            75px;
    }

    .max-robot__top {
        display: block;
    }

    .max-robot__label {
        margin-bottom: 50px;
    }

    .max-robot__heading h2 {
        font-size:
            clamp(50px, 15vw, 72px) !important;

        line-height: .92 !important;
    }

    .max-robot__intro {
        width: 100%;

        margin-top: 46px;
    }

    .max-robot__visual {
        margin-top: 65px;

        aspect-ratio: 4 / 5;
    }

    .max-robot__visual-meta {
        flex-direction: column;

        gap: 6px;
    }

    .max-robot__foot {
        grid-template-columns: 1fr;
    }

    .max-robot__credential {
        min-height: auto;

        padding: 24px 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.16);
    }

    .max-robot__credential:last-child {
        border-bottom: 0;
    }

}
/* =========================================================
   HOME — 05 / PROCEDIMIENTOS
========================================================= */

.mxp-procedures,
.mxp-procedures *,
.mxp-procedures *::before,
.mxp-procedures *::after {
    box-sizing: border-box;
}


.mxp-procedures {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #E4E5E9;
    color: #041D3B;
}


.mxp-procedures__inner {
    width: 100%;
    max-width: 1560px;

    margin: 0 auto;

    padding:
        clamp(90px, 9vw, 150px)
        clamp(24px, 5vw, 76px)
        clamp(85px, 8vw, 135px);
}


/* =========================================================
   HEADER
========================================================= */

.mxp-procedures__header {
    width: 100%;

    display: grid;

    grid-template-columns:
        130px
        minmax(0, 1.3fr)
        minmax(280px, .55fr);

    gap:
        clamp(28px, 4vw, 70px);

    align-items: start;
}


/* LABEL */

.mxp-procedures__label {
    padding-top: 10px;

    display: flex;
    gap: 12px;

    font-family: var(--ma-body);

    font-size: 9px;
    line-height: 1.4;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: rgba(4,29,59,.45);
}

.mxp-procedures__label span:first-child {
    color: #30638E;
}


/* TITLE */

.mxp-procedures__headline {
    min-width: 0;
}

.mxp-procedures__headline h2 {
    max-width: 900px;

    margin: 0 !important;
    padding: 0 !important;

    font-family: var(--ma-display) !important;

    font-size:
        clamp(52px, 6.2vw, 104px) !important;

    line-height: .92 !important;

    font-weight: 500 !important;

    letter-spacing: -.06em !important;

    color: #041D3B !important;
}

.mxp-procedures__headline h2 span {
    display: block;

    color: #30638E !important;
}


/* INTRO */

.mxp-procedures__intro {
    padding-top: 10px;
}

.mxp-procedures__intro p {
    margin: 0 0 17px !important;

    font-family: var(--ma-body) !important;

    font-size: 14px !important;
    line-height: 1.7 !important;

    color: rgba(4,29,59,.58) !important;
}

.mxp-procedures__intro p:first-child {
    font-size:
        clamp(18px, 1.4vw, 22px) !important;

    line-height: 1.5 !important;

    font-weight: 500 !important;

    color: #041D3B !important;
}


/* =========================================================
   PROCEDURE INDEX
========================================================= */

.mxp-procedures__list {
    width: 100%;

    margin-top:
        clamp(75px, 9vw, 135px);

    border-top:
        1px solid rgba(4,29,59,.20);
}


.mxp-procedure {
    position: relative;

    width: 100%;

    min-height: 112px;

    padding: 0 5px;

    display: grid !important;

    grid-template-columns:
        80px
        minmax(0, 1fr)
        minmax(180px, .4fr)
        45px;

    gap:
        clamp(16px, 2vw, 30px);

    align-items: center;

    border-bottom:
        1px solid rgba(4,29,59,.20);

    color: #041D3B !important;

    text-decoration: none !important;

    overflow: hidden;

    transition:
        padding .35s var(--ma-transition),
        color .35s ease;
}


/* HOVER BACKGROUND */

.mxp-procedure::before {
    content: "";

    position: absolute;

    z-index: 0;

    inset: 0;

    background: #041D3B;

    transform: translateY(101%);

    transition:
        transform .42s var(--ma-transition);
}


.mxp-procedure > * {
    position: relative;
    z-index: 2;
}


/* NUMBER */

.mxp-procedure__number {
    font-family: var(--ma-body);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .10em;

    color: #30638E;

    transition:
        color .3s ease;
}


/* TITLE */

.mxp-procedure strong {
    min-width: 0;

    font-family: var(--ma-display);

    font-size:
        clamp(20px, 2vw, 31px);

    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -.03em;

    color: #041D3B;

    transition:
        color .3s ease,
        transform .35s var(--ma-transition);
}


/* META */

.mxp-procedure__meta {
    font-family: var(--ma-body);

    font-size: 9px;

    line-height: 1.4;

    font-weight: 550;

    letter-spacing: .04em;

    color: rgba(4,29,59,.42);

    transition:
        color .3s ease;
}


/* ARROW */

.mxp-procedure__arrow {
    justify-self: end;

    font-family: var(--ma-body);

    font-size: 18px;

    color: #30638E;

    transition:
        color .3s ease,
        transform .35s var(--ma-transition);
}


/* =========================================================
   HOVER — DESKTOP ONLY
========================================================= */

@media (hover: hover) {

    .mxp-procedure:hover {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mxp-procedure:hover::before {
        transform: translateY(0);
    }

    .mxp-procedure:hover strong {
        color: #F7F7F5;

        transform: translateX(6px);
    }

    .mxp-procedure:hover .mxp-procedure__number {
        color: #F5BD2A;
    }

    .mxp-procedure:hover .mxp-procedure__meta {
        color: rgba(255,255,255,.48);
    }

    .mxp-procedure:hover .mxp-procedure__arrow {
        color: #F5BD2A;

        transform: translate(3px,-3px);
    }

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.mxp-procedures__bottom {
    width: 100%;

    margin-top:
        clamp(65px, 8vw, 115px);

    padding:
        clamp(34px, 4vw, 58px);

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 50px;

    background: #30638E;

    color: #fff;
}


.mxp-procedures__bottom-copy {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.mxp-procedures__bottom-copy span {
    font-family: var(--ma-body);

    font-size: 10px;

    font-weight: 650;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(255,255,255,.58);
}


.mxp-procedures__bottom-copy strong {
    max-width: 690px;

    font-family: var(--ma-display);

    font-size:
        clamp(21px, 2vw, 30px);

    line-height: 1.25;

    font-weight: 500;

    letter-spacing: -.025em;

    color: #fff;
}


/* CTA */

.mxp-procedures__cta {
    min-width: 250px;
    min-height: 58px;

    padding: 0 22px;

    display: inline-flex !important;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: #F5BD2A;

    color: #041D3B !important;

    font-family: var(--ma-body) !important;

    font-size: 11px !important;

    line-height: 1 !important;

    font-weight: 700 !important;

    text-decoration: none !important;

    transition:
        transform .3s var(--ma-transition),
        background .3s ease;
}


.mxp-procedures__cta:hover {
    transform: translateY(-3px);

    background: #FFCA3A;

    color: #041D3B !important;
}


/* =========================================================
   SALIENT CLEANUP
========================================================= */

.wpb_raw_code:has(.mxp-procedures),
.wpb_content_element:has(.mxp-procedures) {
    width: 100% !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.vc_column-inner:has(.mxp-procedures) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .mxp-procedures__header {
        grid-template-columns:
            70px
            minmax(0,1fr);
    }

    .mxp-procedures__intro {
        grid-column: 2;

        max-width: 520px;

        margin-top: 25px;
    }

    .mxp-procedure {
        grid-template-columns:
            50px
            minmax(0,1fr)
            35px;
    }

    .mxp-procedure__meta {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .mxp-procedures__inner {
        padding:
            80px
            20px
            75px;
    }

    .mxp-procedures__header {
        display: block;
    }

    .mxp-procedures__label {
        margin-bottom: 45px;
    }

    .mxp-procedures__headline h2 {
        font-size:
            clamp(48px, 14vw, 68px) !important;

        line-height: .95 !important;
    }

    .mxp-procedures__intro {
        width: 100%;
        max-width: none;

        margin-top: 42px;
        padding-top: 0;
    }

    .mxp-procedures__list {
        margin-top: 70px;
    }

    .mxp-procedure {
        min-height: auto;

        padding: 25px 0;

        grid-template-columns:
            32px
            minmax(0,1fr)
            25px;

        gap: 10px;
    }

    .mxp-procedure strong {
        font-size: 20px;
    }

    .mxp-procedure__arrow {
        font-size: 15px;
    }

    .mxp-procedures__bottom {
        margin-top: 70px;

        padding: 28px 24px;

        grid-template-columns: 1fr;

        gap: 28px;
    }

    .mxp-procedures__cta {
        width: 100%;
        min-width: 0;
    }

}

/* =========================================================
   HOME — 06 / DR. MAXIMILIANO ABREGO
========================================================= */

.mxd-doctor,
.mxd-doctor *,
.mxd-doctor *::before,
.mxd-doctor *::after {
    box-sizing: border-box;
}


.mxd-doctor {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #F7F7F5;
    color: #041D3B;
}


.mxd-doctor__inner {
    width: 100%;
    max-width: 1560px;

    margin: 0 auto;

    padding:
        clamp(85px, 8vw, 135px)
        clamp(24px, 5vw, 76px)
        clamp(90px, 9vw, 145px);
}


/* =========================================================
   TOP
========================================================= */

.mxd-doctor__top {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;
}


.mxd-doctor__label {
    display: flex;
    align-items: center;

    gap: 12px;

    font-family: var(--ma-body);

    font-size: 9px;
    line-height: 1.4;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: rgba(4,29,59,.45);
}

.mxd-doctor__label span:first-child {
    color: #30638E;
}


.mxd-doctor__top-note {
    width: min(100%, 330px);

    margin: 0 !important;

    font-family: var(--ma-body) !important;

    font-size: 11px !important;
    line-height: 1.6 !important;

    font-weight: 500 !important;

    color: rgba(4,29,59,.52) !important;
}


/* =========================================================
   NAME
========================================================= */

.mxd-doctor__name {
    position: relative;
    z-index: 3;

    margin-top:
        clamp(55px, 7vw, 100px);

    font-family: var(--ma-display);

    font-size:
        clamp(68px, 10vw, 170px);

    line-height: .76;

    letter-spacing: -.075em;

    color: #041D3B;
}


.mxd-doctor__name span,
.mxd-doctor__name strong {
    display: block;
}


.mxd-doctor__name span {
    font-weight: 400;
}


.mxd-doctor__name strong {
    margin-left:
        clamp(50px, 12vw, 200px);

    font-weight: 550;

    color: #30638E;
}


/* =========================================================
   MAIN COMPOSITION
========================================================= */

.mxd-doctor__composition {
    width: 100%;

    margin-top:
        clamp(45px, 6vw, 90px);

    display: grid;

    grid-template-columns:
        minmax(220px, .55fr)
        minmax(340px, .9fr)
        minmax(300px, .7fr);

    gap:
        clamp(35px, 5vw, 80px);

    align-items: start;
}


/* =========================================================
   COPY
========================================================= */

.mxd-doctor__copy {
    padding-top:
        clamp(40px, 7vw, 115px);
}


.mxd-doctor__copy p {
    margin: 0 0 20px !important;

    font-family: var(--ma-body) !important;

    font-size: 14px !important;
    line-height: 1.75 !important;

    color: rgba(4,29,59,.62) !important;
}


.mxd-doctor__copy .mxd-doctor__lead {
    font-family: var(--ma-display) !important;

    font-size:
        clamp(20px, 1.7vw, 27px) !important;

    line-height: 1.4 !important;

    font-weight: 500 !important;

    letter-spacing: -.025em !important;

    color: #041D3B !important;
}


/* CTA */

.mxd-doctor__cta {
    width: 100%;

    margin-top: 34px;

    padding: 18px 0;

    display: flex !important;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(4,29,59,.20);

    border-bottom:
        1px solid rgba(4,29,59,.20);

    font-family: var(--ma-body) !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    color: #041D3B !important;

    text-decoration: none !important;

    transition:
        padding .3s var(--ma-transition),
        color .3s ease;
}


.mxd-doctor__cta:hover {
    padding-left: 8px;
    padding-right: 8px;

    color: #30638E !important;
}


/* =========================================================
   PORTRAIT
========================================================= */

.mxd-doctor__portrait {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #041D3B;
}


.mxd-doctor__placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background:
        radial-gradient(
            circle at 55% 35%,
            #316B97 0%,
            #123B60 45%,
            #041D3B 100%
        );

    font-family: var(--ma-body);

    color: rgba(255,255,255,.48);
}


.mxd-doctor__placeholder::before {
    content: "";

    position: absolute;

    inset: 8%;

    border:
        1px solid rgba(255,255,255,.08);
}


.mxd-doctor__placeholder span {
    position: relative;
    z-index: 2;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .12em;
}


.mxd-doctor__placeholder small {
    position: relative;
    z-index: 2;

    font-size: 7px;

    letter-spacing: .14em;

    color: rgba(255,255,255,.26);
}


.mxd-doctor__portrait img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter: saturate(.9);
}


/* YELLOW DETAIL */

.mxd-doctor__portrait::before {
    content: "";

    position: absolute;

    z-index: 4;

    top: 0;
    left: 0;

    width: 2px;
    height: 100%;

    background: #F5BD2A;
}


/* CAPTION */

.mxd-doctor__portrait-caption {
    position: absolute;

    z-index: 5;

    left: 24px;
    right: 24px;
    bottom: 24px;

    padding-top: 14px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,.18);

    font-family: var(--ma-body);

    font-size: 8px;

    font-weight: 650;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   CREDENTIALS
========================================================= */

.mxd-doctor__credentials {
    padding-top:
        clamp(10px, 3vw, 40px);

    border-top:
        1px solid rgba(4,29,59,.20);
}


.mxd-doctor__credential {
    width: 100%;

    padding:
        clamp(20px, 2.2vw, 30px)
        0;

    display: grid;

    grid-template-columns:
        34px minmax(0,1fr);

    gap: 15px;

    border-bottom:
        1px solid rgba(4,29,59,.20);
}


.mxd-doctor__credential > span {
    padding-top: 3px;

    font-family: var(--ma-body);

    font-size: 9px;

    font-weight: 700;

    color: #30638E;
}


.mxd-doctor__credential div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


.mxd-doctor__credential strong {
    font-family: var(--ma-display);

    font-size:
        clamp(16px, 1.4vw, 21px);

    line-height: 1.3;

    font-weight: 500;

    letter-spacing: -.02em;

    color: #041D3B;
}


.mxd-doctor__credential small {
    font-family: var(--ma-body);

    font-size: 9px;

    line-height: 1.5;

    font-weight: 500;

    color: rgba(4,29,59,.46);
}


/* =========================================================
   SALIENT
========================================================= */

.wpb_raw_code:has(.mxd-doctor),
.wpb_content_element:has(.mxd-doctor) {
    width: 100% !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


.vc_column-inner:has(.mxd-doctor) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .mxd-doctor__composition {
        grid-template-columns:
            minmax(240px,.75fr)
            minmax(340px,1fr);
    }

    .mxd-doctor__credentials {
        grid-column: 1 / -1;

        margin-top: 20px;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        column-gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .mxd-doctor__inner {
        padding:
            78px
            20px
            80px;
    }


    .mxd-doctor__top {
        display: block;
    }


    .mxd-doctor__top-note {
        margin-top: 25px !important;
    }


    .mxd-doctor__name {
        margin-top: 65px;

        font-size:
            clamp(58px, 18vw, 92px);

        line-height: .81;
    }


    .mxd-doctor__name strong {
        margin-left: 0;
    }


    .mxd-doctor__composition {
        display: flex;
        flex-direction: column;

        gap: 48px;

        margin-top: 55px;
    }


    .mxd-doctor__portrait {
        order: 1;

        aspect-ratio: 4 / 5;
    }


    .mxd-doctor__copy {
        order: 2;

        padding-top: 0;
    }


    .mxd-doctor__credentials {
        order: 3;

        width: 100%;

        margin-top: 10px;

        display: block;
    }


    .mxd-doctor__portrait-caption {
        flex-direction: column;

        gap: 4px;
    }

}

