/* ==========================================================================
   videos.css — Seção "Vídeos" (nossos salões)
   ========================================================================== */

.videos {
  position: relative;
  background: var(--ink);
  padding: 88px 0 0;
}

.videos__head {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: 56px;
}

.videos__eyebrow {
  margin-bottom: 14px;
}

.videos__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 4.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
}

.videos__sub {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--on-dark-low);
}

.videos__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.video-card {
  border-top: 1px solid var(--on-dark-line-mid);
  padding: 28px clamp(14px, 4vw, 40px) 36px;
  display: flex;
  flex-direction: column;
}

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-card__lazy {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__playbtn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-play);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px clamp(16px, 4vw, 32px) 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) 70%, transparent);
  pointer-events: none;
}

.video-card__tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.video-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-dark-hi);
  margin: 0 0 10px;
}

.video-card__link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
