.hero-wrapper {
  position: relative;
  min-height: 100vh;
  padding: 6rem 6rem 4rem;

  background-image: url("../media/images/hero-desktop.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;

  overflow: hidden;

  display: flex;
  align-items: center;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.93) 35%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    rgba(255, 255, 255, 0.1) 100%
  );

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;

  display: flex;
  flex-direction: column;
  gap: 2rem;

  margin-left: 3%;
}

.hero-title {
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--color-green);
}

.about-section {
  display: flex;
  gap: 20px;
}

.about-bar {
  width: 18px;
  background: linear-gradient(
    180deg,
    var(--color-green),
    var(--color-blue-dark)
  );
  border-radius: 10px;
}

.btn-wa {
  color: var(--color-white);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;

  background-color: var(--color-blue-dark);

  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-wa:hover {
  background-color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 56, 98, 0.35);
}

.wa-icon {
  width: 22px;
  height: 22px;
  fill: white;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 90dvh;

    padding: 3rem 1.5rem;
    background-image: url("../media/images/hero-mobile.png");

    background-position: bottom right;
    background-size: cover;
  }

  .hero-wrapper::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.95) 60%,
      rgba(255, 255, 255, 0.9) 75%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }

  .hero-content {
    max-width: 100%;

    margin-left: 0;
    text-align: center;
  }

  .about-section {
    justify-content: center;
  }

  .about-bar {
    width: 25px;
  }

  .about-content p {
    text-align: left;
  }

  .btn-wa {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-wrapper {
    background-position: center center;
    padding: 4rem 3rem;
  }
}
