.section {
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  & h2 {
    margin: 10px 5px;
  }
}

.socios {
  display: flex;
  flex-direction: column;

  & h2 {
    justify-self: center;
  }
}

hr {
  width: 90%;
  height: 4px;
  border-radius: 20px;
  border: none;
  background: var(--t-a40);
  justify-self: center;
  margin-top: 30px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  & h3 {
    margin-bottom: -5px;
  }

  & span {
    color: var(--p-a10);
    font-size: 16px;
    font-weight: 600;
  }

  & p {
    flex: 1;
  }

  & img {
    width: 60%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
  }
}
