.youtube-section {
  background: radial-gradient(circle at right, #0d0d25, #050510);
  overflow: hidden;
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* VÍDEO */
.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(124,58,237,.35);
  transition: transform .6s ease, box-shadow .6s ease;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* HOVER VIDEO */
.video-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 0 65px rgba(124,58,237,.55);
}

/* TEXTO */
.youtube-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.youtube-content p {
  color: #cfcff3;
  line-height: 1.7;
  margin-bottom: 15px;
}

.youtube-content .highlight {
  color: #fff;
  font-weight: 600;
}

/* BOTÃO */
.btn-youtube {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255,0,0,.4);
  transition: all .4s ease;
}

.btn-youtube:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px rgba(255,0,0,.7);
}

/* REVEAL DIRECIONAL */
.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-section.visible .reveal-left,
.reveal-section.visible .reveal-right {
  transform: translateX(0);
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .youtube-content {
    text-align: center;
  }
}
