/* Estilos para la sección de Diseño Humano - Tema Oscuro */

.hd-bodygraph-section {
  margin: 30px 0;
  padding: 20px;
  background: transparent;
  border-radius: 8px;
  border-left: 4px solid #cc9e75;
  color: #f9fafb;
}

.hd-section-title {
  color: #cc9e75;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #cc9e75;
  padding-bottom: 10px;
}

.hd-main-info {
  margin-bottom: 25px;
}

.hd-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.hd-info-item {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  background: rgba(55, 65, 81, 0.5);
  border: 1px solid #4b5563;
  border-radius: 8px;
  margin: 5px;
  color: #f9fafb;
  backdrop-filter: blur(10px);
}

.hd-info-item strong {
  color: #cc9e75;
  font-weight: 600;
}

.hd-variables {
  margin-bottom: 25px;
}

.hd-variables h4 {
  color: #cc9e75;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.hd-centers {
  margin-bottom: 25px;
}

.hd-centers h4 {
  color: #cc9e75;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.hd-defined-centers {
  background: rgba(55, 65, 81, 0.5);
  border: 1px solid #4b5563;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: #f9fafb;
  backdrop-filter: blur(10px);
}

.hd-bodygraph-svg {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: rgba(55, 65, 81, 0.3);
  border: 1px solid #4b5563;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hd-bodygraph-svg svg {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

/* Estilos específicos para el SVG del bodygraph */
.hd-bodygraph-svg svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Asegurar que los elementos del SVG sean visibles */
.hd-bodygraph-svg svg path,
.hd-bodygraph-svg svg polygon,
.hd-bodygraph-svg svg polyline {
  stroke-width: 1;
  stroke: #333;
}

/* Estilos para los gradientes y colores del bodygraph */
.hd-bodygraph-svg svg .gate-activated {
  fill: #a44344 !important;
  stroke: #333 !important;
  stroke-width: 1 !important;
}

.hd-bodygraph-svg svg .gate-text-bg {
  fill: #efefef !important;
}

.hd-bodygraph-svg svg .gate-text {
  fill: #343434 !important;
  font-family: Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: bold !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hd-info-row {
    flex-direction: column;
  }

  .hd-info-item {
    min-width: auto;
    margin: 5px 0;
  }

  .hd-bodygraph-section {
    padding: 15px;
    margin: 20px 0;
  }

  .hd-section-title {
    font-size: 20px;
  }

  .hd-bodygraph-svg svg {
    max-width: 100%;
    width: 100%;
  }
}
