.about--founder-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-evenly;

  transform: translateY(200px);
  opacity: 0;
  animation: showUpFounders both;
  animation-timeline: view(50% 20%);
}

@keyframes showUpFounders {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.about--founder {
  border-radius: 15px;
  width: 400px;
  height: auto;
  perspective: 1000px;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  padding: 10px;
  transition: transform 1s linear;
  cursor: pointer;
}
.about--rotate-founder {
  transform: rotate3d(0, 1, 0, 180deg);
}
.about--unRotate-founder {
  transform: rotate3d(0, 1, 0, 0deg);
}

.about--founder-subtittles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backface-visibility: hidden;
}

.about--founder-subtittle {
  font-size: 16px;
  text-align: center;
  font-family: 'custom-bold';
  color: var(--azul-intenso);
}

.about--profile-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  position: relative;
  backface-visibility: hidden;
  /* transform: translateZ(20px); */
}
.about--profile-img-container::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backdrop-filter: grayscale(90%);
}

.about--profile-img {
  width: 370px;
  height: 600px;
  border-radius: 10px;
  backface-visibility: hidden;
  object-fit: cover;
}

.about--founder-name {
  font-size: 32px;
  /* transform: translateZ(30px); */
  backface-visibility: hidden;
}

.about--founder-description {
  transform: rotateY(180deg) /* translateZ(20px) */;
  backface-visibility: hidden;
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.about--founder-description h3 {
  font-size: 24px;
  text-align: center;
}

.about--linkedin-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about--linkedin-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about--linkedin {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
.about--linkedin:hover {
  transform: scale(1.1);
}
.about--linkedin-anchor::after {
  touch-action: none;
  position: absolute;
  content: "";
  top: 16px;
  left: calc(50% + 32px);
  width: calc(50% - 32px);
  height: 2px;
  background-color: var(--azul-intenso);
}
.about--linkedin-anchor::before {
  touch-action: none;
  position: absolute;
  content: "";
  top: 16px;
  right: calc(50% + 32px);
  width: calc(50% - 32px);
  height: 2px;
  background-color: var(--azul-intenso);
}
