/* === Sección 1: Presentación Blanca === */
.nosotros-blanco {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.nosotros-blanco p {
  max-width: 850px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/* === Sección 2: Presentación Turquesa con Imagen y Texto === */
.nosotros-turquesa {
  background: #00bfa6;
  color: white;
  padding: 80px 20px;
}

.nosotros-container {
  max-width: 1200px;
  margin: auto;
}

/* Distribución horizontal del contenido */
.nosotros-turquesa .flex {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Imagen izquierda */
.img-wrapper {
  flex: 1 1 40%;
  text-align: center;
}

.img-wrapper img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Texto a la derecha */
.texto {
  flex: 1 1 60%;
}

.texto h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.texto p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* === Responsive: Colapsa imagen/texto en móviles === */
@media screen and (max-width: 768px) {
  .nosotros-turquesa .flex {
    flex-direction: column;
    text-align: center;
  }

  .texto,
  .img-wrapper {
    flex: 1 1 100%;
  }
}

/* === Sección 3: Nuestro Compromiso === */
.compromiso-section {
  background: linear-gradient(to bottom right, #fff6f6, #e6faff);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.compromiso-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Texto de la sección compromiso */
.compromiso-texto {
  flex: 1 1 550px;
  color: #333;
}

.compromiso-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.compromiso-texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Lista de valores con íconos */
.valores-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valores-lista li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.valores-lista i {
  font-size: 20px;
  color: #aa5ca2;
  background: #f0e6f5;
  padding: 10px;
  border-radius: 10px;
}

.valores-lista strong {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

/* Imagen a la derecha */
.compromiso-imagen {
  flex: 1 1 400px;
  text-align: center;
}

.compromiso-imagen img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive para compromiso */
@media screen and (max-width: 768px) {
  .compromiso-container {
    flex-direction: column-reverse;
  }

  .compromiso-texto {
    text-align: center;
  }

  .valores-lista li {
    justify-content: center;
  }
}
