.intensivo-pro {
  padding: 140px 8%;
  background: linear-gradient(180deg, #0b0618 0%, #140a2b 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Container GRID profissional */
.intensivo-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGEM */

.img-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(147, 51, 234, 0.35);
  transition: 0.6s ease;
}

.img-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
}

.img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,43,0.6), transparent 60%);
}

/* TEXTO */

.tag-intensivo {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b889ff;
  font-weight: 600;
}

.intensivo-content h2 {
  font-size: 42px;
  margin: 20px 0 30px 0;
}

.intensivo-content h2 span {
  color: #a855f7;
}

/* SCROLL TEXTO */

.texto-scroll {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 30px;
}

.texto-scroll p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #d4d4d8;
  text-align: justify;
}

.texto-scroll::-webkit-scrollbar {
  width: 6px;
}

.texto-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(#a855f7, #ec4899);
  border-radius: 20px;
}

/* DIFERENCIAIS */

.diferenciais-pro {
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.diferenciais-pro div {
  margin-bottom: 12px;
  font-weight: 500;
}

/* FRASE FINAL */

.frase-impacto {
  font-weight: 600;
  color: #e9d5ff;
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .intensivo-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .img-wrapper img {
    height: 380px;
  }

  .texto-scroll {
    max-height: 220px;
  }
}

/* REVEAL */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 1.1s cubic-bezier(.2,.8,.2,1);
}

.reveal {
  transform: translateY(60px);
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}