/*===========SECC 1===========*/
.secc1{
    background-image: url('../img/catalogo/banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 610px;

    margin-top: -115px;
}
.secc1-div{
    height: 100%;
}
.secc1-div-int{

    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.secc1-div-int h1{
    font-weight: bold;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black;
}

/*========SECC 2========*/
.secc2{
    border-top: solid 1px rgba(0, 0, 0, 0.363);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.secc-catalogo{
    margin-top: 80px;
    padding-left: 60px;
    padding-right: 60px;
}
.secc2-productos-categorias{
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    gap: 3vw;
}
.mostrar-categorias{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem 0 ;
}
.categorias{
    display: flex;
    gap: 10px;
    align-items: center;
}
/*-----------*/
.accordion{
    width: 230px;
}
.accordion-item{
    border: none;
}
.accordion-button{
    z-index: 1 ;
    border: none;
    box-shadow: none;
    padding: 1rem 0;
}

.accordion-button:focus{
    border-color: none;
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    color: black;
    background-color: transparent;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after{
    background-image: var(--bs-accordion-btn-icon);
}
/*----------*/
.btncategoria{
    background-color: transparent;
    border: solid black 1px;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    transition: all .10s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    
}
.btncategoria:hover {
    border: solid 1px #9EA815;
}
.categoria-activada {
    border: solid 1px #9EA815;
    background-image: url('../img/catalogo/Group10.png');
}

/*===============*/
.productos-vista{
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
}
.producto-interactuable{
    transition: all 0.2s ease-in-out;
    border-radius: 1rem;
    width: 100%;
}

.producto-titulo, .producto-texto, .producto-precio {
    transition: all 0.2s ease-in-out;
}
.producto-interactuable:hover{
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.212);
}

.productos-vista:hover .producto-titulo{
    color: #FFCC29;
}
.productos-vista:hover .producto-texto{
    background-color: #00522c;
}
.productos-vista:hover .producto-precio{
    font-size: 1.2rem;
}

.productos-div{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
.producto-imagen{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 1rem 1rem 0 0;

    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.producto-imagen::after{
    content: '';
    display: block;
    padding-bottom: 100%;
}
.producto-texto{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #096F59;
    border-radius: 0 0 1rem 1rem;
}
.producto-titulo{
    color: white;
}
.producto-descripción{
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    max-height: 25px;
    color: white;
}
/*-----------*/
.producto-precio{
    color: white;
    width: 100%;
    font-weight: bold;
}
/*---------*/
.catalogo-paginacion{
    display: flex;
    margin-bottom: 120px;
    justify-content: flex-end;
    padding-right: 30px;
}


/*===========RESPONSIVE===========*/
@media(max-width: 1090px){
    .secc1{
        margin-top: -160px;
    }
}

@media(max-width: 1200px){
    .productos-vista{
        width: 45%;
    }
}


@media(max-width: 992px){
    .secc-catalogo{
        padding-left: 20px;
        padding-right: 20px;
    }
    /*-------------*/
    .secc2-productos-categorias{
        flex-direction: column;
        gap: 40px;
    }
    /*--------------*/
    .accordion{
        width: 100%;
    }
}

@media(max-width: 650px){
    .productos-vista{
        width: 100%;
    }
    .catalogo-paginacion{
        padding-right: 0px;
    }
    
}