/* SECTION BASE */
.destaque-dalla {
  position: relative;
  padding: 140px 8%;
  background:
    radial-gradient(circle at 80% 30%, rgba(168, 85, 247, 0.20), transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(236, 72, 153, 0.15), transparent 60%),
    linear-gradient(135deg, #060612, #0d0d1f, #050510);
  overflow: hidden;
}

/* Glow decorativo */
.destaque-dalla::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
  right: -200px;
  top: -200px;
  filter: blur(100px);
  z-index: 0;
}

.dalla-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: auto;
}

/* CONTEÚDO */
.dalla-conteudo {
  flex: 1;
}

.tag-destaque {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-size: 12px;
  margin-bottom: 20px;
}

.dalla-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: 30px;
}

.nome-guerra h3 {
  font-size: 24px;
  color: #fff;
}

.nome-guerra span {
  color: #ec4899;
  font-size: 14px;
}

/* FOTO */
.dalla-foto {
  flex: 1;
}

.foto-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transition: 0.7s ease;
}

.foto-wrapper:hover {
  transform: scale(1.04);
}

.foto-wrapper img {
  width: 100%;
  display: block;
}

.foto-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(236,72,153,0.5);
}

/* BOTÃO PREMIUM */
.btn-dalla {
  display: inline-block;
  margin-top: 35px;
  padding: 18px 105px;
  border-radius: 60px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.6s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 15px 40px rgba(168,85,247,0.4);
  position: relative;
  overflow: hidden;
}

.btn-dalla:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 25px 60px rgba(236,72,153,0.6);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .dalla-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .dalla-conteudo h2 {
    font-size: 32px;
  }
}


.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 1.2s cubic-bezier(.2,.8,.2,1);
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* depoimento em box para a pessoa conseguir ver todo o depoiemento */
.depoimento-box {
  position: relative;
  max-width: 600px;
  margin-bottom: 35px;
}

.depoimento-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Estilização do texto */
.depoimento-scroll p {
  font-size: 17px;
  line-height: 1.9;
  color: #d4d4d8;
  font-weight: 300;
  text-align: justify;
}

/* Scroll personalizado */
.depoimento-scroll::-webkit-scrollbar {
  width: 6px;
}

.depoimento-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(#a855f7, #ec4899);
  border-radius: 20px;
}

.depoimento-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .depoimento-scroll {
    max-height: 220px;
  }
}

