.intensivo-funciona {
  padding: 120px 8%;
  background: linear-gradient(180deg, #0b0618 0%, #150a2f 100%);
  color: #fff;
}

.funciona-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.funciona-texto {
  flex: 1;
}

.funciona-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.funciona-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(147, 51, 234, 0.4);
  transition: 0.6s ease;
}

.funciona-imagem img:hover {
  transform: scale(1.05);
}

.tag-funciona {
  color: #b889ff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.funciona-texto h2 {
  font-size: 40px;
  margin: 20px 0 30px;
}

.funciona-texto h2 span {
  color: #a855f7;
}

.funciona-texto p {
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.9;
}

/* CARDS */

.card-bloco {
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  transition: 0.4s;
}

.card-bloco:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.4);
}

.card-bloco h3 {
  margin-bottom: 15px;
  color: #e9d5ff;
}

.card-bloco ul {
  padding-left: 20px;
}

.card-bloco li {
  margin-bottom: 8px;
}

/* RESPONSIVO */

@media (max-width: 992px) {

  .funciona-wrapper {
    flex-direction: column;
  }

  .funciona-texto {
    text-align: center;
  }

}


.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1.2s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1.2s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
