/* Vista index - banner, hero, servicios, aeronaves, mantenimiento */

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

.rw-services {
    position: relative;
    padding: 5.5rem 0;
}


.rw-services__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.rw-services__top {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    column-gap: 2.25rem;
    row-gap: 0.75rem;
    align-items: start;
    margin-bottom: 2.25rem;
}

.rw-services__kicker {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 0 0 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #F6B21C;
}

.rw-services__title {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: #1E1E1E;
}

.rw-services__lead {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #1E1E1E;
    max-width: 44ch;
}

.rw-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 1.25rem;
}

.rw-service-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.rw-service-card__media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rw-service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.rw-service-card__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 62px;
    height: 62px;
    background: #F6B21C;
    border-radius: 0 0 14px 0;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.rw-service-card__icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.rw-service-card__body {
    padding: 1.25rem 1.25rem 1.05rem;
    display: grid;
    gap: 0.5rem;
}

.rw-service-card__title {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #1E1E1E;
}

.rw-service-card__desc {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #1E1E1E;
    min-height: 3.6em;
}

.rw-service-card__link {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end; /* pasivo: solo se ve la flecha a la derecha */
    gap: 0.55rem;
    color: #F6B21C;
    text-decoration: none;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    width: fit-content;
    justify-self: start; /* que no quede corrido al borde derecho */
    max-width: 34px; /* pasivo: flecha visible + gap */
    transition: max-width 0.22s ease, transform 0.15s ease;
}

.rw-service-card__cta-text {
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0; /* pasivo: no reserva espacio */
    opacity: 0;
    transform: translateX(-10px);
    transition: max-width 0.22s ease, opacity 0.18s ease, transform 0.22s ease;
}

.rw-service-card__arrow {
    width: 22px;
    height: 22px;
    display: block;
}

.rw-service-card__link:hover,
.rw-service-card__link:focus,
.rw-service-card__link:active {
    max-width: 170px; /* aparece GET PRICE, sin fondo */
    transform: translateX(2px);
}

.rw-service-card__link:hover .rw-service-card__cta-text,
.rw-service-card__link:focus .rw-service-card__cta-text,
.rw-service-card__link:active .rw-service-card__cta-text {
    max-width: 120px;
    opacity: 1;
    transform: translateX(0);
}

.rw-service-card__link:focus {
    outline: none;
}

.rw-service-card__link:focus-visible {
    outline: 2px solid rgba(246, 178, 28, 0.55);
    outline-offset: 2px;
}

@media (max-width: 1024px) {
    .rw-services__top {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 0.75rem;
    }

    .rw-services__kicker {
        grid-column: 1;
        grid-row: auto;
    }

    .rw-services__title {
        grid-column: 1;
        grid-row: auto;
    }

    .rw-services__lead {
        grid-column: 1;
        grid-row: auto;
        max-width: 60ch;
    }

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

@media (max-width: 600px) {
    .rw-services {
        padding: 4.25rem 0;
    }

    .rw-services__grid {
        grid-template-columns: 1fr;
    }

    .rw-service-card__media {
        height: 210px;
    }
}

/* Why choose us (home) */
.rw-why {
    position: relative;
    padding: 5.5rem 0;
}


.rw-why__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: clamp(2.75rem, 5.5vw, 3.5rem) clamp(4rem, 7vw, 6.5rem);
    align-items: stretch;
}

