/* Quiénes Somos Section */
.quienes-somos {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #f97316);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.quienes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 3rem;
  text-align: justify;
}

.valores-grid {
  display: grid;
  gap: 2rem;
}

.valor-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.valor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.valor-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: scale(1.1);
}

.valor-icon i {
  font-size: 1.5rem;
  color: white;
}

.valor-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.valor-item p {
  color: #64748b;
  line-height: 1.6;
}

.quienes-image {
  position: relative;
}

.quienes-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quienes-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.quienes-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .quienes-somos {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .quienes-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quienes-image {
    order: -1;
  }

  .valores-grid {
    gap: 1.5rem;
  }

  .valor-item {
    padding: 1.5rem;
  }

  .intro-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .valor-item {
    padding: 1.2rem;
  }

  .valor-icon {
    width: 50px;
    height: 50px;
  }

  .valor-icon i {
    font-size: 1.2rem;
  }
}
