.grid-pdfs {
  display: grid;
  /* Força 3 colunas iguais no desktop que preenchem 100% do container */
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-pdfs a {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 1em;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5em;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #212529;
  line-height: 120%;
  font-size: 1.15rem;
  text-decoration: none;
}

.grid-pdfs a svg {
  width: 36px;
  height: 36px;
  color: red;
}

.grid-pdfs a:hover {
  color: #0873BB;
}

/* Tablet: ajusta para 2 colunas se a tela for menor que 992px */
@media (max-width: 991.98px) {
  .grid-pdfs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: passa para 1 coluna e ajusta o layout interno dos cards */
@media (max-width: 767.98px) {
  .grid-pdfs {
    grid-template-columns: 1fr;
    margin-bottom: 1.2em;
  }
  
  .grid-pdfs a {
    justify-content: flex-start;
    padding-left: 30px;
    flex-direction: row;
  }
}

  .video-container {
          position: relative;
          padding-bottom: 56.25%; /* proporÃ§Ã£o 16:9 */
          padding-top: 30px;
          height: 0;
          overflow: hidden;
          max-width: 640px; /* Largura mÃ¡xima do vÃ­deo */
          margin: 0 auto; /* Centraliza o vÃ­deo */
      }

      .video-container video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
      }
  
      .video-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;

    
         
          display: flex;
          align-items: center;
          justify-content: center;
         background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.5522584033613445) 0%, rgba(23,18,15,0) 66%);
      }

      .play-button {
          width: 60px;
          height: 60px;
          background-color: #fff;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
      }

      .play-button:hover {
          background-color: #ccc;
      }

      label {
  margin-bottom: 0;
}