/* QUIÉNES SOMOS - Estilo general */
.quienes-section {
  background-color: #111;
  color: #eee;
  padding: 4rem 1rem;
  font-family: 'Roboto', sans-serif;
}

.quienes-section .container {
  max-width: 1100px;
  margin: auto;
}

.quienes-header h1 {
  font-size: 2.8rem;
  text-align: center;
  color: #ff3e3e;
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 0.5rem;
}

.quienes-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.quienes-bloque h2 {
  color: yellow;
  font-size: 1.6rem;
  text-shadow: 1px 1px 0 #000;
  margin-bottom: 0.5rem;
}

.quienes-bloque p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #ddd;
  font-size: 1.05rem;
}

.quienes-bloque strong {
  color: #fff;
}

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

  .quienes-header h1 {
    font-size: 2rem;
  }

  .quienes-bloque h2 {
    font-size: 1.3rem;
  }
}


.qs-imagen img {
  width: 100%;
  max-width: 100%;
  border-radius: 1px;
  box-shadow: 0 0 1px rgba(255, 62, 62, 0.3);
}

