/* Reseta o estilo padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.download-options {
    list-style: none;
    margin-top: 15px;
}

.download-options li {
    margin: 10px 0;
}

.download-options a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.download-options a:hover {
    color: #0056b3;
}
