p{
    margin: 0;
}
/*==================SECCIÓN 1=================*/
.secc1-bg{
    background-image: url('../img/3Catalogo/Rectangle4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;

    display: flex;
    align-items: center;
}
.secc1-div{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.342);
    backdrop-filter: blur(.4rem);
    padding: 1rem;
}
.secc1-div-textos{
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/*==================SECCIÓN 3=================*/
.secc2{
    margin-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}
.secc2_titulo{
    color: #A56A42;
}
.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: black;
}
.categoria_item:hover{
    color: #076F3A;
}
.categoria_item-activo{
    color: #076F3A;
}

/*==================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: #CCDB36;
}
.secc3_productos:hover .secc3_texto p{
    color: #474747;
}
.secc3_productos a{
    text-decoration: none;
    color: #474747;
}
.secc3_texto{
    margin-top: -1px;
    border: solid 0.1px #C4C4C4;
    padding: 20px;
}
.secc3_texto h4{
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Limita a 2 líneas */
    line-clamp: 1; /* Propiedad estándar */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.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: #CCDB36;
}
.img-producto::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}

.secc3-descripcion{
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limita a 2 líneas */
    line-clamp: 2; /* Propiedad estándar */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*==================RESPONSIVE=================*/
@media (min-width: 320px){
    .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: 768px){
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
@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 (max-width: 1200px){
    .secc1-bg{
        height: unset;
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .secc3{
        padding: 0;
    }
    .secc2{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (max-width: 768px){
    .secc1-bg{
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}