.promociones {
    width: 100%;
    aspect-ratio: 1081 / 98;
    background: url('/assets/img/servicios_digitales/coopagos/franjaAsociate.webp') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.promoContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 90px;
    margin-right: 20%;
}

.promoTitle {
    color: var(--color-blanco);
    font-family: var(--fuente-poppins);
    font-size: 90px;
    -webkit-text-stroke: 2px var(--color-blanco);
    font-weight: 900;
    margin: 0;
}

.promoButton {
    color: var(--color-blanco);
    background: var(--color-terceiario);
    font-family: var(--fuente-poppins);
    padding: 10px 70px;
    border-radius: 25px;
    font-size: 20px;
    text-decoration: none;
}

.promoButton:hover {
    background: var(--color-amarillo);
    transition: 0.3s;
}

@media screen and (max-width: 1000px) {
    .promoButton {
        display: none;
    }

    .promociones {
        background: url('/assets/img/servicios_digitales/coopagos/franjaAsociate.webp') no-repeat;
        justify-content: center;
    }

    .promoContent {
        margin-right: 0%;
        height: 100px;
    }

    .promoTitle {
        font-size: 50px;
        -webkit-text-stroke: 2px var(--color-blanco);
        font-weight: 900;
        margin: 0;
    }

}

@media screen and (max-width: 500px) {
    .promoButton {
        display: none;
    }

    .promociones {
        background: url('/assets/img/servicios_digitales/coopagos/franjaAsociate.webp') no-repeat;
        justify-content: center;
    }

    .promoContent {
        margin-right: 0%;
        margin-left: 15%;
        height: 100px;
    }

    .promoTitle {
        font-size: 40px;
        -webkit-text-stroke: 2px var(--color-blanco);
        font-weight: 900;
        margin: 0;
    }

}