.cautivos-section {
  background-color: #fff;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}

.cautivos-section .highlight {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.cautivos-texto p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-align: justify;
  line-height: 1.6;
}

.imagen-estrello {
  float: left;
  width: 220px;
  height: auto;
  margin: 0 1rem 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .imagen-estrello {
    float: none;
    display: block;
    margin: 0 auto 1rem auto;
    width: 100%;
    max-width: 100%;
  }
}

/* La parte de los valores */

.valores-section {
  background-color: #fff;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem;
  text-align: center;
}

.valores-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.valores-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.valor-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.valor-card .icono {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.valor-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.valor-card p {
  font-size: 0.95rem;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .valores-grid {
    flex-direction: column;
    align-items: center;
  }

  .valor-card {
    max-width: 100%;
  }
}