.section-padded {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#quienes-somos h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

#quienes-somos h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.2rem;
}

.about-image {
  flex: 1;
  min-width: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about-block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-block.reverse {
    flex-direction: column;
  }
  
  .about-content, .about-image {
    min-width: 100%;
  }
  
  .about-content h3 {
    text-align: center;
  }
  
  .about-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section-padded {
    padding: 3rem 1.5rem;
  }
  
  #quienes-somos h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-block {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .about-content h3 {
    font-size: 1.5rem;
  }
  
  .about-image {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-padded {
    padding: 2rem 1rem;
  }
  
  #quienes-somos h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
}