body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden; /* Evita barra de rolagem horizontal */
    font-family: 'Roboto', Arial, sans-serif;
}

header {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%;
    text-align: left;
    padding: 20px; 
    z-index: 2; 
}

header a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

header a:hover {
    color: #4CAF50; 
}

.background {
    position: relative;
    height: 100%;
    width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Película escura com 50% de opacidade */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    height: 100vh; 
    padding-top: 80px; 
}

.message {
    font-size: 2.0em;
    margin-bottom: 40px;
    padding: 0 20px;
    margin-top: -50px; 
}

.small-link {
    font-size: 0.6em; /* Define o tamanho da fonte menor */
    color: white;
    text-decoration: none;
    margin-top: 5px; /* Espaçamento entre a mensagem e o link pequeno */
}

.small-link:hover {
    color: #4CAF50; /* Define a cor quando o link é hover */
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center; 
}

.btn {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
     font-size: 12px;
}

.btn-blue {
    background-color: #007BFF; /*. #f21b1b*/
}

.btn-blue:hover {
    background-color: #0056b3; 
}

.btn-green {
    background-color: #28a745;
}

.btn-green:hover {
    background-color: #218838; 
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

footer a {
    font-weight: 400 !important; /* Define o peso da fonte como normal (não negrito) */
    font-size: 14px; /* Ajuste conforme necessário */
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #4CAF50; 
}

/* Container para os ícones */
.bottom-icons {
  position: fixed;
  bottom: 20px; /* Distância do fundo da tela */
  left: 50%;
  transform: translateX(-50%); /* Centraliza os ícones */
  text-align: center;
  margin: 0;
}

/* Estilos dos links dos ícones */
.bottom-icons a {
  margin: 0 12px; /* Ajuste o espaçamento entre os ícones */
  color: rgba(255, 255, 255, 0.5); /* Cor branca mais suave */
  font-size: 16px; /* Ícones ligeiramente menores */
  text-decoration: none;
  transition: color 0.3s ease; /* Efeito de transição para a cor */
}

/* Efeito de hover nos ícones */
.bottom-icons a:hover {
  color: rgba(255, 255, 255, 1); /* Cor branca completa ao passar o mouse */
}