body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f0f0;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.top-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 0 20px 0;  /* <<< espaçamento acima e abaixo */
  background-color: #111;
}

.top-banner img {
  max-width: 70%;          /* <<< centralizado com largura máxima */
  max-height: 150px;       /* <<< controla a altura */
  height: auto;
  object-fit: contain;     /* <<< evita corte e distorção */
  display: block;
}

.container {
  flex-grow: 1;                /* <<< Ocupa o espaço entre header e footer */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  margin-top: 10px;
  text-align: center;
}

/* Título padrão (index e geral) */
h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 900;
}

/* Ajuste APENAS nas legal pages */
.legal-page h1 {
  margin-top: -20px; /* <<< Faz o título subir */
}

.subtitulo {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 600;
}

.botao-inicio {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;  /* <<< controla distância com o título */
}

.botao-inicio a {
  background-color: #e0e0e0;
  color: #111;
  padding: 10px 24px;    /* <<< confortável para clicar */
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;

  display: inline-flex;        /* <<< força comportamento de botão */
  align-items: center;         /* <<< centraliza vertical */
  justify-content: center;     /* <<< centraliza horizontal */
}

.botao-inicio a:hover {
  background-color: #cacaca;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.botao-central {
  background: #ff5e00;
  color: #000;
  border: 2.5px solid transparent;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 900;
  font-size: 2rem;
  transition: transform 0.2s ease;
  width: auto;
  max-width: 300px;
  padding: 5px 20px 10px; /* <<< top levemente menor que bottom */
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botao-central:hover {
  transform: scale(1.05);
}
.descricao-botao {
  background-color: #cacaca;     /* cinza claro */
  color: #000;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 20px #000000 20px #000000 20px #000000;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 80px;
}
.secao-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px; /* espaço entre botão e caixa */
  margin-top: 30px;
}

@keyframes pulse-neon {
  0%   { box-shadow: 0 0 5px #ff4800, 0 0 10px #ff4800, 0 0 10px #ff4800; }
  50%  { box-shadow: 0 0 10px #ff5100, 0 0 30px #ff5100, 0 0 25px #ff5100; }
  100% { box-shadow: 0 0 5px #ff5e00, 0 0 10px #ff5e00, 0 0 10px #ff5e00; }
}

.botao-central {
  animation: pulse-neon 1.8s infinite ease-in-out;
}

footer {
  background: #111;
  padding: 10px 10px;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;     /* <<< CENTRALIZA horizontalmente */
  justify-content: center; /* <<< opcional: centraliza verticalmente */
  gap: 2px;
  text-align: center;      /* <<< garante centralização do texto */
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
