/* ─── SEÇÃO DE PROVAS SOCIAIS ─── */
.social-proof-bg {
  background: var(--bg-deep);
  padding-bottom: 100px;
}

.proof-row-label {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 80px;
  margin-bottom: 32px;
  justify-content: center;
  text-align: center;
  display: flex;
  align-items: center;
}

/* ─── CARROSSEL INFINITO ─── */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0 16px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.carousel-track--videos {
  animation: carousel-scroll 30s linear infinite;
}

.carousel-track--wa {
  animation: carousel-scroll 36s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── VÍDEOS ─── */
.video-placeholder {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  aspect-ratio: 9 / 16;
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--white-dim);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.video-placeholder:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: scale(1.03);
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px,
    transparent 1px, transparent 8px
  );
}

.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.25);
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

/* ─── WHATSAPP ─── */
.whatsapp-placeholder {
  background: #0b1f12;
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.whatsapp-placeholder:hover {
  border-color: rgba(37, 211, 102, 0.4);
  transform: scale(1.02);
}
.whatsapp-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(37, 211, 102, 0.015) 0px, rgba(37, 211, 102, 0.015) 1px,
    transparent 1px, transparent 8px
  );
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.wa-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
}

.wa-msg {
  background: rgba(37, 211, 102, 0.09);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.wa-msg-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
