/* =========================================================
   CONTACT HERO — REBUILD COMPLETO
   La altura del hero incluye el espacio ocupado por el nav.
   ========================================================= */

:root {
    /*
     * Ajusta únicamente estas variables cuando cambie
     * la altura o posición del nav global.
     */
    --rma-contact-nav-height: 70px;
    --rma-contact-nav-top: 12px;
    --rma-contact-nav-gap: 28px;

    --rma-contact-hero-max-width: 1440px;
    --rma-contact-hero-side-space: clamp(22px, 4vw, 54px);
}


/* =========================================================
   NORMALIZACIÓN
   ========================================================= */

.rma-contact-hero,
.rma-contact-hero *,
.rma-contact-hero *::before,
.rma-contact-hero *::after {
    box-sizing: border-box;
}

.rma-contact-hero img,
.rma-contact-hero svg {
    display: block;
    max-width: 100%;
}


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

.rma-contact-hero {
    position: relative;
    isolation: isolate;

    width: 100%;

    /*
     * No se utiliza height fija.
     * Si el contenido necesita más espacio, el hero crece.
     */
    min-height: clamp(640px, 78svh, 720px);

    padding-top:
        calc(
            var(--rma-contact-nav-top)
            + var(--rma-contact-nav-height)
            + var(--rma-contact-nav-gap)
        );

    padding-right: 0;
    padding-bottom: clamp(22px, 3vw, 34px);
    padding-left: 0;

    overflow: hidden;

    color: var(--rma-cream, #F4F0E7);
    background: var(--rma-emerald-dark, #123C34);
}


/* =========================================================
   FONDO
   ========================================================= */

.rma-contact-hero__background {
    position: absolute;
    inset: 0;
    z-index: -5;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 86% 12%,
            rgba(185, 154, 88, 0.18),
            transparent 27%
        ),
        radial-gradient(
            circle at 5% 92%,
            rgba(168, 185, 165, 0.1),
            transparent 30%
        ),
        linear-gradient(
            128deg,
            #194F43 0%,
            var(--rma-emerald-dark, #123C34) 50%,
            #082B23 100%
        );
}

.rma-contact-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -4;

    pointer-events: none;

    opacity: 0.075;

    background-image:
        linear-gradient(
            rgba(244, 240, 231, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(244, 240, 231, 0.08) 1px,
            transparent 1px
        );

    background-size: 78px 78px;
}

.rma-contact-hero::after {
    content: "";

    position: absolute;
    z-index: -3;

    top: -320px;
    right: -180px;

    width: 760px;
    height: 760px;

    pointer-events: none;

    border: 1px solid rgba(185, 154, 88, 0.16);
    border-radius: 50%;

    box-shadow:
        0 0 0 105px rgba(185, 154, 88, 0.025);
}


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.rma-contact-hero__container {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(350px, 0.62fr);

    grid-template-areas:
        "content summary"
        "strip strip";

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

    column-gap: clamp(36px, 5vw, 76px);
    row-gap: clamp(22px, 3vw, 34px);

    width:
        min(
            calc(
                100%
                - var(--rma-contact-hero-side-space) * 2
            ),
            var(--rma-contact-hero-max-width)
        );

    min-width: 0;

    margin-inline: auto;
}


/* =========================================================
   CONTENIDO IZQUIERDO
   ========================================================= */

.rma-contact-hero__content {
    grid-area: content;

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 820px;
    min-width: 0;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.rma-contact-hero__eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 11px;

    max-width: 100%;

    margin-bottom: 13px;

    color: var(--rma-gold, #B99A58);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.rma-contact-hero__eyebrow > span {
    display: grid;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;
    place-items: center;

    color: var(--rma-charcoal, #1D2422);

    border-radius: 50%;
    background: var(--rma-gold, #B99A58);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
}

.rma-contact-hero__eyebrow i {
    width: 34px;
    height: 1px;

    flex: 0 0 34px;

    background: rgba(185, 154, 88, 0.7);
}

.rma-contact-hero__eyebrow strong {
    min-width: 0;
}


/* =========================================================
   CREDENCIALES
   ========================================================= */

.rma-contact-hero__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    width: 100%;
    min-width: 0;

    margin-bottom: 15px;
}

.rma-contact-hero__credentials span {
    display: inline-flex;

    min-height: 27px;

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

    padding: 6px 10px;

    color: rgba(244, 240, 231, 0.7);

    border: 1px solid rgba(244, 240, 231, 0.13);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.03);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.rma-contact-hero h1 {
    width: 100%;
    max-width: 810px;

    margin: 0 0 17px;

    overflow-wrap: break-word;

    color: #FFFFFF;

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(3.4rem, 4.85vw, 5.25rem);
    font-weight: 600;
    line-height: 0.89;
    letter-spacing: -0.052em;

    text-wrap: balance;
}

.rma-contact-hero h1 em {
    display: block;

    color: var(--rma-gold, #B99A58);

    font-weight: 500;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.rma-contact-hero__description {
    width: 100%;
    max-width: 690px;

    margin: 0 0 22px;

    overflow-wrap: break-word;

    color: rgba(244, 240, 231, 0.62);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: clamp(0.8rem, 0.92vw, 0.92rem);
    line-height: 1.68;
}


/* =========================================================
   BOTONES
   ========================================================= */

.rma-contact-hero__actions {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    gap: 9px;

    width: 100%;
}

.rma-contact-hero__button {
    display: inline-flex;

    min-height: 48px;

    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 18px;

    border-radius: 999px;

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.065em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 250ms ease,
        border-color 250ms ease,
        background-color 250ms ease,
        transform 250ms ease;
}

.rma-contact-hero__button svg {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    transition: transform 250ms ease;
}

.rma-contact-hero__button--primary {
    color: var(--rma-charcoal, #1D2422);

    border: 1px solid var(--rma-gold, #B99A58);
    background: var(--rma-gold, #B99A58);
}

.rma-contact-hero__button--primary:hover {
    border-color: var(--rma-cream, #F4F0E7);
    background: var(--rma-cream, #F4F0E7);

    transform: translateY(-2px);
}

.rma-contact-hero__button--primary:hover svg {
    transform: translateY(3px);
}

.rma-contact-hero__button--secondary {
    color: var(--rma-cream, #F4F0E7);

    border: 1px solid rgba(244, 240, 231, 0.17);
    background: rgba(255, 255, 255, 0.025);
}

.rma-contact-hero__button--secondary:hover {
    border-color: rgba(185, 154, 88, 0.47);
    background: rgba(185, 154, 88, 0.08);

    transform: translateY(-2px);
}

.rma-contact-hero__phone-icon {
    display: grid;

    width: 23px;
    height: 23px;

    flex: 0 0 23px;
    place-items: center;

    color: var(--rma-gold, #B99A58);
}


/* =========================================================
   PANEL DERECHO
   ========================================================= */

.rma-contact-hero__summary {
    grid-area: summary;

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 440px;
    min-width: 0;

    justify-self: end;

    padding: clamp(20px, 2.5vw, 29px);

    border: 1px solid rgba(244, 240, 231, 0.12);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 25px 64px rgba(2, 17, 13, 0.25);

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


/* =========================================================
   CABECERA DEL PANEL
   ========================================================= */

.rma-contact-hero__summary-top {
    display: grid;

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

    align-items: center;
    gap: 13px;

    min-width: 0;

    margin-bottom: 17px;
}

.rma-contact-hero__summary-mark {
    display: grid;

    width: 59px;
    height: 59px;

    flex: 0 0 59px;
    place-items: center;

    color: var(--rma-gold, #B99A58);

    border: 1px solid rgba(185, 154, 88, 0.32);
    border-radius: 50%;

    background: rgba(18, 60, 52, 0.72);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: 0.96rem;
    font-weight: 700;
}

.rma-contact-hero__summary-top > div {
    display: grid;
    gap: 3px;

    min-width: 0;
}

.rma-contact-hero__summary-top small {
    color: var(--rma-gold, #B99A58);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.35;
    text-transform: uppercase;
}

.rma-contact-hero__summary-top strong {
    min-width: 0;

    overflow-wrap: break-word;

    color: var(--rma-cream, #F4F0E7);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(1.3rem, 1.8vw, 1.65rem);
    line-height: 1;
}


/* =========================================================
   OPCIONES DEL PANEL
   ========================================================= */

.rma-contact-hero__summary-options {
    display: grid;

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

    gap: 7px;

    width: 100%;
    min-width: 0;

    margin-bottom: 16px;
}

.rma-contact-hero__summary-options article {
    display: grid;

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

    align-items: center;
    gap: 9px;

    min-width: 0;
    min-height: 68px;

    padding: 10px;

    border: 1px solid rgba(244, 240, 231, 0.08);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);
}

.rma-contact-hero__summary-options article > span {
    display: grid;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;
    place-items: center;

    color: var(--rma-charcoal, #1D2422);

    border-radius: 50%;
    background: var(--rma-gold, #B99A58);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: 0.62rem;
    font-weight: 700;
}

.rma-contact-hero__summary-options article > div {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.rma-contact-hero__summary-options strong {
    min-width: 0;

    overflow-wrap: break-word;

    color: var(--rma-cream, #F4F0E7);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: 1rem;
    line-height: 1;
}

.rma-contact-hero__summary-options small {
    min-width: 0;

    overflow-wrap: break-word;

    color: rgba(244, 240, 231, 0.4);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.42rem;
    font-weight: 700;
    line-height: 1.35;
}


/* =========================================================
   PIE DEL PANEL
   ========================================================= */

.rma-contact-hero__summary-footer {
    display: grid;

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

    align-items: center;
    gap: 10px;

    min-width: 0;

    padding-top: 15px;

    border-top: 1px solid rgba(244, 240, 231, 0.09);
}

.rma-contact-hero__location-icon {
    display: grid;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;
    place-items: center;

    color: var(--rma-gold, #B99A58);

    border: 1px solid rgba(185, 154, 88, 0.26);
    border-radius: 50%;
}

.rma-contact-hero__location-icon svg {
    width: 19px;
    height: 19px;
}

.rma-contact-hero__summary-footer > div {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.rma-contact-hero__summary-footer strong {
    min-width: 0;

    overflow-wrap: break-word;

    color: var(--rma-cream, #F4F0E7);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: 1.02rem;
    line-height: 1.1;
}

.rma-contact-hero__summary-footer small {
    min-width: 0;

    overflow-wrap: break-word;

    color: rgba(244, 240, 231, 0.42);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.45rem;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   FRANJA INFERIOR DE CONTACTO
   Nunca está posicionada de forma absoluta.
   ========================================================= */

.rma-contact-hero__contact-strip {
    grid-area: strip;

    display: grid;

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

    gap: 7px;

    width: 100%;
    min-width: 0;

    margin: 0;
}

.rma-contact-hero__contact-strip article {
    display: grid;

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

    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 62px;

    padding: 10px 14px;

    border: 1px solid rgba(244, 240, 231, 0.08);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.026);
}

.rma-contact-hero__strip-icon {
    display: grid;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;
    place-items: center;

    color: var(--rma-gold, #B99A58);

    border: 1px solid rgba(185, 154, 88, 0.22);
    border-radius: 50%;
}

.rma-contact-hero__strip-icon svg {
    width: 17px;
    height: 17px;
}

.rma-contact-hero__contact-strip article > div {
    display: grid;
    gap: 3px;

    min-width: 0;
}

.rma-contact-hero__contact-strip small {
    min-width: 0;

    color: rgba(244, 240, 231, 0.4);

    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    line-height: 1.3;
    text-transform: uppercase;
}

.rma-contact-hero__contact-strip a,
.rma-contact-hero__contact-strip strong {
    display: block;

    min-width: 0;

    overflow-wrap: anywhere;
    word-break: normal;

    color: var(--rma-cream, #F4F0E7);

    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.15;
    text-decoration: none;
}











































/* =========================================================
   02. SMART CONSULTATION FORM
   ========================================================= */

.rma-consultation,
.rma-consultation *,
.rma-consultation *::before,
.rma-consultation *::after {
    box-sizing: border-box;
}

.rma-consultation [hidden] {
    display: none !important;
}

.rma-consultation {
    position: relative;
    isolation: isolate;

    padding:
        clamp(80px, 9vw, 140px)
        0;

    overflow: hidden;

    color:
        var(--rma-charcoal, #1D2422);

    background:
        linear-gradient(
            145deg,
            #FCFBF7 0%,
            var(--rma-cream, #F4F0E7) 60%,
            #E8EEE8 100%
        );

    scroll-margin-top:
        calc(
            var(--rma-header-height, 92px)
            + 24px
        );
}

.rma-consultation__background {
    position: absolute;
    inset: 0;
    z-index: -4;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 91% 8%,
            rgba(185, 154, 88, 0.14),
            transparent 26%
        ),
        radial-gradient(
            circle at 5% 89%,
            rgba(40, 103, 90, 0.1),
            transparent 30%
        );
}

.rma-consultation::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -3;

    pointer-events: none;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(18, 60, 52, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18, 60, 52, 0.08) 1px,
            transparent 1px
        );

    background-size: 78px 78px;
}

.rma-consultation__container {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(330px, 0.4fr)
        minmax(0, 0.6fr);

    align-items: start;

    gap:
        clamp(20px, 4vw, 55px);
}


/* =========================================================
   INFORMATION PANEL
   ========================================================= */

.rma-consultation__information {
    position: sticky;

    top:
        calc(
            var(--rma-header-height, 92px)
            + 24px
        );

    display: flex;

    min-width: 0;

    flex-direction: column;

    padding:
        clamp(30px, 4vw, 48px);

    overflow: hidden;

    color:
        var(--rma-cream, #F4F0E7);

    border-radius:
        clamp(30px, 4vw, 46px);

    background:
        linear-gradient(
            145deg,
            #194F43,
            var(--rma-emerald-dark, #123C34)
        );

    box-shadow:
        0 30px 80px
        rgba(18, 60, 52, 0.18);
}

.rma-consultation__information::after {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 310px;
    height: 310px;

    pointer-events: none;

    border:
        1px solid
        rgba(185, 154, 88, 0.15);

    border-radius: 50%;

    box-shadow:
        0 0 0 55px
        rgba(185, 154, 88, 0.025);
}

.rma-consultation__information-header,
.rma-consultation__benefits,
.rma-consultation__direct,
.rma-consultation__license {
    position: relative;
    z-index: 1;
}


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

.rma-consultation__eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rma-consultation__eyebrow > span {
    display: grid;

    width: 34px;
    height: 34px;

    place-items: center;
    flex: 0 0 34px;

    color:
        var(--rma-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
}

.rma-consultation__eyebrow i {
    width: 28px;
    height: 1px;

    background:
        rgba(185, 154, 88, 0.65);
}

.rma-consultation__information-header h2 {
    margin:
        0 0 19px;

    color: #FFFFFF;

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(2.65rem, 4.4vw, 4.5rem);

    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.047em;
}

.rma-consultation__information-header h2 em {
    color:
        var(--rma-gold, #B99A58);

    font-weight: 500;
}

.rma-consultation__information-header > p {
    margin:
        0 0 32px;

    color:
        rgba(244, 240, 231, 0.59);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.81rem;
    line-height: 1.72;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.rma-consultation__benefits {
    display: grid;
    gap: 8px;

    margin-bottom: 30px;
}

.rma-consultation__benefits article {
    display: grid;

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

    align-items: start;
    gap: 12px;

    min-width: 0;

    padding: 16px;

    border:
        1px solid
        rgba(244, 240, 231, 0.09);

    border-radius: 21px;

    background:
        rgba(255, 255, 255, 0.035);
}

.rma-consultation__benefit-number {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;
    flex: 0 0 38px;

    color:
        var(--rma-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.72rem;
    font-weight: 700;
}

.rma-consultation__benefits article > div {
    min-width: 0;
}

.rma-consultation__benefits strong {
    display: block;

    margin-bottom: 4px;

    color:
        var(--rma-cream, #F4F0E7);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.15rem;
    line-height: 1.05;
}

.rma-consultation__benefits p {
    margin: 0;

    color:
        rgba(244, 240, 231, 0.45);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.55;
}


/* =========================================================
   DIRECT CONTACT
   ========================================================= */

.rma-consultation__direct {
    margin-bottom: 26px;
}

.rma-consultation__direct-label {
    display: block;

    margin-bottom: 11px;

    color:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rma-consultation__direct-options {
    display: grid;
    gap: 8px;
}

.rma-consultation__direct-options a {
    display: grid;

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

    align-items: center;
    gap: 11px;

    min-width: 0;

    padding: 13px;

    color:
        var(--rma-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, 0.09);

    border-radius: 19px;

    background:
        rgba(255, 255, 255, 0.03);

    text-decoration: none;

    transition:
        border-color 250ms ease,
        background-color 250ms ease;
}

.rma-consultation__direct-options a:hover {
    border-color:
        rgba(185, 154, 88, 0.42);

    background:
        rgba(185, 154, 88, 0.07);
}

.rma-consultation__direct-options a > span {
    display: grid;

    width: 39px;
    height: 39px;

    place-items: center;

    color:
        var(--rma-gold, #B99A58);

    border:
        1px solid
        rgba(185, 154, 88, 0.25);

    border-radius: 50%;
}

.rma-consultation__direct-options svg {
    width: 19px;
    height: 19px;
}

.rma-consultation__direct-options a > div {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.rma-consultation__direct-options small {
    color:
        rgba(244, 240, 231, 0.4);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rma-consultation__direct-options strong {
    min-width: 0;

    overflow-wrap: anywhere;

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1rem;
    line-height: 1.15;
}


/* =========================================================
   LICENSE
   ========================================================= */

.rma-consultation__license {
    display: grid;

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

    align-items: start;
    gap: 10px;

    padding-top: 21px;

    border-top:
        1px solid
        rgba(244, 240, 231, 0.09);
}

.rma-consultation__license > span {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    color:
        var(--rma-gold, #B99A58);

    border:
        1px solid
        rgba(185, 154, 88, 0.24);

    border-radius: 50%;
}

.rma-consultation__license svg {
    width: 18px;
    height: 18px;
}

.rma-consultation__license p {
    margin: 0;

    color:
        rgba(244, 240, 231, 0.43);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.55rem;
    font-weight: 600;
    line-height: 1.55;
}


/* =========================================================
   FORM PANEL
   ========================================================= */

.rma-consultation__form-panel {
    min-width: 0;

    padding:
        clamp(25px, 4vw, 48px);

    border:
        1px solid
        rgba(18, 60, 52, 0.1);

    border-radius:
        clamp(30px, 4vw, 46px);

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 28px 80px
        rgba(18, 60, 52, 0.1);

    -webkit-backdrop-filter:
        blur(16px);

    backdrop-filter:
        blur(16px);
}


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

.rma-consultation__form-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 26px;
}

.rma-consultation__form-header > div {
    max-width: 650px;
}

.rma-consultation__form-header > div > span {
    display: block;

    margin-bottom: 7px;

    color:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rma-consultation__form-header h2 {
    margin:
        0 0 8px;

    color:
        var(--rma-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(2.15rem, 3.5vw, 3.6rem);

    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.042em;
}

.rma-consultation__form-header p {
    margin: 0;

    color:
        #66706C;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.72rem;
    line-height: 1.6;
}

.rma-consultation__estimated-time {
    display: inline-flex;

    min-height: 37px;

    align-items: center;
    gap: 7px;

    flex: 0 0 auto;

    padding:
        8px 11px;

    color:
        var(--rma-emerald-dark, #123C34);

    border:
        1px solid
        rgba(18, 60, 52, 0.1);

    border-radius: 999px;

    background:
        rgba(168, 185, 165, 0.14);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.47rem;
    font-weight: 800;
}

.rma-consultation__estimated-time svg {
    width: 17px;
    height: 17px;

    color:
        var(--rma-gold, #B99A58);
}


/* =========================================================
   PROGRESS
   ========================================================= */

.rma-consultation__progress {
    margin-bottom: 32px;
}

.rma-consultation__progress-track {
    position: relative;

    width: 100%;
    height: 4px;

    margin-bottom: 16px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(18, 60, 52, 0.09);
}

.rma-consultation__progress-track span {
    display: block;

    width: 50%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--rma-gold, #B99A58),
            #D2B66F
        );

    transition:
        width 350ms ease;
}

.rma-consultation__progress-labels {
    display: grid;

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

    gap: 10px;
}

.rma-consultation__progress-labels > div {
    display: grid;

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

    align-items: center;
    gap: 9px;

    min-width: 0;

    opacity: 0.48;

    transition:
        opacity 250ms ease;
}

.rma-consultation__progress-labels > div.is-active,
.rma-consultation__progress-labels > div.is-complete {
    opacity: 1;
}

.rma-consultation__progress-labels > div > span {
    display: grid;

    width: 35px;
    height: 35px;

    place-items: center;

    color:
        var(--rma-emerald-dark, #123C34);

    border:
        1px solid
        rgba(18, 60, 52, 0.13);

    border-radius: 50%;

    background: #FFFFFF;

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.69rem;
    font-weight: 700;
}

.rma-consultation__progress-labels .is-active > span,
.rma-consultation__progress-labels .is-complete > span {
    color:
        var(--rma-charcoal, #1D2422);

    border-color:
        var(--rma-gold, #B99A58);

    background:
        var(--rma-gold, #B99A58);
}

.rma-consultation__progress-labels > div > div {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.rma-consultation__progress-labels strong {
    color:
        var(--rma-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1rem;
    line-height: 1;
}

.rma-consultation__progress-labels small {
    color:
        #78817D;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.43rem;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   FORM STEP
   ========================================================= */

.rma-consultation__step {
    min-width: 0;
}

.rma-consultation__step-heading {
    margin-bottom: 26px;
}

.rma-consultation__step-heading > span {
    display: block;

    margin-bottom: 5px;

    color:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rma-consultation__step-heading h3 {
    margin:
        0 0 7px;

    color:
        var(--rma-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.75rem, 2.7vw, 2.65rem);

    font-weight: 700;
    line-height: 1;
}

.rma-consultation__step-heading p {
    max-width: 650px;

    margin: 0;

    color:
        #78817D;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.68rem;
    line-height: 1.58;
}


/* =========================================================
   FIELDS
   ========================================================= */

.rma-consultation__field-grid {
    display: grid;

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

    gap: 17px;

    min-width: 0;

    margin-bottom: 24px;
}

.rma-consultation__field {
    display: grid;
    gap: 7px;

    min-width: 0;
}

.rma-consultation__field--full {
    grid-column:
        1 / -1;
}

.rma-consultation__field label,
.rma-consultation__choice-fieldset legend,
.rma-consultation__service-fieldset legend {
    color:
        var(--rma-charcoal, #1D2422);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.4;
}

.rma-consultation__field label > span,
.rma-consultation__choice-fieldset legend > span,
.rma-consultation__service-fieldset legend > span {
    color:
        var(--rma-gold, #B99A58);
}

.rma-consultation__field label small {
    margin-left: 5px;

    color:
        #8A918E;

    font-size: 0.48rem;
    font-weight: 700;
}

.rma-consultation__control {
    position: relative;

    display: grid;

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

    align-items: center;

    min-width: 0;

    border:
        1px solid
        rgba(18, 60, 52, 0.13);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.83);

    transition:
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.rma-consultation__control:focus-within {
    border-color:
        rgba(40, 103, 90, 0.65);

    box-shadow:
        0 0 0 4px
        rgba(40, 103, 90, 0.08);
}

.rma-consultation__control > span {
    display: grid;

    width: 46px;
    height: 100%;

    place-items: center;

    color:
        var(--rma-gold, #B99A58);
}

.rma-consultation__control svg {
    width: 19px;
    height: 19px;
}

.rma-consultation input,
.rma-consultation select,
.rma-consultation textarea {
    width: 100%;
    min-width: 0;

    color:
        var(--rma-charcoal, #1D2422);

    border:
        1px solid
        rgba(18, 60, 52, 0.13);

    border-radius: 16px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.83);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.72rem;
    font-weight: 600;

    transition:
        border-color 200ms ease,
        box-shadow 200ms ease,
        background-color 200ms ease;
}

.rma-consultation__control input {
    min-height: 54px;

    padding:
        13px 15px 13px 0;

    border: 0;
    border-radius: 0;

    background: transparent;
}

.rma-consultation__field > input,
.rma-consultation__field > select {
    min-height: 54px;

    padding:
        13px 15px;
}

.rma-consultation select {
    cursor: pointer;
}

.rma-consultation textarea {
    min-height: 135px;

    padding:
        15px 16px;

    line-height: 1.6;

    resize: vertical;
}

.rma-consultation__field > input:focus,
.rma-consultation__field > select:focus,
.rma-consultation textarea:focus {
    border-color:
        rgba(40, 103, 90, 0.65);

    background: #FFFFFF;

    box-shadow:
        0 0 0 4px
        rgba(40, 103, 90, 0.08);
}

.rma-consultation input::placeholder,
.rma-consultation textarea::placeholder {
    color:
        #9AA09D;

    opacity: 1;
}

.rma-consultation input:invalid:not(:placeholder-shown),
.rma-consultation textarea:invalid:not(:placeholder-shown) {
    border-color:
        rgba(154, 62, 62, 0.45);
}


/* =========================================================
   CHOICE FIELDSETS
   ========================================================= */

.rma-consultation__choice-fieldset,
.rma-consultation__service-fieldset {
    min-width: 0;

    margin:
        0 0 24px;

    padding: 0;

    border: 0;
}

.rma-consultation__choice-fieldset legend,
.rma-consultation__service-fieldset legend {
    margin-bottom: 10px;
}

.rma-consultation__choice-grid {
    display: grid;

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

    gap: 8px;
}

.rma-consultation__choice,
.rma-consultation__service-option {
    position: relative;

    min-width: 0;
}

.rma-consultation__choice input,
.rma-consultation__service-option input {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;
    pointer-events: none;
}

.rma-consultation__choice label {
    display: flex;

    min-height: 49px;

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

    padding:
        10px 12px;

    cursor: pointer;

    color:
        #66706C;

    border:
        1px solid
        rgba(18, 60, 52, 0.11);

    border-radius: 14px;

    background:
        rgba(168, 185, 165, 0.09);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.55rem;
    font-weight: 800;
    text-align: center;

    transition:
        color 200ms ease,
        border-color 200ms ease,
        background-color 200ms ease;
}

.rma-consultation__choice input:checked + label {
    color:
        var(--rma-cream, #F4F0E7);

    border-color:
        var(--rma-emerald-dark, #123C34);

    background:
        var(--rma-emerald-dark, #123C34);
}

.rma-consultation__choice input:focus-visible + label,
.rma-consultation__service-option input:focus-visible + label {
    outline:
        3px solid
        rgba(185, 154, 88, 0.32);

    outline-offset: 2px;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

.rma-consultation__service-grid {
    display: grid;

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

    gap: 9px;
}

.rma-consultation__service-option--full {
    grid-column:
        1 / -1;
}

.rma-consultation__service-option label {
    display: grid;

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

    align-items: center;
    gap: 11px;

    min-width: 0;
    min-height: 82px;

    padding:
        13px 14px;

    cursor: pointer;

    color:
        var(--rma-charcoal, #1D2422);

    border:
        1px solid
        rgba(18, 60, 52, 0.11);

    border-radius: 19px;

    background:
        rgba(168, 185, 165, 0.09);

    transition:
        color 200ms ease,
        border-color 200ms ease,
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-consultation__service-option label:hover {
    border-color:
        rgba(185, 154, 88, 0.48);

    background:
        rgba(185, 154, 88, 0.08);

    transform:
        translateY(-2px);
}

.rma-consultation__service-option label > span {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    color:
        var(--rma-emerald-dark, #123C34);

    border:
        1px solid
        rgba(18, 60, 52, 0.12);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.7);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.7rem;
    font-weight: 700;
}

.rma-consultation__service-option label > div {
    display: grid;
    gap: 3px;

    min-width: 0;
}

.rma-consultation__service-option strong {
    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.05rem;
    line-height: 1;
}

.rma-consultation__service-option small {
    color:
        #7B8480;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.45rem;
    font-weight: 700;
    line-height: 1.4;
}

.rma-consultation__service-option input:checked + label {
    color:
        var(--rma-cream, #F4F0E7);

    border-color:
        var(--rma-emerald-dark, #123C34);

    background:
        var(--rma-emerald-dark, #123C34);

    box-shadow:
        0 13px 30px
        rgba(18, 60, 52, 0.14);
}

.rma-consultation__service-option input:checked + label > span {
    color:
        var(--rma-charcoal, #1D2422);

    border-color:
        var(--rma-gold, #B99A58);

    background:
        var(--rma-gold, #B99A58);
}

.rma-consultation__service-option input:checked + label small {
    color:
        rgba(244, 240, 231, 0.52);
}


/* =========================================================
   DYNAMIC QUESTIONS
   ========================================================= */

.rma-consultation__dynamic {
    min-width: 0;

    margin-bottom: 24px;
}

.rma-consultation__dynamic-empty,
.rma-consultation__dynamic-panel {
    padding:
        clamp(20px, 3vw, 28px);

    border:
        1px solid
        rgba(18, 60, 52, 0.1);

    border-radius: 23px;

    background:
        rgba(168, 185, 165, 0.1);
}

.rma-consultation__dynamic-empty {
    min-height: 120px;

    display: flex;

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

    text-align: center;
}

.rma-consultation__dynamic-empty span,
.rma-consultation__dynamic-panel header > span {
    display: block;

    margin-bottom: 5px;

    color:
        var(--rma-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rma-consultation__dynamic-empty p {
    margin: 0;

    color:
        #78817D;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.65rem;
}

.rma-consultation__dynamic-panel header {
    margin-bottom: 20px;
}

.rma-consultation__dynamic-panel h4 {
    margin: 0;

    color:
        var(--rma-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.45rem, 2.3vw, 2rem);

    line-height: 1;
}

.rma-consultation__dynamic-panel .rma-consultation__field-grid {
    margin-bottom: 0;
}

.rma-consultation__dynamic-panel--general > p {
    margin: 0;

    color:
        #66706C;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.7rem;
    line-height: 1.65;
}


/* =========================================================
   MESSAGE AND CHARACTER COUNT
   ========================================================= */

.rma-consultation__field--message {
    margin-bottom: 21px;
}

.rma-consultation__label-row {
    display: flex;

    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.rma-consultation__label-row > span {
    color:
        #8A918E;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.48rem;
    font-weight: 700;
}


/* =========================================================
   CONSENT
   ========================================================= */

.rma-consultation__consent {
    display: grid;

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

    align-items: start;
    gap: 11px;

    cursor: pointer;

    margin-bottom: 10px;
}

.rma-consultation__consent input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.rma-consultation__consent-box {
    display: grid;

    width: 22px;
    height: 22px;

    place-items: center;

    color: transparent;

    border:
        1px solid
        rgba(18, 60, 52, 0.22);

    border-radius: 6px;

    background: #FFFFFF;

    transition:
        color 200ms ease,
        border-color 200ms ease,
        background-color 200ms ease;
}

.rma-consultation__consent-box svg {
    width: 15px;
    height: 15px;
}

.rma-consultation__consent input:checked + .rma-consultation__consent-box {
    color:
        var(--rma-charcoal, #1D2422);

    border-color:
        var(--rma-gold, #B99A58);

    background:
        var(--rma-gold, #B99A58);
}

.rma-consultation__consent input:focus-visible + .rma-consultation__consent-box {
    outline:
        3px solid
        rgba(185, 154, 88, 0.28);

    outline-offset: 2px;
}

.rma-consultation__consent-copy {
    color:
        #59635F;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.55;
}

.rma-consultation__legal {
    margin:
        0 0 23px 33px;

    color:
        #8A918E;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.52rem;
    line-height: 1.55;
}


/* =========================================================
   STEP FOOTER AND BUTTONS
   ========================================================= */

.rma-consultation__step-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(18, 60, 52, 0.09);
}

.rma-consultation__step-footer > p {
    max-width: 310px;

    margin: 0;

    color:
        #8A918E;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.5rem;
    line-height: 1.5;
}

.rma-consultation__next,
.rma-consultation__submit,
.rma-consultation__back {
    display: inline-flex;

    min-height: 51px;

    align-items: center;
    justify-content: center;
    gap: 9px;

    padding:
        12px 19px;

    cursor: pointer;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;

    transition:
        color 250ms ease,
        border-color 250ms ease,
        background-color 250ms ease,
        transform 250ms ease;
}

.rma-consultation__next,
.rma-consultation__submit {
    color:
        var(--rma-cream, #F4F0E7);

    border:
        1px solid
        var(--rma-emerald-dark, #123C34);

    background:
        var(--rma-emerald-dark, #123C34);
}

.rma-consultation__back {
    color:
        var(--rma-emerald-dark, #123C34);

    border:
        1px solid
        rgba(18, 60, 52, 0.15);

    background:
        rgba(168, 185, 165, 0.1);
}

.rma-consultation__next svg,
.rma-consultation__submit svg,
.rma-consultation__back svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    transition:
        transform 250ms ease;
}

.rma-consultation__next:hover,
.rma-consultation__submit:hover {
    color:
        var(--rma-charcoal, #1D2422);

    border-color:
        var(--rma-gold, #B99A58);

    background:
        var(--rma-gold, #B99A58);

    transform:
        translateY(-2px);
}

.rma-consultation__next:hover svg,
.rma-consultation__submit:hover svg {
    transform:
        translateX(4px);
}

.rma-consultation__back:hover {
    border-color:
        rgba(185, 154, 88, 0.5);

    background:
        rgba(185, 154, 88, 0.1);

    transform:
        translateY(-2px);
}

.rma-consultation__next:disabled,
.rma-consultation__submit:disabled {
    cursor: wait;

    opacity: 0.65;
}


/* =========================================================
   FORM RESPONSE MESSAGE
   ========================================================= */

.rma-consultation__status {
    display: none;

    width: 100%;

    margin:
        0 0 22px;

    padding:
        15px 17px;

    border-radius: 17px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.67rem;
    font-weight: 750;
    line-height: 1.55;
}

.rma-consultation__status:not(:empty) {
    display: block;
}

.rma-consultation__status.is-success {
    color: #123C34;

    border:
        1px solid
        rgba(40, 103, 90, 0.28);

    background:
        rgba(168, 185, 165, 0.23);

    box-shadow:
        0 10px 25px
        rgba(18, 60, 52, 0.07);
}

.rma-consultation__status.is-error {
    color: #7A2E2E;

    border:
        1px solid
        rgba(154, 48, 48, 0.22);

    background:
        rgba(154, 48, 48, 0.07);

    box-shadow:
        0 10px 25px
        rgba(122, 46, 46, 0.06);
}















































/* =========================================================
   ESCRITORIO MEDIANO
   ========================================================= */

@media (max-width: 1240px) {
    :root {
        --rma-contact-nav-height: 70px;
        --rma-contact-nav-top: 12px;
        --rma-contact-nav-gap: 25px;
    }

    .rma-contact-hero {
        min-height: 650px;
    }

    .rma-contact-hero__container {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(330px, 0.58fr);

        column-gap: 38px;
    }

    .rma-contact-hero h1 {
        font-size: clamp(3.2rem, 5vw, 4.65rem);
    }

    .rma-contact-hero__summary {
        max-width: 400px;
    }
}


/* =========================================================
   LAPTOP Y TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1024px) {
     .rma-consultation__container {
        grid-template-columns:
            minmax(300px, 0.37fr)
            minmax(0, 0.63fr);

        gap: 25px;
    }

    .rma-consultation__information,
    .rma-consultation__form-panel {
        padding:
            31px;
    }

    .rma-consultation__choice-grid {
        grid-template-columns: 1fr;
    }
    :root {
        --rma-contact-nav-height: 68px;
        --rma-contact-nav-top: 10px;
        --rma-contact-nav-gap: 24px;
    }

    .rma-contact-hero {
        min-height: 680px;
    }

    .rma-contact-hero__container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(295px, 0.52fr);

        column-gap: 28px;
    }

    .rma-contact-hero h1 {
        font-size: clamp(3rem, 5.7vw, 4.2rem);
    }

    .rma-contact-hero__summary {
        padding: 21px;
    }

    .rma-contact-hero__summary-options {
        grid-template-columns: 1fr;
    }

    .rma-contact-hero__contact-strip {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-contact-hero__contact-strip article:last-child {
        grid-column: 1 / -1;
    }
}


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

@media (max-width: 820px) {
     .rma-consultation__container {
        grid-template-columns: 1fr;
    }

    .rma-consultation__information {
        position: relative;
        top: auto;

        order: 2;
    }

    .rma-consultation__form-panel {
        order: 1;
    }

    .rma-consultation__choice-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .rma-consultation__benefits {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .rma-consultation__benefits article {
        grid-template-columns: 1fr;
    }
    :root {
        --rma-contact-nav-height: 66px;
        --rma-contact-nav-top: 10px;
        --rma-contact-nav-gap: 24px;
    }

    .rma-contact-hero {
        min-height: 0;

        padding-bottom: 28px;
    }

    .rma-contact-hero__container {
        grid-template-columns: minmax(0, 1fr);

        grid-template-areas:
            "content"
            "summary"
            "strip";

        align-items: stretch;

        row-gap: 22px;
    }

    .rma-contact-hero__content {
        max-width: 720px;
    }

    .rma-contact-hero__summary {
        width: 100%;
        max-width: none;

        justify-self: stretch;
    }

    .rma-contact-hero__summary-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-contact-hero__contact-strip {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-contact-hero__contact-strip article:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 680px) {
        .rma-consultation {
        padding:
            70px 0;

        scroll-margin-top:
            calc(
                var(--rma-header-height-mobile, 74px)
                + 16px
            );
    }

    .rma-consultation__form-panel,
    .rma-consultation__information {
        padding:
            25px 19px;

        border-radius: 28px;
    }

    .rma-consultation__form-header {
        display: grid;
        gap: 13px;
    }

    .rma-consultation__estimated-time {
        justify-self: start;
    }

    .rma-consultation__progress-labels small {
        display: none;
    }

    .rma-consultation__field-grid,
    .rma-consultation__service-grid {
        grid-template-columns: 1fr;
    }

    .rma-consultation__field--full,
    .rma-consultation__service-option--full {
        grid-column: auto;
    }

    .rma-consultation__choice-grid {
        grid-template-columns: 1fr;
    }

    .rma-consultation__step-footer {
        display: grid;

        grid-template-columns: 1fr;
    }

    .rma-consultation__step-footer > p {
        max-width: none;
    }

    .rma-consultation__next,
    .rma-consultation__submit,
    .rma-consultation__back {
        width: 100%;
    }

    .rma-consultation__back {
        order: 2;
    }

    .rma-consultation__submit {
        order: 1;
    }

    .rma-consultation__benefits {
        grid-template-columns: 1fr;
    }

    .rma-consultation__benefits article {
        grid-template-columns:
            auto minmax(0, 1fr);
    }
    :root {
        --rma-contact-nav-height: 64px;
        --rma-contact-nav-top: 8px;
        --rma-contact-nav-gap: 22px;
    }

    .rma-contact-hero {
        min-height: 0;

        padding-top:
            calc(
                var(--rma-contact-nav-top)
                + var(--rma-contact-nav-height)
                + var(--rma-contact-nav-gap)
            );

        padding-bottom: 23px;
    }

    .rma-contact-hero__container {
        width:
            calc(
                100%
                - clamp(30px, 8vw, 44px)
            );

        row-gap: 19px;
    }

    .rma-contact-hero__eyebrow {
        gap: 9px;

        margin-bottom: 11px;

        font-size: 0.54rem;
    }

    .rma-contact-hero__eyebrow i {
        width: 25px;

        flex-basis: 25px;
    }

    .rma-contact-hero__credentials {
        margin-bottom: 13px;
    }

    .rma-contact-hero h1 {
        margin-bottom: 15px;

        font-size: clamp(2.75rem, 11.7vw, 4rem);
        line-height: 0.91;
    }

    .rma-contact-hero__description {
        margin-bottom: 19px;

        font-size: 0.78rem;
        line-height: 1.6;
    }

    .rma-contact-hero__summary {
        padding: 22px;

        border-radius: 26px;
    }

    .rma-contact-hero__contact-strip {
        grid-template-columns: 1fr;
    }

    .rma-contact-hero__contact-strip article:last-child {
        grid-column: auto;
    }
}


/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {
    .rma-consultation__progress-labels strong {
        font-size: 0.88rem;
    }

    .rma-consultation__progress-labels > div > span {
        width: 31px;
        height: 31px;
    }

    .rma-consultation__information-header h2 {
        font-size:
            clamp(2.35rem, 11vw, 3.25rem);
    }

    .rma-consultation__service-option label {
        min-height: 76px;
    }
    :root {
        --rma-contact-nav-height: 62px;
        --rma-contact-nav-top: 8px;
        --rma-contact-nav-gap: 20px;
    }

    .rma-contact-hero__container {
        width: calc(100% - 30px);
    }

    .rma-contact-hero__eyebrow {
        font-size: 0.5rem;
        letter-spacing: 0.11em;
    }

    .rma-contact-hero__eyebrow > span {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }

    .rma-contact-hero__eyebrow i {
        width: 20px;

        flex-basis: 20px;
    }

    .rma-contact-hero__credentials span:nth-child(2),
    .rma-contact-hero__credentials span:nth-child(3) {
        display: none;
    }

    .rma-contact-hero h1 {
        font-size: clamp(2.45rem, 12.2vw, 3.3rem);
    }

    .rma-contact-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rma-contact-hero__button {
        width: 100%;
    }

    .rma-contact-hero__summary-options {
        grid-template-columns: 1fr;
    }

    .rma-contact-hero__summary-top {
        align-items: start;
    }

    .rma-contact-hero__contact-strip article {
        min-height: 60px;
    }
}


/* =========================================================
   PANTALLAS DE POCA ALTURA
   El hero crece verticalmente en lugar de superponer piezas.
   ========================================================= */

@media (max-height: 700px) and (min-width: 821px) {
    .rma-contact-hero {
        min-height: 650px;
    }

    .rma-contact-hero__container {
        row-gap: 18px;
    }

    .rma-contact-hero__credentials {
        margin-bottom: 11px;
    }

    .rma-contact-hero h1 {
        margin-bottom: 13px;

        font-size: clamp(3rem, 4.5vw, 4.35rem);
    }

    .rma-contact-hero__description {
        margin-bottom: 16px;

        line-height: 1.55;
    }

    .rma-contact-hero__summary {
        padding: 20px;
    }

    .rma-contact-hero__summary-top {
        margin-bottom: 13px;
    }

    .rma-contact-hero__summary-options {
        margin-bottom: 13px;
    }

    .rma-contact-hero__contact-strip article {
        min-height: 58px;
    }
}


/* =========================================================
   INTERACCIÓN TÁCTIL
   ========================================================= */

@media (hover: none) {
      .rma-consultation__service-option label:hover,
    .rma-consultation__next:hover,
    .rma-consultation__submit:hover,
    .rma-consultation__back:hover {
        transform: none;
    }
    .rma-contact-hero__button:hover {
        transform: none;
    }

    .rma-contact-hero__button:hover svg {
        transform: none;
    }
}


/* =========================================================
   MOVIMIENTO REDUCIDO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
      .rma-consultation__progress-track span,
    .rma-consultation__progress-labels > div,
    .rma-consultation__choice label,
    .rma-consultation__service-option label,
    .rma-consultation__next,
    .rma-consultation__submit,
    .rma-consultation__back,
    .rma-consultation__next svg,
    .rma-consultation__submit svg,
    .rma-consultation__back svg {
        transition: none;
        transform: none;
    }
    .rma-contact-hero__button,
    .rma-contact-hero__button svg {
        transition: none;
        transform: none;
    }
}