.testigos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px;
  font-family: Arial, sans-serif;
  background-color: #fff !important;
}

.testigos__title {
  font-size: 28px;
  margin: 0 0 24px;
  text-align: center;
  letter-spacing: normal !important;
}

.testigos__group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 12px;
  font-size: 18px;
}

.testigos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.verde {
  background: #00a651;
}
.ambar {
  background: #ffb400;
}
.rojo {
  background: #e60023;
}

.testigos__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card/Fila */
.testigo {
  display: grid;
  grid-template-columns: 140px 96px 1fr;
  gap: 16px;
  align-items: center;

  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fafafa;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.testigo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Estado pill */
.testigo__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
}

.testigo__pill.informativo {
  background: rgba(0, 166, 81, 0.1);
  border-color: rgba(0, 166, 81, 0.25);
  color: #007b3c;
}

.testigo__pill.advertencia {
  background: rgba(255, 180, 0, 0.12);
  border-color: rgba(255, 180, 0, 0.3);
  color: #9a6a00;
}

.testigo__pill.peligro {
  background: rgba(230, 0, 35, 0.1);
  border-color: rgba(230, 0, 35, 0.25);
  color: #a40019;
}

.testigo__icon img {
  width: 72px;
  height: auto;
  display: block;
}

/* Texto */
.testigo__name {
  margin: 0;
  font-size: 16px;
  line-height: normal !important;
  letter-spacing: normal !important;
  padding-bottom: 3%;
}

.testigo__desc {
  margin: 0 !important;
  letter-spacing: normal !important;
  line-height: initia !important;
  padding-top: 3%;
  font-size: 14px;
  color: #4f4f4f;
}
.testigo__content p {
  margin: 0 !important;
  letter-spacing: normal !important;
  line-height: initia !important;
  padding-top: 3%;
  font-size: 14px;
  color: #4f4f4f;
}

/* Responsive */
@media (max-width: 768px) {
  .testigo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testigo__icon {
    display: flex;
    justify-content: center;
  }

  .testigo__estado {
    display: flex;
    justify-content: center;
  }
}
