    body {
      font-family: sans-serif;
      margin: 0;
      padding: 0;
      background: #FEFCF6;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    h1 {
      font-size: 1.0em;
      font-weight: normal;
      text-align: center;
      padding: 0px 15px;
    }
    h2{

      font-weight: normal;
      font-size: 2.5em;

      margin: 0;
      opacity: 1;
      transition: opacity 0.5s ease-in-out;
      height: 1.5em; /* reservando altura para evitar pulo */
    }
    .logo {
      width: 180px;
      height: 180px;
      background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Wikipedia-logo-v2.svg/200px-Wikipedia-logo-v2.svg.png') no-repeat center center;
      background-size: contain;
      margin-bottom: 20px;
    }

    .languages {
      display: flex;
      flex-wrap: wrap;
      max-width: 600px;
      justify-content: center;
      gap: 20px;
    }

    .language-link {
      text-align: center;
      width: 120px;
      text-decoration: none;
      color: #000;
    }

    .language-link:hover {
      text-decoration: underline;
    }

    .lang-name {
      font-weight: bold;
    }

    .lang-desc {
      font-size: 0.9em;
      color: #555;
    }

    @media (max-width: 600px) {
      .language-link {
        width: 100px;
      }
    }

      /*Desabilitar o link*/  
.disabled-link {
  pointer-events: none;
  color: gray;
  text-decoration: none;
  cursor: default;
}