 body {
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
        background: url(./bg-black.png);
        color: #333;
        background-color: #222;
    }
    header {
        text-align: center;
        padding: 15px;
        background: #2f353a;
    }

    a {
        text-decoration: none; /* Remove o sublinhado padrão do link */
        color: inherit; /* Herda a cor do texto do elemento pai */
        display: block; /* Garante que o link ocupe toda a área da div */
    }

.card div {
    display: flex;           /* Torna a div pai um contêiner flexível */
    justify-content: center; /* Centraliza os elementos horizontalmente */
}

.link-opcao {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  background-color: #572e57;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  margin: 5px 5px;
  border: 1px solid #572e57;
  border-bottom: 2px solid #572e57;
  transition: .1s all linear;
  text-align: center;
}


.clock {
    margin: 0; /* Remove margem extra do parágrafo */
    padding: 0; /* Remove espaçamento interno */
    text-align: center; /* Centraliza o texto, se necessário */
}
 #invisible-layer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent; /* Invisível */
      z-index: 9999; /* Sempre no topo */
      cursor: pointer;
    }

    article {
        max-width: 1100px;
        margin: auto;
        padding: 0 15px 35px;
        color: #fff;
    }

    .clock {
        background: #292929; /* Cor de fundo */
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .date {
        margin-left: auto;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    img{
        max-width: 100%;
        height: auto;
    }

    h1 {
        text-align: center;
        text-transform: uppercase;
        text-shadow: 1px 2px #000;
    }
    footer {
        background: linear-gradient(180deg, rgb(0 0 0 / 18%) 0%, rgba(0, 0, 0, 0) 100%);
        border-top: solid 2px rgb(23, 89, 104);
        text-align: center;
        color: #fff;
        padding: 15px;
        font-size: small;
    }
    .buttons {
        margin: 10%;
        text-align: center;
    }

    .btn-hover {
        width: 300px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        margin: 20px;
        height: 55px;
        text-align:center;
        border: none;
        background-size: 300% 100%;

        border-radius: 50px;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-hover:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-hover:focus {
        outline: none;
    }
    .btn-hover.color-9 {
        background-image: linear-gradient(to right, #007aff, #007aff, #007aff, #007aff);
        box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 15px auto;
    }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajusta o número de colunas dinamicamente */
    gap: 20px; /* Espaçamento entre os elementos */
    max-width: 1200px; /* Limita a largura total */
    margin: 0 auto; /* Centraliza o grid */
    padding: 20px;
}

.card {
    background-color: #333333 !important; 
    border: 1px solid #444444;
    display: inline-block; /* Garante que o tamanho se ajuste ao conteúdo */
    width: fit-content;    /* Ajusta automaticamente ao tamanho da imagem */
    padding: 0;            /* Remove espaçamento interno */
    margin: 0;             /* Remove espaçamento externo */
    overflow: hidden;      /* Evita que conteúdos extras apareçam */
    text-align: center;
}

.card img {
    display: block;  /* Remove espaços em branco ao redor da imagem */
    max-width: 100%; /* Garante que a imagem não ultrapasse a largura do pai */
    height: auto;    /* Mantém a proporção */
}

/* 
.card img {
    width: 100%; /* Faz a imagem preencher o contêiner */
    aspect-ratio: 16 / 9; /* Mantém a proporção da imagem */
    object-fit: cover; /* Evita distorção */
    display: block;
}
*/

.card p {
    margin: 10px;
    font-size: 14px;
    color: white;
    line-hei

.card:hover img {
    transform: scale(1.05); /* Zoom suave ao passar o mouse */
}

.card p {
    margin: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}
