/*=============== HOME ===============*/
section.home {
  height: auto;
}
.home__container {
  row-gap: 2rem;
  padding-top: 1rem;
}
/*.home__img{
  width: 220px;
  justify-self: center;
  mask-image: linear-gradient(to bottom,
  hsla(var(--hue),40%, 16%)60%,
  transparent 100%);
}*/
.home__img {
  width: 220px;
  border-radius: 50px;
  justify-self: center;
  mask-image: linear-gradient(to bottom, #222327 60%, transparent 100%);
}
.home__name {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  word-break: break-word;
  margin-bottom: 1rem;
}
.home__profession {
  position: relative;
  font-size: var(--big-font-size);
  color: var(--text-color);
}

/*Traçado embaixo da profissao*/
.home__profession::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 25%;
  height: 3px;
  background-color: var(--first-color-light);
}

.home__scroll {
  color: var(--title-color);
  display: inline-flex;
  column-gap: 0.5rem;
  align-items: center;
  justify-self: center;
  margin-top: 3rem;
  transition: color 0.4s;
}
.home__scroll::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 15%;
  height: 2px;
  background-color: var(--first-color-light);
  transition: width 0.3s;
}
.home__scroll:hover {
  color: var(--first-color-light);
}

.home__scroll:hover::after {
  width: 100%;
}

.home__scroll-text {
  font-weight: var(--font-semi-bold);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 2rem;
  transition: background-color 0.4s;
  border-radius: 5px;
}

.button:hover {
  background-color: var(--first-color-alt);
}