.rw-why__head-left {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

.rw-why__head-right {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    max-width: 34rem;
}

.rw-why__body-left {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
}

.rw-why__body-right {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-width: 34rem;
}

.rw-why__kicker {
    margin: 0 0 0.75rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #F6B21C;
}

.rw-why__title {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.2;
    text-transform: uppercase;
    color: #1E1E1E;
    max-width: 32ch;
}

.rw-why__title-accent {
    color: #F6B21C;
}

.rw-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.rw-why-card {
    background: #ffffff;
    border: 1px solid rgba(30, 30, 30, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.rw-why-card__title {
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1E1E1E;
    text-align: center;
}

.rw-why-card__desc {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #1E1E1E;
    text-align: center;
}

.rw-why__lead {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.12rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #1E1E1E;
}

.rw-why__lead strong {
    font-weight: 700;
    color: #111827;
}

.rw-why__checklist {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%);
    border: 2px solid rgba(246, 178, 28, 0.65);
    border-radius: 12px;
    padding: 1.65rem 1.65rem 1.45rem;
    box-shadow: 0 6px 22px rgba(30, 30, 30, 0.055);
}

.rw-why__checklist-title {
    margin: 0 0 0.35rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    line-height: 1.28;
    text-transform: uppercase;
    color: #111827;
}

.rw-why__checklist-sub {
    margin: 0 0 0.8rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    letter-spacing: 0.01em;
    color: #1E1E1E;
}

.rw-why__checklist-list {
    margin: 0 0 1.1rem 0;
    padding: 0;
    list-style: none;
}

.rw-why__checklist-list li {
    position: relative;
    padding-left: 1.45rem;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 0.93rem;
    line-height: 1.5;
    color: #1E1E1E;
}

.rw-why__checklist-list li:last-child {
    margin-bottom: 0;
}

/* Viñeta tipo rombo / paralelogramo */
.rw-why__checklist-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 11px;
    height: 7px;
    background: #F6B21C;
    border-radius: 1px;
    transform: skewX(-16deg);
    box-shadow: 0 1px 2px rgba(246, 178, 28, 0.35);
}

.rw-why__checklist-cta {
    position: relative;
    display: inline-block;
    margin-top: auto;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: #1E1E1E;
    text-decoration: none;
    padding-bottom: 0.32rem;
}

.rw-why__checklist-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(72%, 9.5rem);
    height: 3px;
    background: #F6B21C;
    border-radius: 1px;
    transition: width 0.2s ease, background 0.2s ease;
}

.rw-why__checklist-cta:hover {
    color: #F6B21C;
}

.rw-why__checklist-cta:hover::after {
    width: min(42%, 5.5rem);
    background: #F6B21C;
}

