:root
{
    --ancho_slider_general: cal(40vw * 5);
    --ancho_slider_general_1: cal(40vw * 5);
    --ancho_seccion:40vw;
    --ancho_seccion_1:40vw;
}
/*--------------------------------------------*/
.cont_boxes_productos
{
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    /*border: 1px solid red;*/
    overflow: hidden;
}
.cont_boxes_productos_1
{
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    /*border: 1px solid red;*/
    overflow: hidden;
}
.producto_seccion
{
    width: var(--ancho_slider_general);
    height: 470px;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:center;
    margin-left: -40vw;
}
.producto_seccion_1
{
    width: var(--ancho_slider_general_1);
    height: 470px;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:center;
    margin-left: -40vw;
}

.box_producto
{
    width: var(--ancho_seccion);
    height: 500px;
    border: 15px solid rgba(235, 235, 235, 0);
    background-color: rgba(235, 235, 235, 0);
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
.box_producto_1
{
    width: var(--ancho_seccion_1);
    height: 500px;
    border: 15px solid rgba(235, 235, 235, 0);
    background-color: rgba(235, 235, 235, 0);
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
/*----------------------------------------------------------*/
.box_producto:hover
{
    border: 15px solid rgb(43, 43, 43);
}
.box_producto img
{
    width: 100%;
    height: 80%;
    object-position: center;
    object-fit: cover;
}
.box_producto_1 img
{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.box_producto p
{
    width: 100%;
    height: 20%;
    border-bottom: 1px solid var(--color_principal);
    background-color: white;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color_principal);
    font-weight: 700;
}

/*----------------------------------------------------------*/
.boton_iqz_producto
{
    position: absolute;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(199,132,79, 0.9);
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_iqz_producto:hover
{
    transition: all 0.3s;
    background-color: rgba(199,132,79, 0.5);
}
.boton_iqz_producto i
{
    font-size: 20px;
    color: white;
}

/*----------------------------------------------------------------*/
.boton_der_producto
{
    position: absolute;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(199,132,79, 0.9);
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_der_producto:hover
{
    transition: all 0.3s;
    background-color: rgba(199,132,79, 0.5);
}
.boton_der_producto i
{
    font-size: 20px;
    color: white;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*responsive*/
@media screen and (max-width:840px)
{
    .producto_seccion
    {
        width: cal(100vw * 9);
        margin-left: -100vw;
    }
    .box_producto
    {
        width: 100vw;
    }

    .producto_seccion_1
    {
        width: cal(100vw * 9);
        margin-left: -100vw;
    }
    .box_producto_1
    {
        width: 100vw;
    }
}
@media screen and (max-width:570px)
{
    .producto_seccion_1
    {
        height: 400px;
    }
    .box_producto_1
    {
        height: 400px;
    }
}
@media screen and (max-width:395px)
{
    
}