.sobre-main {
  min-height: 100vh;
  width: 100%;
  padding: 0 16px;
  padding-top: calc(10vh + 40px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.planta {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.planta > img {
  height: 85%;
  width: auto;
  max-height: 85%;
  display: block;
}

.sobre-container {
  width: min(900px, 100%);
  background: var(--cor-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.tituloSobreMim {
  font-family: var(--fonte-primaria);
  font-size: clamp(22px, 2vw, 34px);
  text-align: center;
  margin-bottom: 16px;
  color: var(--cor-secundaria);
}

.textoParagrafoSobreMim {
  font-family: var(--fonte-secundaria);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(30, 31, 30, 0.92);
  text-align: left;
}

.textoParagrafoSobreMim > span {
  /* text-align: center; */
}

.textoParagrafoSobreMim > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cor-terciaria);
  padding: 8px 12px;
  border-radius: 12px;
}

.iconesDiv {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.divWpp,
.divGit,
.divLinkedin {
  border: 2px solid rgba(118, 132, 115, 0.3);
  background: rgba(118, 132, 115, 0.08);
  border-radius: 50%;
  transition: 0.2s;
}

.divWpp:hover,
.divGit:hover,
.divLinkedin:hover {
  background: rgba(118, 132, 115, 0.16);
  transform: translateY(-2px);
}

.iconesDiv img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  margin: 12px;
}

/* TABLET */
@media only screen and (max-width: 991px) {
  .planta > img {
    height: 75%;
    width: auto;
    max-height: 75%;
    display: block;
  }
}

/* MOBILE */
@media only screen and (max-width: 767px) {
  .sobre-main {
    padding-top: 120px;
    margin-bottom: 20px;
  }

  .planta > img {
    height: 35%;
    width: auto;
    max-height: 35%;
    display: block;
  }

  .textoParagrafoSobreMim {
    text-align: left;
  }
}
