body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ocupa a altura total da tela */
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}

.logo img {
    max-width: 150px; /* Ajuste o tamanho da imagem conforme necessário */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #ff6600; /* Cor de destaque */
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 5px;
}

.contato {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.telefone-link {
    display: inline-block;
    font-size: 1.2em;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    margin-top: 5px;
}

.telefone-link:hover {
    text-decoration: underline;
}
