.bannerImagen {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.bannerImagen img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contenido_bannerImagen {
    position: relative;
    max-width: 50%;
    padding-right: 20px;
    color: white;
    text-align: right;
    z-index: 2;
}

.bannerImagen .contenido_bannerImagen .titulo {
    font-size: 76px;
}

.bannerImagen .contenido_bannerImagen .titulo .descuento {
    font-weight: bold;
}

.bannerImagen .contenido_bannerImagen .descripcion {
    font-size: 26px;
}

.contenido_bannerImagen .button {
    background-color: white;
    color: var(--color-secundario);
    border: 1px solid var(--color-secundario);
    padding: 10px 14px; 
    border-radius: 10px 4px 4px 4px;
    margin-top: 32px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px; 
    display: inline-block !important;
    cursor: pointer;
    text-align: center;
    transition: transform 0.8s ease;    
}


.contenido_bannerImagen .button:hover {
    transform: scale(1.2);
}
