@charset "utf-8";
/* CSS Style Black */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Corpo da página */
body { font-family: 'Inter', sans-serif; color: #ffffff; background-color: #000000; text-decoration: none; }

/* Estilo para links */
a { color: #ffffff; text-decoration: none; font-size: 14px; font-weight: normal; }
a:hover { color: #ffffff; font-weight: bold; }

.lang-menu { position: absolute; top: 10px; left: 10px; } /* Menu de idiomas no topo */
.lang-menu select { padding: 5px; font-size: 12px; }

/* Conteúdo principal */
main { padding: 20px; max-width: 1200px; margin: 0 auto; }

/* Botões básicos */
button { font-family: 'Inter', sans-serif;
    font-size: 12px; padding: 8px 12px;
    background-color: #ffffff; color: white;
    border: none; border-radius: 4px; cursor: pointer; }
button:hover { background-color: #005fa3; }

nav.desktop { display: flex; justify-content: flex-end; }
auth-links { font-family: 'Inter', sans-serif; color: white; border: none; }

/* Footer - Rodapé */
.rod { background-color: transparent; padding: 20px; margin-top: 40px;  }

.footer-inner { background-color: transparent; max-width: 1200px; margin: 0 auto; }

.rod-links { display: flex; justify-content: center;
  align-items: center; gap: 30px; flex-wrap: wrap;
  margin-bottom: 20px; }

.rod-links .f { display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  transition: transform 0.2s; }

.rod-links .f:hover {
  transform: translateY(-3px); }

/* CONTROLE DO TAMANHO DOS ÍCONES */
.rod-links .f img {
  width: 50px; height: 50px;
  object-fit: contain; }

.copy {
  text-align: center;
  font-size: 12px;
  color: #888888;
  padding-top: 15px;
  border-top: 1px solid #333333; }