/* Melhor renderização das fontes */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Transições suaves */
.transition-all {
    transition-property: all;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* Evita distorção das imagens */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Garante o correto enquadramento da capa */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}