        body{
            font-family: 'Noto Sans JP', sans-serif !important;
           
        }
        .card-link {
            text-decoration: none;
            color: inherit;
        }
        .card-content {
            text-align: center;
            padding-top: 20px;

        }
        .card-content i {
            font-size: 24px;
            margin-bottom: 5px;
        }
        .fonteicones{
         font-size: 12px !important;
        }
  
        .videoBx {
           position: relative;
           width: 80%; /* Reduzir a largura em 20% */
           max-width: 512px; /* 80% de 640px */
           margin: auto;
       }

       .responsive-video {
           width: 100%;
           height: auto;
           object-fit: contain;
           border-radius: 15px; /* Bordas arredondadas */
           transform: scale(0.9); /* Reduzir escala em 20% */
       }

       .video-controls {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           display: none;
       }

       .videoBx:hover .video-controls {
           display: block;
       }

       .btn-play-pause {
           background: transparent;
           border: none;
           color: white;
           padding: 5px; /* Ajustar padding */
           cursor: pointer;
       }

       .btn-play-pause i {
           font-size: 24px;
       }

       .btn-unmute {
       background: none;
       border: none;
       cursor: pointer;
        } 

        @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .botao-com-animacao {
    animation: rotate 1s linear infinite;
  }
  

body.theme-dark .swal2-modal {
    background-color: #222425 !important;
}

body.theme-dark .card {
    background-color: #0E0F10 !important;
}

body.theme-dark .bg-white {
    background-color: #18191A !important;
    border: 1px solid #2e2f30 !important;
}


div:where(.swal2-container) button:where(.swal2-close):focus{
    box-shadow: none !important;
}