
/*==================SECCIÓN 1=================*/
.secc1{
    background-image: url('../img/3Catalogo/banner-catalogo.jpeg');
    height: 586px;
    background-size: cover;
    background-position: center;
}

/*==================SECCIÓN 3=================*/
.secc2{
    margin-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}
.secc2_titulo{
    color: #01042D;
}
.secc2_categoria{
    width: 15%;
}
.secc2_categoria-select{
    display: flex;
    justify-content: space-between;
}
.secc2_categoria_items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.categoria_item{
    border: none;
    background-color: rgba(255, 255, 255, 0);
    padding: 5px 0px 5px 0px;
    transition: all 0.15s ease-in-out;
    color: #575757;
}
.categoria_item:hover{
    color: #F79F00;
}
.categoria_item-activo{
    color: #F79F00;
}

/*==================SECCIÓN 3=================*/
.secc3{
    width: 80%;
    margin-bottom: 50px;
}
.secc3_productos{
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    margin-bottom: 20px;
}
.secc3_productos:hover{
    background-color: #FFD50F;
}
.secc3_productos:hover .secc3_texto p{
    color: #474747;
}
.secc3_productos a{
    text-decoration: none;
    color: #474747;
}
.secc3_texto{
    margin-top: -1px;
    text-align: center;
    border: solid 0.1px #C4C4C4;
    padding: 20px;
}
.secc3_texto h4{
    margin-bottom: 20px;
}
.secc3_texto p {
    color: #C4C4C4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: auto;
    margin-right: auto;
    width: 200px; /* Ajusta este valor a lo que necesites */
    margin-bottom: 0;
}
.img-producto{
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;

    position: relative;
}
.subimg-producto{
    position: absolute;
    padding: 20px;
    right: 0;
    bottom: 0;
    background-color: #01042D;
}
.img-producto::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}

/*==================RESPONSIVE=================*/
@media (min-width: 320px){
    .secc1{
        height: 350px;
    }
    .secc2_categoria {
        width: 100%;
    }
    .secc2_categoria_items {
        margin-top: 20px;
        margin-bottom: 80px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .secc3 {
        width: 100%;
    }
    .secc3_texto p {
        width: 100%;
    }
}

@media (min-width: 520px){
    .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (min-width: 650px){
    /*----SECC1----*/
    .secc1 {
        height: 450px;
    }
}
@media (min-width: 768px){
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 992px){
    .secc1 {
        height: 500px;
    }
}
@media (min-width: 1200px){
    .secc2_categoria {
        width: 15%;
    }
    .secc2_categoria_items {
        margin-top: unset;
        margin-bottom: unset;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: unset;
    }

    .secc3 {
        width: 80%;
    }
}
@media (min-width: 1440px){
    .secc1 {
        height: 586px;
    }
}
