/* Nosotros */

.nosotros {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros_texto {
  width: 50%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(to bottom, #bccddd, #e2ebf2, #f4f5f7);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.nosotros_logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nosotros_logo h2 {
  font-size: 5rem;
  font-weight: 600;
  font-style: italic;
}

.nosotros_logo h4 {
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  line-height: 0.1rem;
  text-align: center;
}

.nosotros_logo p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}

.nosotros_descripcion {
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin: 0 2rem;
}

.nosotros_descripcion p {
  font-size: 1.2rem;
  font-weight: 500;
}

.nosotros_img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros_img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width: 1000px) {
  .nosotros_logo h2 {
    font-size: 3rem;
  }
  .nosotros_logo h4 {
    font-size: 1.2rem;
  }
  .nosotros_logo p {
    font-size: 0.8rem;
  }
  .nosotros_descripcion p {
    font-size: 1rem;
  }
}
@media (max-width: 800px) {
  .nosotros {
    width: 100%;
  }
  .nosotros_texto {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .nosotros_img img {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}

@media (max-width: 590px) {
  .nosotros_texto {
    width: 100%;
  }
  .nosotros_logo {
    flex-direction: column;
  }
  .nosotros_descripcion {
    max-width: 400px;
  }
  .nosotros_img {
    display: none;
  }
}

/* Equipo */

.equipo {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}

.equipo h2 {
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.equipo_cards {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
}

.equipo_card {
  max-width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.equipo_card_img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.equipo_card_img img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.equipo_card_texto {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.equipo_card_texto h4 {
  font-size: 1rem;
  font-weight: 600;
}

.equipo_card_texto span {
  max-width: 200px;
  font-size: 0.9rem;
  font-weight: 500;
}

.equipo_card_redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.equipo_card_redes a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition: all 0.5s;
}

.equipo_card_redes a:hover {
  scale: 1.2;
}

.equipo_card_redes img {
  object-fit: cover;
  width: 28px;
}

/* @media (max-width: 915px) {
  .equipo_card_img img {
    width: 220px;
    height: 220px;
  }
} */

@media (max-width: 700px) {
  .equipo_cards {
    gap: 4rem;
    flex-direction: column;
  }
}

@media (max-width: 590px) {
  .equipo h2 {
    font-size: 1.8rem;
  }
}

/* Footer */

footer {
  width: 100%;
  background-color: #888;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

footer span {
  color: #fff;
}

footer .logo a {
  color: #fff;
  font-size: 2rem;
}
