/* Reset Básico - Tira as margens padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212; /* Fundo escuro padrão "dark mode" */
    color: #ffffff;
}

header {
    padding: 20px;
    text-align: center;
    background-color: #1E1E1E;
}

.hero {
    height: 80vh; /* Ocupa 80% da altura da tela */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #6200ea; /* Um roxo genérico, depois mudamos para a cor da marca */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}