@media (max-width: 1024px) {
    .rw-why__inner {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .rw-why__head-left,
    .rw-why__head-right,
    .rw-why__body-left,
    .rw-why__body-right {
        grid-column: 1;
        grid-row: auto;
    }

    .rw-why__head-right,
    .rw-why__body-right {
        max-width: none;
    }

    .rw-why__body-right {
        display: block;
    }

    .rw-why__lead {
        margin: 0 0 1.25rem 0;
    }

    .rw-why__title {
        max-width: none;
        margin: 0 0 1.5rem 0;
    }

    .rw-why__checklist {
        flex: none;
        display: block;
        min-height: 0;
    }

    .rw-why__checklist-cta {
        margin-top: 0;
    }

    .rw-why__grid {
        grid-template-columns: 1fr;
    }
}

/* Tablets: cards en 2 columnas */
@media (min-width: 721px) and (max-width: 1024px) {
    .rw-why__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Service area / locations */
.locations {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 0; /* mismo alto que la imagen */
    background: #07090C;
}

/* Quick answers (FAQ) */
.quick-answers {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
    background: #f3f1ea;
}

/* Get a fast quote */
.quote {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
    background: #0B0D10;
    color: #ffffff;
}

.quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../../res/img/img_quotes.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.quote::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: min(62vw, 820px); /* igual estilo al banner home */
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.quote__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.quote__left {
    max-width: 760px;
}

.quote__title {
    margin: 0 0 0.75rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2.15rem, 4vw, 3.4rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.quote__title-accent {
    color: #F6B21C;
}

.quote__subtitle {
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
}

.quote__desc {
    margin: 0 0 1.6rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 52ch;
}

.quote__form {
    margin-top: 0.25rem;
}

.quote__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    align-items: start;
}

.quote-field {
    position: relative;
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.quote-field--span-2 {
    grid-column: 1 / -1;
}

.quote-field--details {
    grid-column: 2;
    grid-row: span 2;
}

.quote-field__label {
    font-family: 'Poppins Bold', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.quote-field__control {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    padding: 0.8rem 2.4rem 0.8rem 0.9rem;
    color: #ffffff;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    outline: none;
}

.quote-field select.quote-field__control:required:invalid {
    /* "placeholder" del select (opción disabled seleccionada) */
    color: rgba(255, 255, 255, 0.55);
}

.quote-field select.quote-field__control:required:valid {
    /* valor seleccionado */
    color: #1E1E1E;
}

/* Texto dentro del dropdown (opciones) */
.quote-field select.quote-field__control option,
.quote-field select.quote-field__control optgroup {
    color: #1E1E1E;
}

.quote-field__control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.quote-field textarea.quote-field__control {
    resize: vertical;
    min-height: 120px;
    padding-top: 0.85rem;
}

.quote-field select.quote-field__control {
    -webkit-appearance: none;
    appearance: none;
}

/* Icono cuando el campo está seleccionado (focus) */
.quote-field:focus-within::after {
    content: "";
    position: absolute;
    right: 0.85rem;
    top: 2.15rem;
    width: 18px;
    height: 18px;
    background-image: url('../../res/img/icon_menu_select.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.95;
    pointer-events: none;
}

.quote-field:focus-within .quote-field__control {
    border-color: rgba(246, 178, 28, 0.95);
    box-shadow: 0 0 0 3px rgba(246, 178, 28, 0.18);
}

.quote__actions {
    margin-top: 1.15rem;
}

.quote__actions--in-grid {
    margin-top: 0;
    grid-column: 1;
}

.quote__submit {
    border: 2px solid transparent;
    cursor: pointer;
    background: #F6B21C;
    color: #1E1E1E;
    font-family: 'Poppins SemiBold', 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.9rem 1.35rem;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.quote__submit:hover {
    background: #1E1E1E70;
    border-color: #F6B21C;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .quote__left {
        max-width: 900px;
    }
}

@media (max-width: 720px) {
    .quote__grid {
        grid-template-columns: 1fr;
    }

    .quote-field--span-2 {
        grid-column: auto;
    }

    .quote-field--details {
        grid-column: auto;
        grid-row: auto;
    }

    .quote__actions--in-grid {
        grid-column: auto;
    }
}

.quick-answers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../../res/img/img_wall.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    z-index: 0;
}

.quick-answers__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
    align-items: stretch;
}

.quick-answers__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

.quick-answers__kicker {
    margin: 0 0 0.4rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #F6B21C;
}

.quick-answers__title {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.2vw, 2.35rem);
    line-height: 1.08;
    text-transform: uppercase;
    color: #1E1E1E;
}

.quick-answers__note {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.35;
    color: #1E1E1E;
    max-width: 34ch;
}

.quick-answers__note strong {
    font-weight: 800;
}

.quick-answers__list {
    display: grid;
    gap: 0.75rem;
}

.quick-answers__item {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overflow: hidden;
}

.quick-answers__summary {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.quick-answers__summary::-webkit-details-marker {
    display: none;
}

.quick-answers__q {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins Bold', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1E1E1E;
}

.quick-answers__quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transform: translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.quick-answers__item[open] .quick-answers__quote {
    opacity: 1;
}

.quick-answers__quote img {
    width: 20px;
    height: 20px;
    display: block;
}

.quick-answers__chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.quick-answers__chev-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.quick-answers__chev-icon--unfold {
    display: none;
}

.quick-answers__item[open] .quick-answers__chev-icon--fold {
    display: none;
}

.quick-answers__item[open] .quick-answers__chev-icon--unfold {
    display: block;
}

.quick-answers__content {
    padding: 0 1.05rem 1rem;
    font-family: 'Poppins Regular', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1E1E1E;
}

@media (max-width: 900px) {
    .quick-answers__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .quick-answers__note {
        max-width: none;
    }
}

.locations__bgimg {
    width: 100%;
    height: auto;
    display: block; /* define el alto de la sección */
    margin-left: 0;
}

.locations__bgimg img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .locations__bgimg {
        width: min(100%, 980px);
        margin-left: auto; /* en tablet/celular se alinea a la derecha */
    }
}

@media (max-width: 520px) {
    .locations {
        background: #0B0D10; /* fondo sólido a la izquierda */
        /* Mantén la altura aunque la imagen sea más angosta */
        height: clamp(620px, 155vw, 980px);
    }

    .locations::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 38%;
        pointer-events: none;
        z-index: 1; /* encima de la imagen */
        background: linear-gradient(
            90deg,
            rgba(11, 13, 16, 0.95) 0%,
            rgba(11, 13, 16, 0.65) 55%,
            rgba(11, 13, 16, 0) 100%
        );
    }

    .locations__bgimg {
        position: absolute;
        top: 0;
        right: -18px;
        bottom: 0;
        width: 90vw; /* más cerca / más grande */
        max-width: none;
        display: block;
        margin: 0;
        z-index: 0;
        overflow: hidden; /* asegura recorte */
    }

    .locations__bgimg img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* recorta un poco más */
        object-position: center 50%;
    }

    .locations__inner {
        z-index: 2;
    }
}

.locations__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: clamp(3.5rem, 6vw, 5.5rem);
    padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(0.5rem, 2.2vw, 1.6rem);
}

.locations__main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4.25rem);
    align-items: start;
}

.locations__right {
    justify-self: end;
    width: 100%;
    max-width: 520px;
    margin-right: -4rem;
}

