
     /* Estilos do Modal */
     #modal {
      display: none; /* Escondido inicialmente */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); /* Fundo preto com opacidade */
      justify-content: center;
      align-items: center;
      z-index: 9999; /* Garante que o modal sobrepõe tudo */
      transition: opacity 0.5s ease, transform 0.5s ease; /* Transições suaves */
    }

    #modalContent {
      position: relative;
      text-align: center;
    }

    #modalContent img {
      max-width: 100%;
      max-height: 100vh; /* Redimensiona a imagem para caber na tela */
      border-radius: 10px;
    }


    #closeModalButton {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 10px 15px;
      background: #ff0000;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 18px;
      cursor: pointer;
      z-index: 10000; /* Botão sempre acima do conteúdo */
    }

    #closeModalButton:hover {
      background: #cc0000;
    }

    /* Estilo do botão de fechar */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Responsividade para dispositivos móveis */
    @media (max-width: 768px) {
      .modal {
        width: 90%;
        height: auto;
      }
    }

    {
      margin: 0;
      font-family: Arial, sans-serif;
    }
    .swiper-container {
      width: 100%;
      height: 100vh;
    }
    .swiper-slide {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      background-size: cover;
      background-position: center;
    }
    .swiper-slide h2 {
      font-size: 3rem;
      margin: 0;
    }
    .swiper-slide p {
      font-size: 1.2rem;
      margin: 10px 0;
    }

.feature-course {
    text-align: center; /* Centraliza o conteúdo */
    background-color: #ffffff; /* Fundo branco */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.0); /* Sombra discreta */
    border-radius: 2px; /* Bordas arredondadas */
    display: flex;
    justify-content: center;
    border: 1px solid #cccccc;
}

.links-container {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    flex-wrap: wrap; /* Permite quebrar linhas se necessário */
    gap: 30px; /* Espaçamento entre os itens */
    border-top: 1px solid #cccccc;
}

.text-link {
    text-decoration: none; /* Remove sublinhado */
    color: #333333; /* Cor do texto */
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px; /* Espaçamento interno para melhor clique */
    background-color: #ffffff; /* Fundo branco */
    border: 0px solid #cccccc; /* Borda sutil */
    border-radius: 5px; /* Bordas arredondadas */
    transition: all 0.3s ease; /* Animações suaves */
    display: inline-block;
}

.text-link:hover {
    color: #0056D2; /* Altera a cor do texto ao passar o mouse */
    border-color: #007BFF; /* Realça a borda ao passar o mouse */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Sombra ao passar o mouse */
}