/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-fundo: #fafaf7;
    --cor-texto: #2c2c2c;
    --cor-texto-suave: #666;
    --cor-acento: #8b7355;
    --cor-borda: #e0e0d8;
    --cor-card: #ffffff;
    --cor-tag: #e8e4dc;
    
    --fonte-serif: 'Newsreader', Georgia, serif;
    --fonte-mono: 'IBM Plex Mono', monospace;
    --fonte-display: 'Marcellus', serif;
}

body {
    font-family: var(--fonte-serif);
    font-size: 17px;
    line-height: 1.7;
    color: var(--cor-texto);
    background: var(--cor-fundo);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--fonte-display);
    font-weight: 400;
    line-height: 1.3;
}

a {
    color: var(--cor-acento);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--cor-texto);
}

p {
    margin-bottom: 1em;
}