/**
 * depoimentos.css — Página de Depoimentos em Vídeo
 * Caue Possatto — Métodos Bioenergéticos
 * Classes prefixadas: .depo-*
 */

/* ═══════════════════════════════════════════════════════════
   HERO — aviso ético
═══════════════════════════════════════════════════════════ */
.depo-hero__etica {
  margin-top: 18px;
  font-family: var(--font-corpo);
  font-size: 0.72rem;
  color: var(--off-white);
  opacity: 0.42;
  max-width: 540px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   INTRO
═══════════════════════════════════════════════════════════ */
.depo-intro {
  background: var(--verde-profundo);
  padding: var(--sec-pad-v) var(--sec-pad-h);
  text-align: center;
}
.depo-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 20px;
  line-height: 1.25;
}
.depo-intro p {
  font-family: var(--font-corpo);
  font-size: 1rem;
  color: var(--off-white);
  opacity: 0.70;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   GRID SECTION
═══════════════════════════════════════════════════════════ */
.depo-grid-section {
  background: #080F0B;
  padding: var(--sec-pad-v) var(--sec-pad-h);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   CARD
═══════════════════════════════════════════════════════════ */
.depo-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO WRAPPER
═══════════════════════════════════════════════════════════ */
.depo-video {
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: #0A0515;
  transition: border-color 0.3s ease;
}
.depo-video--vertical { aspect-ratio: 9 / 16; }

.depo-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.depo-video--playing {
  border-color: rgba(201, 168, 76, 0.42);
}

/* ═══════════════════════════════════════════════════════════
   TRIGGER BUTTON (cobre todo o poster)
═══════════════════════════════════════════════════════════ */
.depo-video__trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.depo-video__trigger:focus-visible {
  outline: 2px solid var(--dourado);
  outline-offset: -2px;
}

/* ═══════════════════════════════════════════════════════════
   POSTER
═══════════════════════════════════════════════════════════ */
.depo-video__poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  /* Fallback: gradiente quando não há foto */
  background-color: #1A0C38;
  background-image: linear-gradient(160deg, var(--roxo) 0%, #1A0C38 45%, var(--verde-profundo) 100%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: background-size 0.45s ease;
}
.depo-video__trigger:hover .depo-video__poster {
  background-size: 104%;
}

/* Overlay escuro para legibilidade do play sobre a foto */
.depo-video__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  transition: background 0.3s ease;
  pointer-events: none;
}
.depo-video__trigger:hover .depo-video__poster::before {
  background: rgba(0, 0, 0, 0.18);
}

/* ═══════════════════════════════════════════════════════════
   BOTÃO PLAY
═══════════════════════════════════════════════════════════ */
.depo-video__play {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.16);
  border: 1.5px solid rgba(201, 168, 76, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.depo-video__trigger:hover .depo-video__play {
  background: rgba(201, 168, 76, 0.28);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.28);
  transform: scale(1.10);
}

/* ═══════════════════════════════════════════════════════════
   LABEL
═══════════════════════════════════════════════════════════ */
.depo-video__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-corpo);
  font-size: 0.58rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.68);
}

/* ═══════════════════════════════════════════════════════════
   INFO ABAIXO DO VÍDEO
═══════════════════════════════════════════════════════════ */
.depo-card__info { padding: 0 2px; }

.depo-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.depo-card__desc {
  font-family: var(--font-corpo);
  font-size: 0.78rem;
  color: var(--off-white);
  opacity: 0.52;
  line-height: 1.65;
}
.depo-card__tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-corpo);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.58);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 3px;
  padding: 3px 9px;
}

/* ═══════════════════════════════════════════════════════════
   PLACEHOLDER (em preparação)
═══════════════════════════════════════════════════════════ */
.depo-placeholder .depo-video {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.08);
}
.depo-placeholder .depo-video__poster {
  background: linear-gradient(
    160deg,
    rgba(45, 26, 85, 0.45) 0%,
    rgba(13, 59, 46, 0.45) 100%
  );
}
.depo-placeholder .depo-video__poster::after { display: none; }
.depo-placeholder .depo-video__label {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.60rem;
  text-align: center;
  padding: 0 24px;
  letter-spacing: 0.14em;
}
.depo-placeholder .depo-card__title { opacity: 0.35; }
.depo-placeholder .depo-card__desc  { opacity: 0.25; }

/* ═══════════════════════════════════════════════════════════
   CTA INTERMEDIÁRIO
═══════════════════════════════════════════════════════════ */
.depo-cta-mid {
  background: linear-gradient(160deg, var(--roxo) 0%, #1A0C38 100%);
  padding: var(--sec-pad-v) var(--sec-pad-h);
  text-align: center;
}
.depo-cta-mid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.depo-cta-mid p {
  font-family: var(--font-corpo);
  font-size: 1rem;
  color: var(--off-white);
  opacity: 0.68;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   AVISO TERAPÊUTICO
═══════════════════════════════════════════════════════════ */
.depo-aviso {
  background: var(--verde-profundo);
  padding: 32px var(--sec-pad-h);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.depo-aviso p {
  font-family: var(--font-corpo);
  font-size: 0.70rem;
  color: var(--off-white);
  opacity: 0.38;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.70;
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════ */
.depo-cta-final {
  background: var(--verde-profundo);
  padding: var(--sec-pad-v) var(--sec-pad-h);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.depo-cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 36px;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .depo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .depo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 380px;
  }
  .depo-video__play { width: 54px; height: 54px; }
}
