.intro .container{
  margin: 0 auto;
  border-radius: 20px;
  height: 600px !important;
  background-color: #f2f2f2;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 48px auto 0 auto !important;
}

.intro-content{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem;
}

.intro h2{
  font-weight: 700;
  font-size: 34px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #17171C;
  margin-bottom: 1rem;
}

h3.upper-title {
    color: #17171c !important;
    font-size: 13px;
    font-weight: 500;
}

.intro p{
  font-weight: 400;
  font-size: 1rem;
  line-height: 180%;

  color: #27272A;
}

.video-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0px 8px 8px 0px;
}

.video-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Botão centralizado */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 90px;
  height: 90px;

  background: #f15e5e;
  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Ícone play */
.play-btn::before {
  content: '';
  border-left: 28px solid white;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

/* Hover bonito */
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s;
}

@media (min-width: 1201px) and (max-width: 1550px) {
  .intro .container {
    height: 570px !important;
  }

  .intro h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 1201px) {
  .intro .container {
    height: 480px !important;
  }

  .intro h2 {
    font-size: 22 !important;
  }

  .intro p, 
  .intro li {
    font-size: 14px;
  }
}

@media screen and (max-width: 993px) {
  .intro .container {
    height: max-content !important;
    margin: 0 auto 48px auto !important;
  }

  .intro p,
  .intro li {
    font-size: 16px;
  }

  .video-box picture {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .video-box {
    border-radius: 0px 0px 8px 8px;
  }
}
@media screen and (max-width: 769px) {
  .intro h2 {
    font-size: 22px !important;
  }
}

@media screen and (max-width: 577px) {
  .intro-content {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 992px) {
  #modalStepsAltVideo video {
    width: 100%;
    height: min(450px, calc(100vh - 140px));
    object-fit: contain;
    background: #000;
  }
}

@media (max-width: 991px) {
  #modalStepsAltVideo video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
  }
}