.locations__kicker {
    margin: 0 0 0.85rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(246, 178, 28, 0.95);
}

.locations__title {
    margin: 0 0 1rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.locations__title-accent {
    color: #F6B21C;
}

.locations__lead {
    margin: 0;
    font-family: 'Poppins Regular', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 36ch;
}

.locations__panel {
    border-radius: 18px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.locations__panel-title {
    margin: 0 0 0.85rem 0;
    font-family: 'Poppins SemiBold', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.locations__panel-title--spaced {
    margin-top: 1.35rem;
}

.locations__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.locations__bullets li {
    position: relative;
    padding-left: 1.15rem;
    font-family: 'Poppins Regular', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.92);
}

.locations__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #F6B21C;
    box-shadow: 0 0 0 3px rgba(246, 178, 28, 0.22);
}

.locations__chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    justify-items: start;
}

.locations__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0.85rem;
    border-radius: 10px;
    width: fit-content;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.locations__chip img {
    width: 14px;
    height: 14px;
    display: block;
    transition: filter 0.18s ease;
}

.locations__chip span {
    font-family: 'Poppins Regular', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.18s ease;
}

.locations__chip:hover,
.locations__chip:focus-visible {
    background: #F6B21C;
    border-color: #F6B21C;
    transform: translateY(-1px);
}

.locations__chip:hover span,
.locations__chip:focus-visible span {
    color: #FFFFFF;
}

.locations__chip:hover img,
.locations__chip:focus-visible img {
    filter: brightness(0) invert(1);
}

.locations__footer-cta {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    padding: 0.95rem 1.05rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #F6B21C;
    width: fit-content;
}

.locations__footer-cta-text {
    display: grid;
}

.locations__footer-cta img {
    width: 22px;
    height: 22px;
    display: block;
}

.locations__footer-cta-title {
    display: block;
    font-family: 'Poppins SemiBold', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.15rem;
}

.locations__footer-cta-sub {
    display: block;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.82);
}

.locations__footer-cta:hover {
    border-color: #ffffff;
}

.locations__footer-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .locations__inner {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .locations__main {
        grid-template-columns: 1fr;
    }

    .locations__right {
        display: none;
    }

    .locations__footer-cta {
        margin-top: auto; /* pegado a la parte inferior de la sección */
    }

    .locations__lead {
        max-width: 46ch;
    }

    .locations__panel {
        padding: 1.3rem 1.25rem 1.15rem;
    }

    .locations__chips {
        grid-template-columns: 1fr;
    }
}

/* Desktop: permite subir el footer-cta si se desea */
@media (min-width: 1025px) {
    .locations__footer-cta {
        margin-top: -3.2rem;
    }
}

@media (max-width: 520px) {
    .locations__chips {
        grid-template-columns: 1fr;
    }
}

/* Banner: deadline / availability CTA */
.deadline-cta {
    position: relative;
    overflow: hidden;
    background: #F6B21C;
    --deadline-bg-width: min(42vw, 520px);
    padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1rem, 4vw, 2.5rem);
}

.deadline-cta__bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--deadline-bg-width);
    max-width: 100%;
    background-image: url('../../res/img/shutterstock_2424543449.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    opacity: 0.95;
    pointer-events: none;
    /* Zona izquierda al 100% de opacidad en la máscara (sin degradado); solo el tramo derecho funde al amarillo */
    -webkit-mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 48%,
        rgba(0, 0, 0, 0.55) 72%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 48%,
        rgba(0, 0, 0, 0.55) 72%,
        transparent 100%
    );
}

.deadline-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.deadline-cta__copy {
    flex: 1 1 16rem;
    max-width: 36rem;
    margin-left: clamp(8rem, 38vw, min(52vw, 34rem));
}

.deadline-cta__title {
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.deadline-cta__text {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.deadline-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.deadline-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    font-family: 'Poppins SemiBold', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.deadline-cta__btn--primary {
    background: #1E1E1EB3;
    color: #ffffff;
    border-color: #F6B21C;
}

.deadline-cta__btn--primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.deadline-cta__btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.95);
}

.deadline-cta__btn--ghost:hover {
    background: #1E1E1EB3;
    color: #ffffff;
    border-color: #F6B21C;
}

