.video-card-link {
  position: relative;
  display: block;
}

.video-card-link img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.video-overlay {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  background-color: rgba(249, 177, 52, 0.7);
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50.6%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-card-link:hover .video-overlay,
.video-card-link:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/*Inicio do Modal*/
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 600px;
}

#videoFrame {
  width: 100%;
  height: 340px;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  color: white;
  padding: 5px 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
}