* {
    outline: none;
    position: relative;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    margin: 0 auto;
    box-sizing: content-box;
    position: relative;
    overflow-x: hidden;
}

header,
section,
footer {
    margin: 0 auto;
    width: 100%;
}

input {
    border: none;
}

button {
    display: inline-block;
    border: none;
    text-decoration: none;
    font-family: sans-serif;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.flex-container {
    display: flex;
}

.flex-container.column {
    flex-direction: column;
}

.flex-container.wrap {
    flex-wrap: wrap;
}

.flex-container-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}


/* Classes de postes */

.post-block {
    margin: 16px;
    text-align: left;
}

.post-block-title {
    font-family: "Roboto Black";
    font-size: 0.9375em;
    color: var(--green-primary);
    line-height: 18px;
    letter-spacing: 1.5px;
    border: none;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-block-details {
    margin-top: 33px;
}

.post-block-details h3,
.post-block-details span {
    font-family: "Roboto Light";
    color: var(--grey-02);
    text-transform: none;
    margin-top: 18px;
}

.post-block-caption {
    font-size: 0.9375em;
    margin-bottom: 19px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-block-date {
    font-size: 0.6875em;
}

.post-block-image img {
    border-bottom: 10px solid var(--green-primary);
    max-width: 100%;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    height: 311px;
    object-fit: cover;
}

.post-block-image:hover img {
    transform: scale(1.01);
}


/* Animação nas imagens */

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation: fadeIn 3s ease-in-out;
    -moz-animation: fadeIn 3s ease-in-out;
    -o-animation: fadeIn 3s ease-in-out;
    animation: fadeIn 3s ease-in-out;
}