/* M8. Vozes (Testimonials) */

/* ============================================================
   M8. VOZES (testimonials cinematográficos)
   ============================================================ */
.vozes {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 8vw, 100px);
  background: var(--brn-dark);
  overflow: hidden;
}
.vozes::before {
  content: '\201C';
  position: absolute;
  top: 10%;
  left: 8%;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(10rem, 20vw, 20rem);
  color: rgba(91,155,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.vozes-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vozes-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  pointer-events: none;
}
.vozes-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.vozes-text {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.vozes-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.vozes-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.vozes-dots {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}
.vozes-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.vozes-dot.active {
  opacity: 1;
  background: var(--brn-blue-accent);
  transform: scale(1.3);
}
