.hero-pro {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #020b14;
  font-family: 'Montserrat', sans-serif;
}

.hero-pro-slider,
.hero-pro-slide {
  width: 100%;
  height: 100%;
}

.hero-pro-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1s ease, visibility 1s ease, transform 7s ease;
}

.hero-pro-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 20, 30, .94) 0%, rgba(0, 45, 95, .70) 30%, rgba(0, 0, 0, .28) 42%, rgba(50, 50, 0, .12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42));
  pointer-events: none;
}

.hero-pro-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-pro-content {
  position: relative;
  z-index: 5;
  max-width: 690px;
  padding: 62px 0 0 78px;
  color: #fff;
}

.hero-pro-content h1 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 70px);
  line-height: .98;
  font-weight: 757;
  letter-spacing: -1.8px;
  text-transform: uppercase;
  text-shadow: 0 8px 25px rgba(0,0,0,.48);
  opacity: 0;
  transform: translateY(28px);
}

.hero-pro-content h1 span {
  color: #168cff;
}

.hero-pro-content b {
  display: block;
  width: 285px;
  height: 4px;
  margin: 22px 0 22px;
  background: linear-gradient(90deg, #168cff, #0c60c7);
  border-radius: 20px;
  box-shadow: 0 0 18px rgba(22,140,255,.55);
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: left;
}

.hero-pro-content p {
  margin: 0;
  font-size: clamp(23px, 1.8vw, 23px);
  line-height: 1.25;
  font-weight: 800;
  text-shadow: 0 5px 18px rgba(0, 20, 48, .94);
  opacity: 0;
  transform: translateY(20px);
}

.hero-pro-benefits {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: nowrap;
  max-width: 650px;
  opacity: 0;
  transform: translateY(22px);
  overflow: visible;
}

.hero-pro-benefits div {
  width: 128px;
  height: 78px;
  border: 1px solid rgba(255,255,255,.40);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  transition: .35s ease;
}

.hero-pro-benefits div:hover {
  transform: translateY(-5px);
  border-color: #168cff;
  box-shadow: 0 12px 28px rgba(0,60,130,.35);
}

.hero-pro-benefits i {
  font-size: 26px;
  color: #fefefe;
}

.hero-pro-benefits small {
  display: block;
  font-size: 11px;
  font-weight: 757;
  color: #ffffff;
  margin-top: 5px;
  line-height: 1.1;
}

.hero-pro-slide.is-active .hero-pro-content h1 {
  animation: heroTextUp .8s ease forwards .15s;
}

.hero-pro-slide.is-active .hero-pro-content b {
  animation: heroLine .8s ease forwards .35s;
}

.hero-pro-slide.is-active .hero-pro-content p {
  animation: heroTextUp .8s ease forwards .50s;
}

.hero-pro-slide.is-active .hero-pro-benefits {
  animation: heroTextUp .8s ease forwards .70s;
}

@keyframes heroTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-pro-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 50px;
  height: 72px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 70px;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 4px 20px rgba(0,0,0,.8);
  transition: .25s ease;
}

.hero-pro-arrow:hover {
  color: #168cff;
  transform: translateY(-50%) scale(1.12);
}

.hero-pro-prev {
  left: 18px;
}

.hero-pro-next {
  right: 22px;
}

.hero-pro-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.hero-pro-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.80);
  cursor: pointer;
  transition: .25s ease;
}

.hero-pro-dots button.is-active {
  background: #168cff;
  transform: scale(1.28);
  box-shadow: 0 0 0 5px rgba(22,140,255,.20);
}

/* TABLET */
@media (max-width: 1024px) {
  .hero-pro {
    height: 520px;
  }

  .hero-pro-content {
    padding: 58px 36px 0 52px;
    max-width: 620px;
  }

  .hero-pro-content h1 {
    font-size: clamp(38px, 5vw, 58px);
  }

  .hero-pro-benefits {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-pro-benefits div {
    width: 118px;
    height: 76px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .hero-pro {
    height: 610px;
  }

  .hero-pro-slide {
    background-position: center;
  }

  .hero-pro-slide::after {
    background:
      linear-gradient(90deg, rgba(0, 18, 45, .96) 0%, rgba(0, 36, 85, .78) 52%, rgba(0,0,0,.28) 100%),
      linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.42));
  }

  .hero-pro-content {
    padding: 48px 24px 0;
    max-width: 100%;
  }

  .hero-pro-content h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero-pro-content b {
    width: 210px;
    margin: 20px 0 18px;
  }

  .hero-pro-content p {
    font-size: 17px;
  }

  .hero-pro-benefits {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-pro-benefits div {
    width: 100%;
    height: 74px;
  }

  .hero-pro-benefits i {
    font-size: 23px;
  }

  .hero-pro-benefits small {
    font-size: 8.5px;
  }

  .hero-pro-arrow {
    font-size: 52px;
  }

  .hero-pro-prev {
    left: 4px;
  }

  .hero-pro-next {
    right: 4px;
  }

  .hero-pro-dots {
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .hero-pro {
    height: 590px;
  }

  .hero-pro-content {
    padding-top: 42px;
  }

  .hero-pro-content h1 {
    font-size: 34px;
  }

  .hero-pro-content p {
    font-size: 15.5px;
  }
}