body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: black;
    min-height: 100vh; /* ocupa a tela toda */
}

header {
    background: #FFE4AA;
    padding: 15px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

h1 {
    margin: 0;
    font-size: 28px;
}

.menu-btn {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.menu-btn img {
    width: 40px;
    height: 40px;
}

.menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 10%;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 10px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 9999;
}

.menu a {
    display: block;
    color: #000;
    padding: 8px;
    text-decoration: none;
    border-radius: 8px;
}

.menu a:hover {
    background-color: #f0f0f0;
    color: #583B7E;
}

main {
    padding: 40px 10%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 20px 10% 40px 10%;
}

h2 {
    color: #583B7E;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.botao-download {
    display: inline-block;
    margin: 10px 10px 10px 0;
    padding: 10px 20px;
    background-color: #583B7E;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.botao-download:hover {
    background-color: #402b5c;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .logo {
    width: 150px;
    display: block;
    margin: 10px auto 0;
}
