/* ==========================================================================
   serie-catalogo.css — catálogo de cámaras termográficas portátiles HIKMICRO
   --------------------------------------------------------------------------
   Salió del <style> que vivía dentro de camaras_termograficas_portatiles.php.
   Se extrajo el 2026-08-31 al partir el catálogo en una página por familia:
   hoy lo comparten cinco páginas y mantenerlo por duplicado era insostenible.

     camaras_termograficas_portatiles.php          (M, G y SP)
     camaras_termograficas_mini_hikmicro.php       (Serie Mini)
     camaras_termograficas_pocket_hikmicro.php     (Serie Pocket)
     camaras_termograficas_eco_b_hikmicro.php      (Serie Eco / B / E)

   OJO: .product-card también existe en industria-page.css, con otra estructura
   interna (.product-row / .product-image). NO cargues las dos hojas en la misma
   página: se pisan. Las páginas de esta familia cargan SOLO esta.

   Cambio respecto al original: .note-box ahora se alinea al mismo ancho que
   las rejillas (80 %, centrado). Antes salía de borde a borde de la ventana,
   porque .container no tiene regla en ninguna hoja del sitio y son las propias
   rejillas las que se limitan al 80 %.
   ========================================================================== */

/* Page-specific hero */
.hero-section {
  padding: 0;
  margin-top: 5.75rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Series Section */
.series-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.series-section:nth-child(even) {
  background: #ffffff;
}

.series-header {
  text-align: center;
  margin-bottom: 40px;
}

.series-header h2,
.series-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #5b1c64;
  margin-bottom: 1rem;
}

.series-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid rgba(91, 28, 100, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.15);
  border-color: rgba(91, 28, 100, 0.3);
}

.product-card .card-image {
  width: 100%;
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-card .card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card .card-content {
  padding: 20px;
  text-align: center;
}

.product-card .card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5b1c64;
  margin: 0 0 10px 0;
}

.product-card .card-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.specs-list {
  margin-top: 15px;
  text-align: left;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  color: #555;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item i {
  color: #5b1c64;
  width: 18px;
  text-align: center;
}

.industries {
  margin-top: 15px;
}

.industries h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.industry-tag {
  background: #f5f0f6;
  color: #5b1c64;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Product Grid Flex (for centered last row) */
.product-grid-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.product-grid-flex .product-card {
  width: calc(33.333% - 20px);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .product-grid-flex .product-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .product-grid-flex .product-card {
    width: 100%;
  }
}

/* Specs Table */
.specs-table-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  padding: 30px;
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table thead {
  background: #5b1c64;
}

.specs-table th {
  padding: 15px 12px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #4a1753;
  font-size: 0.85rem;
}

.specs-table th:first-child {
  text-align: left;
  background: #4a1753;
  min-width: 180px;
}

.specs-table td {
  padding: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  vertical-align: middle;
}

.specs-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: #f8f9fa;
  color: #333;
}

.specs-table tbody tr:hover {
  background: #f0f4ff;
}

.specs-table tbody tr:hover td:first-child {
  background: #e8ecf5;
}

/* Image row in table */
.specs-table .image-row td {
  padding: 15px 10px;
  background: #f8f9fa;
  vertical-align: bottom;
}

.specs-table .image-row td:first-child {
  font-weight: 600;
  color: #5b1c64;
  vertical-align: middle;
}

.specs-table .image-row img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.specs-table .image-row:hover td {
  background: #f8f9fa;
}

/* Note box */
.note-box {
  background: #f5f0f6;
  border-left: 4px solid #5b1c64;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 5px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.note-box p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .series-section {
    padding: 40px 0;
  }

  .specs-table-container {
    padding: 15px;
  }

  .specs-table {
    font-size: 0.75rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 8px 6px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.breadcrumb-nav .container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.back-link {
  color: #5b1c64;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-link:hover {
  text-decoration: underline;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #5b1c64;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
}

@media (max-width: 768px) {
  .breadcrumb-nav .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
  

/* --------------------------------------------------------------------------
   Añadido el 2026-08-31, al partir el catálogo en una página por familia.
   -------------------------------------------------------------------------- */

/* Párrafo de entrada de cada página de serie */
.series-intro {
  width: 80%;
  margin: 0 auto 35px auto;
}

.series-intro p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Enlaces cruzados entre las páginas de familia, y tarjetas del hub */
.series-links {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.series-links .series-link {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(91, 28, 100, 0.15);
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  color: #5b1c64;
  font-weight: 600;
  transition: all 0.3s ease;
}

.series-links .series-link:hover {
  border-color: rgba(91, 28, 100, 0.4);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.series-links .series-link span {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .series-intro,
  .series-links {
    width: 90%;
  }

  .series-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .series-links {
    grid-template-columns: 1fr;
  }
}
