body {
    font-family: Arial, sans-serif;
}

.hero {
    padding: 100px 0;
    color: black;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h1  {
	  color: black;
	
	
}

.lead {
	
	  color: black;
	
	
}

h2 {
    color: #1e88e5;
}

footer {
    background-color: #333;
}

section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilo para o conteúdo centralizado */
.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Preenche toda a altura da tela */
}

/* Centraliza o texto dentro do botão */
.text-center {
    text-align: center;
}

/* Estilo do botão */
#specialButton {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#specialButton:hover {
    background-color: #0056b3; /* Cor mais escura ao passar o mouse */
    transform: scale(1.1); /* Leve aumento de tamanho */
}



