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

header {
    background-color: #333;
    color: white;
    padding: 10px;
}

/* Estilos para a navegação, se houver */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #5c5c5c;
}

#contato {
    padding: 50px;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.email {
    color: #333;
    font-style: italic;
    opacity: .95;
}