.about-hero {
  margin-top: 100px;
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(
    135deg,
    var(--alabastro-calido) 0%,
    var(--blanco) 100%
  );
  display: flex;
  flex-direction: column;
  place-items: center;
}

.about-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--siena-tostado);
}

.about-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.2rem;
  margin-top: 20px;
}

.about-primary div:first-child {
  position: relative;
  order: 2;
}

.about-primary img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(160, 82, 45, 0.1);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about-primary div:first-child::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 200px;
  border: 2px solid var(--siena-tostado);
  border-radius: 20px;
  bottom: -20px;
  left: -15px;
  z-index: 1;
  background: transparent;
}

.about-primary div:nth-child(2) {
  max-width: 100%;
  text-align: center;
}

.about-primary span {
  font-size: 2.2rem;
  font-family: var(--font-display);
  color: var(--vara-de-oro);
  font-weight: 700;
}

.about-primary h2 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: var(--font-primary);
}

.divider {
  width: 50%;
  height: 2px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: var(--siena-tostado);
}

.mission-impact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-2xl) var(--spacing-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.mission-impact-card {
  padding: var(--spacing-xl);
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-radius: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mission-impact-card:hover {
  transform: translateY(-8px);
  transition: all 0.4s ease-in-out;
  box-shadow: 0 20px 40px rgba(160, 82, 45, 0.15),
    0 4px 12px rgba(160, 82, 45, 0.1);
}

.mission-card {
  background: var(--verde-salvia);
  color: var(--blanco);
}

.impact-card {
  background: linear-gradient(105deg, var(--alabastro-calido), var(--blanco));
  color: var(--verde-salvia);
  border: 2px solid var(--verde-salvia);
}

.mission-impact-card h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.mission-impact-card p {
  font-family: var(--font-primary);
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  line-height: 1.6;
}

.mission-impact-card ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: var(--spacing-sm);
}

.mission-impact-card ul li {
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.mission-impact-card ul p {
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-primary);
}

.card-stats {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-shrink: 0;
  min-height: 32px;
  align-items: center;
  width: 100%;
  margin-top: auto;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--verde-salvia);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gris-medio);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.card-highlight {
  background: linear-gradient(135deg, var(--verde-salvia), var(--vara-de-oro));
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.card-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 169, 107, 0.4);
}

.card-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.card-highlight:hover::before {
  left: 100%;
}

.highlight-text {
  color: var(--blanco);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* Que nos hace diferentes? section */
.about-secondary {
  padding: var(--spacing-md);
  border-top: 2px solid var(--siena-tostado);
  border-bottom: 2px solid var(--siena-tostado);
  margin-bottom: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.about-secondary-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  place-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-secondary-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-secondary-content p {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.about-secondary-content li span {
  font-weight: 700;
  font-size: 1rem;
}

/* Team Section */
.team-section {
  padding: var(--spacing-2xl) var(--spacing-sm);
}

.team-title {
  text-align: center;
  margin-bottom: 3rem;
}

.team-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--siena-tostado);
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.team-title p {
  max-width: 768px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--gris-medio);
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.team-card-image {
  width: 100%;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  min-height: 300px;
}

.team-card-content {
  padding: 2rem;
  border-radius: 32px;
  width: 100%;
}

.team-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.team-card .position {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem 0;
}

.team-card p.description {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
}

.team-card-content.orange {
  background: linear-gradient(
    135deg,
    var(--alabastro-calido) 0%,
    var(--blanco) 100%
  );
  border: 2px solid var(--siena-tostado);
}

.team-card-content.blue {
  background-color: var(--verde-salvia);
}

.team-card-content.orange h3,
.team-card-content.orange .position,
.team-card-content.orange p.description {
  color: var(--siena-tostado);
}

.team-card-content.blue h3,
.team-card-content.blue .position,
.team-card-content.blue p.description {
  color: var(--blanco);
}

/* Media Queries */
@media (min-width: 768px) {
  .about-hero {
    padding: 4rem 2rem;
  }

  .about-primary {
    gap: 1.8rem;
    padding: 1.5rem;
    margin-top: 25px;
  }

  .about-primary img {
    width: 400px;
    border-radius: 30px;
  }

  .about-primary div:first-child::after {
    width: 350px;
    height: 300px;
    border: 3px solid var(--siena-tostado);
    border-radius: 30px;
    bottom: -25px;
    left: -20px;
  }

  .about-primary div:nth-child(2) {
    max-width: 600px;
  }

  .about-primary span {
    font-size: 2.2rem;
  }

  .about-primary h2 {
    font-size: 1.1rem;
  }

  .about-primary-content {
    flex: 1;
    text-align: left;
  }

  .about-secondary-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    place-items: center;
  }

  .team-section {
    padding: var(--spacing-sm) var(--spacing-2xl);
    padding-bottom: 80px;
  }

  .team-title h2 {
    font-size: 5rem;
  }

  .team-card {
    flex-direction: row;
  }

  .team-card.reverse {
    flex-direction: row-reverse;
  }

  .team-card-image {
    width: 40%;
  }

  .team-card-content {
    width: 60%;
  }

  @media (min-width: 1024px) {
    .about-hero h1 {
      font-size: 2.5rem;
    }

    .about-primary {
      flex-direction: row;
      gap: 2rem;
      padding: 2rem;
      margin-top: 30px;
    }

    .about-primary div:first-child {
      order: 0;
    }

    .about-primary div:nth-child(2) {
      order: 0;
    }

    .about-primary img {
      max-width: 500px;
      width: auto;
      border-radius: 40px;
    }

    .about-primary div:first-child::after {
      width: 450px;
      height: 400px;
      border-radius: 40px;
      bottom: -35px;
      left: -30px;
    }

    .about-primary div:nth-child(2) {
      max-width: 700px;
      text-align: left;
    }

    .about-primary span {
      font-size: 2.5rem;
    }

    .about-primary h2 {
      font-size: 1.2rem;
      line-height: 1.5;
    }

    .mission-impact-section {
      flex-direction: row;
      gap: 3rem;
      align-items: stretch;
    }

    .mission-impact-card {
      flex: 1;
      padding: 3rem 2rem;
    }

    .about-secondary-content {
      grid-template-columns: 1fr 1fr 1fr;
      gap: var(--spacing-xl);
    }
  }

  @media (min-width: 1200px) {
    .mission-impact-section {
      gap: 4rem;
    }

    .team-cards {
      gap: 3rem;
    }
  }
}
