p {
  margin-bottom: 0;
}
/*==================SECCIÓN 1=================*/
.secc1-bg {
  background-image: url("../img/Catalogo/banner.jpg");
  background-position: center;
  background-size: cover;
  height: 593px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.secc1_marca_agua {
  max-width: 300px;
  opacity: 0.6;
}
.secc1_flecha {
  position: absolute;
  bottom: 0;
}
.productos {
  justify-content: center;
}
.btncategoria {
  background-color: transparent;
  border: solid black 1px;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  transition: all 0.1s ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
}
.categoria-activada {
  border: solid 1px #950606;
  background-color: #852c2c;
}
/*==================SECCIÓN 2=================*/
.secc2 {
  max-width: 1440px;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
}

/*--------------*/
.productos-div {
  display: flex;
  gap: 2rem;
}
.catagoria-div {
  width: 250px;
}
.accordion {
  width: 250px;
}
.accordion-item {
  border: none;
}
.mostrar-categorias {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1rem 0;
}
.accordion-button {
  padding-left: 0;
}
.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #950606;
  background-color: white;
}
.categorias {
  display: flex;
  gap: 10px;
  align-items: center;
}
/*==================SECCIÓN 3=================*/
.secc3 {
  width: 100%;
  margin-bottom: 50px;
}
.secc3-div {
  margin-bottom: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20%, 0.25fr));
}
.secc3_productos {
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  margin-bottom: 20px;
  border-radius: 1rem 0 1rem 0;
  box-shadow: 0 0 10px -5px black;
}
.secc3_productos .sub_titulos {
  border-radius: 1rem 1rem 0 0;
  padding-left: 10px;
  text-align: left;
  font-size: 1.2rem;
  color: black;
}
.secc3_productos:hover {
  transform: scale(1.025);
  box-shadow: 0 0 8px 0 black;
}
.secc3_productos:hover .secc3_texto {
  color: white;
}
.secc3_productos a {
  text-decoration: none;
  color: white;
  border-radius: 1rem;
}
.secc3_texto {
  margin-top: -1px;
  text-align: left;
  border: solid 0.1px #ceaf9000;
  padding: 20px 10px;
  position: relative;
  background-color: #950606;
  border-radius: 0 0 1rem 0;
  color: white;
  margin-bottom: 0;
  width: 100%;
}
.titulo_producto {
  margin-bottom: 5px;
  font-size: 0.875rem;
  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;
}
.card-item-add {
  position: absolute;
  bottom: 19px;
  transform: translateY(100%);
  transition: .4s;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  pointer-events: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
}
.card-item-add span {
  width: auto;
  min-width: 150px;
  max-width: 90%;
  padding: 7px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
  pointer-events: auto;
}
.card-item-catalogo:hover .card-item-add {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.secc3-descripcion {
  width: 100%;
  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;
  border-radius: 1rem 0 0 0;
}

.img-producto::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 80%;
}

/*==================SECCIÓN 4=================*/
.secc4 {
  margin-bottom: 5rempx;
}
.page-item:first-child,
.page-item:last-child {
  display: none;
}
.page-link {
  background-color: white;
  color: black;
}
.page-link:hover {
  color: black;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #950606;
  border-color: #0d6dfd00;
}
/*==================RESPONSIVE=================*/
@media (min-width: 320px) {
  .secc1-bg {
    height: 350px;
  }
}
@media (min-width: 550px) {
  .secc1-bg {
    height: 450px;
  }
  /*-----------------*/
}

@media (min-width: 992px) {
  .secc1-bg {
    height: 500px;
  }
  /*-----------------*/
}

@media (min-width: 1440px) {
  .secc1-bg {
    height: 593px;
  }
  /*-----------------*/
}
@media (max-width: 1200px) {
  .secc3-div {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
  .secc2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 992px) {
  .productos-div {
    flex-direction: column;
  }
  .catagoria-div {
    width: 100%;
  }
  .accordion {
    width: 100%;
  }
  .secc3-div {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
}
@media (max-width: 600px) {
  .secc3-div {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .secc3-div {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
