/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background do site */
body {
    background-image: url("../img/background.png");
    background-size: cover;          /* ocupa toda a tela */
    background-position: center;     /* centraliza */
    background-repeat: no-repeat;    /* não repete */
    background-attachment: fixed;    /* efeito RPG top 😈 */

    font-family: 'Trebuchet MS', serif;
    color: #fff;
}

/* Conteúdo por cima do background */
.conteudo {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.55); /* sombra escura estilo RPG */
    padding: 40px;
}
