* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: #030506;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.pagina {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 35px;
}

.comunicado {
    width: min(100%, 1024px);
    line-height: 0;
}

.arte {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

/*
 * O botão agora fica FORA da imagem.
 * Assim ele não cobre nenhuma parte do comunicado.
 */
.area-botao {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 15px 10px;
    background:
        radial-gradient(circle at center, rgba(180, 112, 30, .12), transparent 55%),
        #030506;
    line-height: normal;
}

.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 290px;
    padding: 15px 28px;
    border: 1px solid rgba(224, 157, 52, .9);
    border-radius: 5px;
    background: linear-gradient(180deg, #2a1707, #100a05);
    color: #f1c76b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    line-height: 1.2;
    text-shadow: 0 1px 2px #000;
    box-shadow:
        0 0 18px rgba(204, 128, 28, .22),
        inset 0 0 18px rgba(219, 145, 42, .08);
    transition: .2s ease;
}

.botao:hover {
    color: #fff1c4;
    border-color: #ffd477;
    background: linear-gradient(180deg, #42230a, #170c05);
    box-shadow:
        0 0 28px rgba(236, 165, 59, .38),
        inset 0 0 20px rgba(236, 165, 59, .12);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .area-botao {
        padding-top: 18px;
    }

    .botao {
        min-width: 230px;
        padding: 11px 18px;
        font-size: 11px;
        letter-spacing: 1.3px;
    }
}

@media (max-width: 380px) {
    .botao {
        min-width: 200px;
        padding: 9px 14px;
        font-size: 10px;
    }
}