.d-none {
  display: none !important;
}

#youtube-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); /* fundo escuro semi-transparente */
  z-index: 9998; /* abaixo do modal */
}

/* 
#youtube-modal {
  position: fixed;
  top: 20%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: #000;
  z-index: 9999;
} */

#youtube-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 720px;
  height: 45%;
  background: #000;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

/* Player ocupa toda a área interna com proporção correta */
#youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Botão de Fechar */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10000;
  display: block;
}

/* Responsivo */
@media (max-width: 768px) {
  #youtube-modal {
    top: 50%;
    left: 50%;
    width: 80%;
    height: 30%;
  }

  #youtube-player {
    height: 100%;
  }
}

/* @media (max-width: 480px) {
  #youtube-player {
    height: 100%;
  }
} */
