/* =========================
   VIDEO SECTION
========================= */
.video-section {
  position: relative;
  padding: 110px 0 130px;
  background:
    /* Camada clara uniforme */
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      rgba(255,255,255,0.01) 100%
    ),
    radial-gradient(
      circle at top,
      rgba(0,191,98,0.08), /* Aumentado */
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--bg-section) 0%,
      var(--bg-main) 100%
    );
  overflow: hidden;
}

/* Aumente também o brilho do pseudo-elemento */
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,191,98,0.15) 0%, /* Mais intenso */
    rgba(0,191,98,0.07) 35%, /* Mais intenso */
    transparent 70%
  );
  z-index: 0;
}

/* =========================
   HEADER
========================= */
.sc-video-header {
  text-align: center;
  margin-bottom: 70px;
}

.sc-video-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  position: relative;
  display: inline-block;
}

.sc-video-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    var(--brand),
    #7CFFB6
  );
}

.sc-video-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}



/* =========================
   VIDEO CARD
========================= */
.video-card {
  max-width: 900px;
  margin: 0 auto 52px;
  padding: 22px;
  border-radius: 22px;

  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition: all 0.35s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,191,98,0.35);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,191,98,0.15);
}

/* =========================
   VIDEO WRAPPER
========================= */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   CLICK BLOCKER
========================= */
#clickBlocker {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease;
}

#clickBlocker:hover {
  background: rgba(255,255,255,0.04);
}



/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .video-section {
    padding: 80px 0 100px;
  }

  .sc-video-title {
    font-size: 2rem;
  }

  .video-card {
    padding: 16px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 70px 0 90px;
  }

  .video-wrapper {
    border-radius: 10px;
  }
}

/* =========================
   CTA — BOTÃO DO VÍDEO
========================= */
.video-cta-bt {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  position: relative;
  z-index: 3;
}

.video-cta-bt .btn-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 320px;
  padding: 18px 42px;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #03140B;

  font-size: 1.05rem;
  font-weight: 700;

  border: none;
  cursor: pointer;

  box-shadow:
    0 12px 30px rgba(0,191,98,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-cta-bt .btn-video:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 55px rgba(0,191,98,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