@media (max-width: 1024px) {
    .deadline-cta {
        /* Móvil/tablet: compacto y centrado (como referencia) */
        min-height: auto;
        padding: 1.4rem 0;
        display: flex;
        justify-content: center;
    }

    .deadline-cta__inner {
        display: grid;
        grid-auto-flow: row;
        justify-items: center;
        align-content: center;
        text-align: center;
        width: 100%;
        max-width: 520px;
        padding: 0 1rem;
        margin: 0 auto;
        gap: 0.65rem; /* separación corta entre título y botones */
    }

    .deadline-cta__copy {
        max-width: none;
        margin-left: 0;
        flex: none;
        width: 100%;
    }

    .deadline-cta__title {
        margin-bottom: 0; /* separación 0 dentro del copy */
        font-size: clamp(1.35rem, 4.2vw, 1.85rem);
    }

    .deadline-cta__copy {
        margin: 0;
    }

    .deadline-cta__text {
        margin: 0;
        font-size: 0.95rem;
    }

    .deadline-cta__actions {
        justify-content: center;
        flex-wrap: nowrap; /* botones uno al lado del otro */
        width: 100%;
        max-width: 460px;
        margin-top: 0;
        gap: 0.5rem; /* separación horizontal entre botones */
    }

    .deadline-cta__btn {
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap; /* nunca 2 renglones */
        padding: 0.7rem 0.9rem;
        font-size: 0.78rem;
        letter-spacing: 0.09em;
    }
}

/* Tablet: centra el contenido dentro del área amarilla (a la derecha de la imagen) */
@media (min-width: 721px) and (max-width: 1024px) {
    .deadline-cta__inner {
        margin-left: var(--deadline-bg-width);
        margin-right: 0;
        width: calc(100% - var(--deadline-bg-width));
        max-width: none;
    }
}

@media (max-width: 420px) {
    .deadline-cta__btn {
        padding: 0.65rem 0.8rem;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 360px) {
    .deadline-cta__actions {
        gap: 0.4rem;
    }

    .deadline-cta__btn {
        padding: 0.6rem 0.7rem;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}

/* Before / after CTA (home) */
.ba-cta {
    position: relative;
    padding: 4.5rem clamp(1rem, 4vw, 2.5rem);
    background: #090B0E;
    overflow: hidden;
}

.ba-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url('../../res/img/icon_ry.svg');
    background-position: left 1.25rem bottom 1.25rem;
    background-repeat: no-repeat;
    background-size: min(560px, 70vw);
    /* icon_ry.svg es casi negro (#111119): sin invertir no se ve sobre #0a0a0a */
    opacity: 0.09;
    filter: invert(1) brightness(0.42);
    pointer-events: none;
}

.ba-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.ba-cta__copy {
    color: #ffffff;
}

.ba-cta__intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.ba-cta__title {
    margin: 0;
    flex: 0 1 auto;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: left;
}

.ba-cta__text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: left;
}

.ba-cta__text strong {
    font-weight: 700;
    color: #ffffff;
}

.ba-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.35rem;
    background: #0a0a0a;
    color: #ffffff;
    border: 2px solid #F6B21C;
    border-radius: 8px;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ba-cta__btn:hover {
    background: #F6B21C;
    color: #111827;
    border-color: #F6B21C;
}

.ba-cta__btn:hover .ba-cta__btn-arrow {
    color: #111827;
}

.ba-cta__btn-arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #F6B21C;
}

.ba-cta__slider {
    width: 100%;
}

.ba-compare {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    max-height: 420px;
    touch-action: none;
    user-select: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.ba-compare__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-compare__img--after {
    z-index: 1;
}

.ba-compare__img--before {
    z-index: 2;
    -webkit-clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
    clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}

.ba-compare__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split, 50%);
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    z-index: 3;
    pointer-events: none;
}

.ba-compare__handle {
    position: absolute;
    top: 50%;
    left: var(--split, 50%);
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: grab;
    display: grid;
    place-items: center;
    touch-action: none;
}

.ba-compare__handle:active {
    cursor: grabbing;
}

.ba-compare__handle img {
    width: 48px;
    height: 48px;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.ba-compare__labels {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 5;
    pointer-events: none;
}

.ba-compare__label {
    padding: 0.6rem 0.75rem;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .ba-cta__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ba-cta__intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .ba-cta__text {
        max-width: none;
    }

    .ba-compare {
        max-height: none;
        aspect-ratio: 16 / 11;
    }
}

.banner-home__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: transparent;
}

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

/* Video desktop vs móvil */
.homeVideo--mobile {
    display: none;
}

/* Tablet + móvil: usa el video responsive */
@media (max-width: 1024px) {
    .homeVideo--desktop {
        display: none;
    }

    .homeVideo--mobile {
        display: block;
    }
}

