/* ----------- Sección Quienes Somos ------------- */

.nosotros {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.nosotros .info {
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
}

.nosotros .info h2 {
  color: #00ffcc;
  margin-bottom: 10px;
}

.nosotros .info p {
  line-height: 1.6em;
  margin-bottom: 15px;
  text-align: justify;
}

.nosotros .imagen {
  flex: 1;
  text-align: center;
}

.nosotros .imagen img {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,255,204,0.4);
  transition: transform 0.3s ease;
}

.nosotros .imagen img:hover {
  transform: scale(1.05);
}

/* ----------- Misión y Visión ------------- */

.mision-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mision-vision .tarjeta {
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mision-vision .tarjeta:hover {
  transform: translateY(-5px);
  background-color: #0078ff33;
  color: black;
}

.mision-vision h3 {
  color: #00ffcc;
  margin-bottom: 10px;
  text-align: center;
}
