/* ─── Section ─────────────────────────────────────────────────────────────── */

.be-section--cambios {
    background: var(--BancoEstado-Orange-00, #FF8200);
    max-width: 100%;
    overflow: hidden;
    padding: 120px 24px 72px;
    margin-top: -150px;
    position: relative;
}

.be-cambios-container {
    margin: 0 auto;
    max-width: 1160px;
    position: relative;
    z-index: 1;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */

.be-cambios__header {
    margin: 0 auto 40px;
    text-align: center;
}

.be-cambios__title p {
    color: var(--White--Background-White, #FFF);
    font-family: 'Encode Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.56px;
    margin: 0;
}

.be-cambios__subtitle {
    margin-top: 8px;
}

.be-cambios__subtitle p {
    color: var(--White--Background-White, #FFF);
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

/* ─── Cards grid ──────────────────────────────────────────────────────────── */

.be-cambios__cards {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.be-cambios__card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 8px;
    background: var(--White--Background-White, #FFF);
}

/* ─── Card icon ───────────────────────────────────────────────────────────── */

.be-cambios__card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.be-cambios__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.be-cambios__card-icon--mobile {
    display: none;
}

/* ─── Card label ──────────────────────────────────────────────────────────── */

.be-cambios__card-label p {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

/* ─── Card text ───────────────────────────────────────────────────────────── */

.be-cambios__card-text p {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin: 0;
}

.be-cambios__card-text strong {
    font-weight: 700;
}

/* ─── Decorative images ───────────────────────────────────────────────────── */

.be-cambios__bg-image {
    display: block;
    height: 100%;
    left: 0;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.be-cambios__avion-image {
    display: none;
}

/* ─── Mobile ──────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
    .be-section--cambios {
        padding: 0 24px 56px;
    }

    .be-cambios__bg-image {
        display: none;
    }

    .be-cambios__avion-image {
        display: block;
        margin: 0 -24px 32px;
        pointer-events: none;
        position: relative;
        width: calc(100% + 48px);
    }

    .be-cambios__cards {
        flex-direction: column;
        gap: 12px;
    }

    .be-cambios__card {
        background: transparent;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 12px 0;
    }

    .be-cambios__card-icon {
        align-items: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        display: flex;
        flex-shrink: 0;
        height: 56px;
        justify-content: center;
        margin-bottom: 0;
        width: 56px;
    }

    .be-cambios__card-icon--desktop {
        display: none;
    }

    .be-cambios__card-icon--mobile {
        display: flex;
    }

    .be-cambios__card-icon img {
        height: auto;
        width: auto;
    }

    .be-cambios__card-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .be-cambios__card-label p {
        color: var(--White--Background-White, #FFF);
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }

    .be-cambios__card-text p {
        color: var(--White--Background-White, #FFF);
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
    }
}