/* productos.css */
.productos-catalog {
    margin-top: 30px;
  }

/* sidebar */
.productos-sidebar p {
  color: #606060;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 17.288px; /* 108.05% */
  text-transform: uppercase;

  padding-bottom: 10px;

  border-bottom: 1px solid #000;

  margin-bottom: 10px;
}
.categoria-list {
  list-style: none;
  padding-left: 0;
}
.categoria-item {
  cursor: pointer;
  color: var(--Color, #606060);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 17.288px; /* 96.045% */

  padding: 10px 0;

  border-bottom: 1px solid #000;;
}

.categoria-titulo {
  cursor: pointer;
  color: var(--Color, #606060);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 17.288px; /* 108.05% */
}
.subcategoria-list {
  list-style: none;
  margin-top: 5px;
}
.subcategoria-item {
  color: var(--Color, #606060);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.288px;

  padding: 10px 0;
}

.subcategoria-item:hover,
.subcategoria-item.active{
  color: var(--Azul, #305089);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.288px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.categoria-item.active:after{
	display: none !important;
}


/* Productos */
.producto-item {
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px !important;
  margin-bottom: 15px;
}
.producto-title {
  color: var(--Azul, #305089);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.439px; /* 112.195% */
  margin-bottom: 10px;
}
.producto-details p{
  color: var(--Color, #606060);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.325em; /* 111.111% */
}
.producto-details br{
  height: 5px;
}
.producto-description {
  color: var(--Color, #606060);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  
  margin-bottom: 10px;
}
.producto-description p:last-child {
	margin-bottom: 0 !important;
}
  .producto-pdfs ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }
  .producto-pdfs li {
    margin-bottom: 5px;
  }

  .producto-pdfs li::before {
    content: "\f019"; /* Código Unicode del icono de descarga en FontAwesome */
    font-family: "Font Awesome 6 Pro"; /* Fuente correcta */
    font-weight: 900; /* Asegurar que usa la versión sólida del icono */
    margin-right: 8px; /* Espacio entre el icono y el texto */
    color: #00814A;
  }

  .producto-pdfs a {
    text-decoration: none;
    color: #020203;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: 18%; /* 3.24px */
    text-underline-position: from-font;
  }
  .producto-pdfs a:hover{
    color: #00814A;
  }
  .producto-pdfs a:hover {
    text-decoration: underline;
  }

  .producto-image img{
    height: 280px;
    width: 280px;
	  object-fit: cover;
  }

  /* Estilo para la categoría padre para diferenciarla */
  .categoria-list > li {
    font-weight: bold;
  }

.categoria-item:after{
	content: '\f107';
	font-family: 'Font Awesome 6 Pro';
	float: right;
}

  @media(max-width: 820px){
    .productos-sidebar p{
      border-bottom: 0;
      background-color: #305089;
      padding: 10px 20px;
      text-align: center;
      color: #FFF;
      text-align: center;
      font-family: Poppins;
      font-size: 18px;
      font-style: normal;
      font-weight: 800;
      line-height: 17.288px; /* 96.045% */

      cursor: pointer;
    }

    .producto-image img{
      margin: auto;
      display: block;
      
    }

    .productos-catalog{
      padding-right: 40px;
      padding-left: 40px;
    }
  }

@media(max-width: 900px){
	.productos-catalog .col-md-3{
		width: 100% !important;
	}
	.productos-catalog .col-md-9{
		width: 100% !important;
	}
	
	.productos-sidebar{
		margin-bottom: 20px
	}
}


.producto-description .desc-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.producto-description .desc-item strong {
  min-width: 160px;
  font-weight: bold;
}

.producto-description .desc-item span {
  flex: 1;
}

@media(max-width: 650px){
	.producto-image img {
		width: 100%;
		margin-bottom: 24px !important;
	}
}



  