html, body {
  height: 100%;
  overscroll-behavior: none;
}

/* remove margens padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* fundo */
body {
  min-height: 100vh;
  background: url(./assets/fundo_site.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  color: white;
}

header {
  text-align: center;
}

/* centralizar imagens + tamanho responsivo */
img {
  display: block;
  margin: 20px auto;
  width: 500px;
  height: auto;
  border-radius: 10px;
}

.img-lutador {
  width: 500px;
  height: auto;
  border-radius: 10px;
}

/* texto com quebra de linha e espaçamento */
p {
  line-height: 1.6;
  word-wrap: break-word;
  margin-bottom: 20px;
}

a {
  color: rgb(0, 119, 255); 
  text-decoration: none;
}

.versite {
  display: inline-block;
  margin-right: 40px !important;
}

a:hover {
  color: rgb(0, 247, 255);
}

/* .qualquer {
  font-family: 'Arial', sans-serif;
  color: lightblue;
} nao estou usando, irei tirar a class do titulo  e 3 */

h1 {
  font-family: 'Verdana', sans-serif;
  color: rgb(253, 251, 251);
}

h3 {
  font-family: 'Tahoma', sans-serif;
  color: white; /*titulo paragrafo*/
}

h5 {
  font-family: 'Courier New', monospace;
  color: yellow; 
}

span {
  font-family: 'Georgia', serif;
  color: rgb(247, 19, 3);
}

/* Corrigido — agora bate com HTML */
.texto {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: transparent;
}

/* .texto:hover {
  opacity: 80%;
} */

/* Login background */
#login-container {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.25);
  z-index: 9999;
}

/* Caixa do login */
#login-box {
  width: 350px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 12px;
  text-align: center;
  color: white;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Quando logar, aplica um blur SOMENTE no fundo */
body.fundo-desfocado::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  z-index: -1; /* fica atrás de tudo */
}

/* Faz o background continuar visível */
body {
  position: relative;
}



/* Título */
#login-box h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
}

/* Cores do JIU-JITSU BRASILEIRO */
.verde { color: green; }
.amarelo { color: yellow; }
.azul { color: blue; }
.branco { color: white; }

/* Inputs */
#login-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}

/* Botão */
#login-button {
  width: 100%;
  padding: 12px;
  background: #1e88ff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

#login-button:hover {
  background: #1872d9;
}

.secundario {
  width: 100%;
  padding: 12px;
  background: #1e88ff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.secundario:hover {
  background: #1872d9;
}

#social-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 32px 0;
}

#social-links a {
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#social-links img {
  width: 25px;
  height: 25px;
  margin: 0.2px;
  vertical-align: middle;
  cursor: pointer;
  transition: transform 0.2s;
}

#social-links img:hover {
  transform: scale(1.1);
}

/* Mensagem de erro */
#error {
  margin-top: 10px;
  font-size: 14px;
  color: red;
}

#conteudo {
  padding: 20px;
}


.login-header {
    display: flex;
    flex-direction: column;     /* coloca um embaixo do outro */
    align-items: center;        /* centraliza horizontalmente */
    justify-content: center;    /* centraliza verticalmente (se precisar) */
    gap: 20px;                  /* espaço entre logo e texto */
    margin-bottom: 30px;
    text-align: center;
}

#logo img {
    width: 50px;               /* ajuste o tamanho que quiser */
    height: auto;
}

.headerlogin {
    margin: 0;
    font-size: 2.2rem;
}

/* Opcional: deixa o container do login mais bonito */
#login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

#login-box {
    width: 100%;
    max-width: 400px;
    /* seus estilos atuais do login-box aqui */
}

@media (max-width: 768px) {
  header img{
    margin:65px 60px 0 0;
    width: 300px;
  }
  p{
    width: 648px;
    margin: 15px 10px 20px 10px;
  }
}

