.contenido_slider 
{
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}
.slider_track 
{
    display: flex;
    width: 100%;
    transition: transform 350ms ease;
    will-change: transform;
    touch-action: pan-y;
}
.slider_slide 
{
    min-width: 100%;
    flex: 0 0 100%;

    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.slider_slide::before 
{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.541);
    z-index: 0;
}


.slider_slide>* 
{
    position: relative;
    z-index: 1;
}
.slider_content {
    margin-bottom: 40px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.slider_content a 
{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #056CC1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.slider_content a:hover 
{
    background-color: #045A9C;
    color: #fff;
}
.slider_textos  
{
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
}
        
.slider_titulo 
{
    font-size: 32px;
    font-weight: bold;
    color: #056CC1;
    margin-bottom: 10px;
}

.slider_descripcion 
{
    font-size: 18px;
    font-weight: 500;
    color: #070707;
    padding: 0px 24px;
}

.slider_imagen 
{
    width: 100%;
    position: relative;
}

.slider_imagen-producto 
{
    width: 100%;
    margin-top: 10px;
}
.slider_dots 
{
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    margin-top: -20px;
    margin-bottom: 20px;
}
 .slider_dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(5, 108, 193, .25);
    padding: 0;
    z-index: 1;
}
 .slider_nav 
 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 35px;
    height: 35px;
    margin-top: -20px;
}

.slider_nav.prev 
{
    left: 10px;
    transform: rotate(0deg);
}

.slider_nav.next 
{
    right: 10px;
    transform: rotate(180deg);
}
  .oferta_slider {
            position: absolute;
            top: 5%;
            left: 0;
            transform: translateX(50%);
        }