/* SECTION BASE */
.destaque-aprovado {
  position: relative;
  padding: 120px 8%;
  background: radial-gradient(circle at 20% 40%, rgba(140, 82, 255, 0.15), transparent 60%),
              #050510;
  overflow: hidden;
}

/* Glow decorativo */
.destaque-aprovado::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
  top: -150px;
  left: -150px;
  filter: blur(80px);
  z-index: 0;
}

.destaque-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: auto;
}

/* FOTO */
.destaque-foto {
  flex: 1;
}

.foto-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: perspective(1000px) rotateY(-6deg);
  transition: 0.6s ease;
}

.foto-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

.foto-wrapper img {
  width: 100%;
  display: block;
}

.foto-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

/* Nome */
.nome-guerra {
  margin-top: 20px;
}

.nome-guerra h3 {
  font-size: 26px;
  color: #fff;
}

.nome-guerra span {
  color: #c084fc;
  font-size: 14px;
}

/* CONTEÚDO */
.destaque-conteudo {
  flex: 1;
}

.tag-destaque {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 20px;
}

.destaque-conteudo h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.depoimento-texto {
  font-size: 18px;
  line-height: 1.8;
  color: #d4d4d8;
  margin-bottom: 40px;
}

/* BOTÃO ALCATEIA PREMIUM */
.btn-destaque {
  display: inline-block;
  padding: 18px 42px;
  border-radius: 60px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.5s ease;
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.btn-destaque:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.6);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .destaque-container {
    flex-direction: column;
    text-align: center;
  }

  .foto-wrapper {
    transform: none;
  }

  .destaque-conteudo h2 {
    font-size: 32px;
  }
}

.reveal-destaque {
  opacity: 0;
  transform: translateY(80px);
  transition: 1.2s cubic-bezier(.2,.8,.2,1);
}

.reveal-destaque.active {
  opacity: 1;
  transform: translateY(0);
}