#dialogVideo::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
#dialogVideo[open] {
  min-width: 30%;
  min-height: 25%;
  border-radius: var(--border-radius-padrao);
  box-shadow: var(--box-shadow-padrao);
  border: 3px solid rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;

  .modal-video-container {
    background: #fff;
    padding: 0;
    border: none;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border-radius: 8px;
    height: 90%;
  }

  .fechar-video {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .video-wrapper {
    width: 80vw;
    height: 45vw; /* 16:9 ratio */
    max-width: 960px;
    max-height: 540px;
    position: relative;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
  }
  .alert-header{
    width: 100%;
    padding: 20px;
  }
}