.elementor-4137 .elementor-element.elementor-element-8fb66ff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-78b988b */.categoria {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
   padding-top: 60px;
}

/* Breadcrumb */
.categoria .breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
}

.categoria .breadcrumb a {
  color: #1e3a8a;
  text-decoration: none;
}

/* TÍTULO */
.categoria h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  color: #00528a;
}

/* Línea decorativa */
.categoria h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00528a;
  margin-top: 8px;
  border-radius: 2px;
}

/* DESCRIPCIÓN */
.categoria .descripcion {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-top: 15px;
  margin-bottom: 35px;
}

/* TEXTO DESTACADO */
.categoria .descripcion strong {
  color: #1e3a8a;
  font-weight: 600;
}

/* GRID */
.categoria .catalogos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, max-content)); /* ancho fijo para cada card */
  gap: 25px;
  justify-content: center; /* centra las cards reales */
  margin: 0 auto; /* centra el grid dentro del contenedor */
}

/* CARD */

.catalogo-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
}

.categoria .catalogo-card {
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.categoria .catalogo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}


/* IMAGEN */
.catalogo-card img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* TÍTULO CARD */
.categoria .catalogo-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* BOTONES CONTENEDOR */
.categoria .catalogo-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BOTONES (ENCAPSULADO 🔥) */
.categoria .btn {
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  background: #00528a;
  transition: all 0.25s ease;
}

/* BOTÓN PDF */
.categoria .btn-pdf {
  background: #2e7d32;
}

/* HOVER MODERNO */
.categoria .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* CLICK */
.categoria .btn:active {
  transform: translateY(10px);
}/* End custom CSS */