/* Sección Hero */
.about-hero {
  background: linear-gradient(120deg, #00c8ff, #0099ff);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Intro */
.about-intro {
  background-color: #fefefe;
  padding: 3rem 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Valores */
/* Separación visual entre secciones */
.about-values {
  background-color: #f2f8fb;
  padding: 4rem 1rem 6rem 1rem; /* Aumentamos bottom padding */
  text-align: center;
  border-bottom: 2px solid #e0f4ff; /* Línea decorativa opcional */
}

.about-mission {
  background-color: #ffffff;
  padding: 6rem 1rem 4rem 1rem; /* Aumentamos top padding */
  position: relative;
}

.about-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 4px;
  background-color: #00c8ff;
  transform: translateX(-50%);
  border-radius: 10px;
  margin-top: -2rem;
}


.about-values h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00c8ff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.value-box {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box img {
  width: 40px;
  margin-bottom: 1rem;
}

/* Sección Misión */
.about-mission {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  padding: 6rem 2rem;
  overflow: hidden;
}

.mission-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.mission-text {
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.mission-text h2 {
  font-size: 3rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.mission-text h2 span {
  color: #00c8ff; /* Azul Fixesnow vibrante */
}

.mission-text p {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.mission-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transition: transform 0.4s ease;
}

.mission-img img:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .mission-flex {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .mission-text {
    text-align: left;
  }
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Equipo */
.about-team {
  background-color: #ffffff;
  padding: 4rem 1rem;
  font-size: 1.1rem;
}

.about-team h2 {
  color: #00c8ff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}
