/* Sección Quiénes Somos */
.about-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  position: relative;
}

.about-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-text {
  flex: 2;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature h4 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}

/* Recuadro de Ubicación */
.location-box {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
  position: sticky;
  top: 20px;
}

.location-box h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.location-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.location-info i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}