/* Home banner: sin capa oscura + video más claro */
.banner-home__bg::before,
.banner-home__bg::after {
    content: none !important;
    display: none !important;
}

.banner-home__bg video {
    filter: none;
}

/* Home banner: gradiente oscuro desde la izquierda (ancho parcial) */
.banner-home__gradient {
    display: block !important; /* override de base.css */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: min(62vw, 820px);
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0) 100%
    ) !important;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.banner-home__content {
    position: relative;
    z-index: 2;
    padding-left: 7.5rem;
    padding-right: 7.5rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Home hero text (Poppins local: Regular/Bold) */
.home-hero-title {
    margin: 0 0 1.1rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: clamp(2.3rem, 5.2vw, 4.1rem);
    line-height: 1.05;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 720px;
}

.home-hero-title__accent {
    color: #F6B21C;
    font-weight: 900; /* Black */
    font-size: 1.06em;
}

.home-hero-title__heavy {
    font-weight: 900; /* Black */
    font-size: 1.06em;
}

.home-hero-title__semibold {
    font-weight: 600; /* SemiBold */
    font-size: 0.85em;
}

.home-hero-desc {
    margin: 0 0 1.35rem 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
}

.home-hero-desc br {
    display: inline;
}

@media (max-width: 1024px) {
    .home-hero-desc br {
        display: none;
    }
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1.5rem 0;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.45rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.home-hero-btn--primary {
    background: #F6B21C;
    color: #1E1E1E;
    border: 2px solid #F6B21C;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.home-hero-btn--primary:hover,
.home-hero-btn--primary:active {
    background: #1E1E1EB3;
    border-color: #F6B21C;
    color: #ffffff;
    filter: none;
}

.home-hero-btn--secondary {
    background: #1E1E1EB3;
    color: #ffffff;
    border: 2px solid #F6B21C;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.home-hero-btn--secondary .home-hero-btn__arrow {
    color: #F6B21C;
}

.home-hero-btn--secondary:hover,
.home-hero-btn--secondary:active {
    background: #F6B21C;
    border-color: #F6B21C;
    color: #111827;
    filter: none;
}

.home-hero-btn--secondary:hover .home-hero-btn__arrow,
.home-hero-btn--secondary:active .home-hero-btn__arrow {
    color: #111827;
}

.home-hero-btn--secondary:hover .home-hero-btn__arrow {
    transform: translateX(8px);
}

.home-hero-btn--secondary:active .home-hero-btn__arrow {
    transform: translateX(0);
}

.home-hero-btn:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}

.home-hero-btn:active {
    transform: translateY(0);
}

.home-hero-btn__arrow {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 auto;
    transition: transform 0.18s ease;
    color: currentColor;
}

.home-hero-proof {
    display: grid;
    gap: 0.5rem;
    max-width: 520px;
}

.home-hero-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #F6B21C;
    font-size: 1.05rem;
}

.home-hero-proof-text {
    margin: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.home-hero-proof-text strong {
    font-weight: 700;
}

.banner-home__title-alt {
    text-align: left;
}

.title-crossfade-container {
    display: grid;
    margin: 0 0 1.5rem 0;
    max-width: 800px;
}

.title-crossfade-container>* {
    grid-area: 1 / 1;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
}

#bannerTitle1 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#bannerTitle2 {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.title-crossfade-container.show-alt #bannerTitle1 {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.title-crossfade-container.show-alt #bannerTitle2 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.banner-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Bristone', 'Grillmaster', 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2.8rem);
    font-weight: 300;
    color: #ffffff;
}

.banner-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.banner-features-list .feature-img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    object-fit: contain;
}

.title-en {
    font-size: clamp(1.4rem, 2.5vw, 2.8rem);
    max-width: 100%;
}

.title-en-large {
    font-size: 1.65em;
    display: inline-block;
    margin-top: 0.15rem;
}

span.badge-blue {
    display: inline-block;
    background: #185480;
    color: #ffffff;
    padding: 0.2rem 1.5rem;
    border-radius: 999px;
    font-weight: 800;
    transform: translateY(-2px);
}

span.badge-gold {
    display: inline-block;
    background: #8e6d2b;
    color: #ffffff;
    padding: 0.2rem 0.8rem;
    margin-top: 0.25rem;
    line-height: 1.1;
    border-radius: 0;
}

.banner-home__subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #606060;
    line-height: 1.3;
    max-width: 520px;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
    text-align: left;
}

.banner-home__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

/* ABOUT HOME SECTION */
.about-home {
    padding: 5.5rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.about-home__inner {
    max-width: 1080px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.about-home__image-wrap {
    position: relative;
    width: 35%;
    z-index: 1;
}

.about-home__image-bg {
    position: absolute;
    top: 1rem;
    bottom: -1rem;
    left: -1rem;
    right: 2rem;
    background-color: #8e6d2b;
    z-index: -1;
}

.about-home__image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5.2;
    object-fit: cover;
    object-position: 80% center;
    display: block;
}

.about-home__content {
    background-color: #ffffff;
    padding: 2rem 4rem;
    width: 75%;
    margin-left: -10%;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-home__title {
    font-family: 'Bristone Reg', 'Bristone', sans-serif;
    font-size: 2.2rem;
    color: #0b132b;
    margin-bottom: 1rem;
    font-weight: normal;
}

.about-home__desc {
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    color: #212121;
    line-height: 1.6;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-gold {
    display: inline-block;
    background-color: #8e6d2b;
    color: #ffffff;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.18rem;
    padding: 0.5rem 2rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: #6d5421;
}

/* SERVICES HOME SECTION */
.services-home {
    background-color: #1a1a1a;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-home__inner {
    max-width: 1250px;
    width: 100%;
}

.services-home__title {
    font-family: 'Bristone Reg', 'Bristone', 'Grillmaster', sans-serif;
    color: #ffffff;
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-align: left;
    font-weight: normal;
}

.services-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card__img-wrap {
    width: 100%;
    margin-bottom: 1.5rem;
}

.service-card__img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5.2;
    object-fit: cover;
    display: block;
}

.service-card__num {
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-size: 3.2rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card__title {
    font-family: 'Kontora', 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    min-height: 3.5rem;
    line-height: 1;
    display: grid;
    align-content: center;
}

.service-card__title span.weight-light {
    font-family: 'Kontora Light', 'Outfit', sans-serif;
    font-weight: 300;
}

.service-card__desc {
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.6;
}

.services-home__action {
    display: flex;
    justify-content: center;
}

/* SERVICE CARD HOME SECTION */
.service-card-home {
    padding: 7rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.service-card-home__inner {
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.service-card-home__content {
    flex: 1;
    max-width: 55%;
}

.service-card-home__title {
    font-family: 'Bristone Reg', 'Bristone', 'Grillmaster', sans-serif;
    color: #0b132b;
    font-size: 2.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: normal;
}

.service-card-home__subtitle {
    font-family: 'Kontora', 'Outfit', sans-serif;
    color: #0b132b;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.service-card-home__desc {
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    color: #212121;
    line-height: 1.6;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.service-card-home__actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card-home__image-wrap {
    width: 38%;
    position: relative;
    z-index: 1;
}

.service-card-home__image-bg {
    position: absolute;
    top: 1rem;
    bottom: -1rem;
    left: 1rem;
    right: -1rem;
    background-color: #8e6d2b;
    z-index: -1;
}

.service-card-home__image-wrap img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    display: block;
    position: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ HOME SECTION */
.faq-home {
    padding: 7rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.faq-home__inner {
    max-width: 1050px;
    width: 100%;
}

.faq-home__header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-home__title {
    font-family: 'Bristone Reg', 'Bristone', 'Grillmaster', sans-serif;
    color: #0b132b;
    font-size: 2.1rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.faq-home__subtitle {
    font-family: 'Kontora', 'Outfit', sans-serif;
    color: #0b132b;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.faq-home__desc {
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    color: #212121;
    font-size: 1.15rem;
}

.faq-home__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: #1c1c1c;
    border-radius: 18px;
    padding: 0 2.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    list-style: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__text {
    padding-right: 2rem;
}

.faq-item__icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

details[open] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding-bottom: 1.8rem;
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
}

/* CONTACT HOME SFS */
.contact-home-sfs {
    background-color: #86651e;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.contact-home-sfs__inner {
    max-width: 1250px;
    width: 100%;
    display: flex;
    gap: 8rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .contact-home-sfs__inner {
        gap: 4rem;
    }
}

/* Home banner móvil: video alterno + contenido centrado */
@media (max-width: 768px) {
    .homeVideo--desktop {
        display: none;
    }

    .homeVideo--mobile {
        display: block;
    }

    .banner-home {
        align-items: center;
        padding-bottom: 0;
        padding-top: 104px;
    }

    .banner-home__content {
        align-items: center;
        text-align: center;
    }

    .home-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-actions {
        justify-content: center;
    }

    .home-hero-proof {
        justify-items: center;
        text-align: center;
    }

    /* Ajustes de tamaño en móvil para que no se corte */
    .home-hero-title {
        font-size: clamp(1.9rem, 9.5vw, 3rem);
        line-height: 1.03;
        margin-bottom: 0.85rem;
    }

    .home-hero-title__heavy,
    .home-hero-title__accent {
        font-size: 1.03em;
    }

    .home-hero-title__semibold {
        font-size: 0.88em;
    }

    .home-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.1rem;
        max-width: 34ch;
    }

    .home-hero-btn {
        padding: 0.75rem 1.1rem;
        font-size: 0.9rem;
    }

    .home-hero-actions {
        margin-bottom: 1.1rem;
        gap: 0.75rem;
    }

    .home-hero-proof-text {
        font-size: 0.82rem;
    }

    .home-hero-stars {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .contact-home-sfs {
        padding: 4rem 1.5rem;
    }

    .contact-home-sfs__inner {
        flex-direction: column;
        gap: 3.5rem;
    }

    .contact-home-sfs__title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
        line-height: 1.1;
        word-wrap: break-word;
    }

    .contact-home-sfs__info,
    .contact-home-sfs__form-wrap {
        width: 100%;
    }
}

.contact-home-sfs__info {
    flex: 1;
    color: #ffffff;
}

.contact-home-sfs__title {
    font-family: 'Bristone Reg', 'Bristone', 'Grillmaster', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: normal;
}

.contact-home-sfs__subtitle {
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.4;
}

.contact-home-sfs__desc {
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-home-sfs__methods {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-home-sfs__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.contact-home-sfs__method img {
    width: 25px;
    height: 25px;
    display: block;
}

.contact-home-sfs__form-wrap {
    flex: 1;
    color: #ffffff;
}

.contact-home-sfs__form-title {
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-home-sfs__form-desc {
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-home-sfs__form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-home-sfs__form input,
.contact-home-sfs__form textarea {
    width: 100%;
    background-color: #d8cebd;
    border: none;
    padding: 1.2rem 1rem;
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    font-size: 1rem;
    color: #4a3811;
}

.contact-home-sfs__form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-home-sfs__form input::placeholder,
.contact-home-sfs__form textarea::placeholder {
    color: #9e8250;
}

.contact-home-sfs__form input:focus,
.contact-home-sfs__form textarea:focus {
    outline: none;
    background-color: #e5dccf;
}

.contact-home-sfs__form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .contact-home-sfs__form-submit {
        justify-content: center;
    }
}

.contact-home-sfs__form-submit button {
    background-color: #1c1c1c;
    color: #ffffff;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-weight: 800;
    padding: 0.8rem 2.5rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-home-sfs__form-submit button:hover {
    background-color: #000000;
}

@media (max-width: 1024px) {
    .banner-home__gradient {
        background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0.1) 100%);
    }
}

@media (max-width: 768px) {
    .banner-home {
        height: auto;
        min-height: 80vh;
        /* Evita que el contenido quede debajo del header fijo (incluye safe-area iOS) */
        padding-top: calc(120px + env(safe-area-inset-top, 0px));
        padding-bottom: 3rem;
    }

    .banner-home__bg {
        width: 100%;
    }

    .banner-home__gradient {
        background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.4) 100%);
    }

    .banner-home__content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

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

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

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

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

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

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

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

    .features-line {
        display: block;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 900px) {
    .about-home {
        padding: 4rem 1.5rem;
    }

    .about-home__inner {
        flex-direction: column;
    }

    .about-home__image-wrap {
        width: 92%;
        margin-right: -8%;
    }

    .about-home__image-bg {
        top: 1rem;
        bottom: -1rem;
        left: -1rem;
        right: 1.5rem;
    }

    .about-home__content {
        width: 95%;
        margin-left: 0;
        margin-top: -3rem;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 1024px) {
    .services-home__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2.5rem;
    }
}

@media (max-width: 600px) {
    .services-home__grid {
        grid-template-columns: 1fr;
    }

    .service-card__title {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .service-card-home__inner {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card-home__content,
    .service-card-home__image-wrap {
        max-width: 100%;
        width: 100%;
    }

    .service-card-home__image-wrap {
        padding-right: 0;
    }

    .service-card-home__image-bg {
        left: -1rem;
        right: -1rem;
        top: 1rem;
        bottom: -1rem;
    }
}