@charset "UTF-8";

/* ====== Reset ====== */
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,
strong,
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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* ====== Variáveis ====== */

:root {
    --azul: #0F2052;
    --azul-claro: #2349BE;
    --amarelo: #FE9004;

    --branco: #FFFFFF;
    --cinza-02: #F3F3F3;
    --cinza-03: #D8D8D8;
    --cinza-06: #979797;
    --cinza-08: #4C4C4B;

    --fonte-principal: 'HelveticaNeue', Arial, sans-serif;
    --margem-grid: 1.2rem;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

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;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

textarea:focus,
input:focus {
    outline: none;
}

img {
    display: block;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: var(--fonte-principal);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: var(--cinza-08);
    margin: 0 !important;
    overflow-x: hidden;
    position: relative;
    line-height: 1;
    list-style-type: none;
}

/* ====== Textos ====== */

address,
p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}


small {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 300;
    color: var(--cinza-06);
}

blockquote {
    font-size: 2.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--azul);
}

address:last-child,
p:last-child, 
small:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

a {
    font-weight: 500;
    color: var(--azul);
    text-decoration: none;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

main a:hover {
    color: var(--azul-claro);
}

h1 {
    font-family: var(--fonte-principal);
    font-weight: bold;
    font-size: 4rem;
    line-height: 1.2;
    color: var(--cinza-08);
}

h2 {
    position: relative;
    font-family: var(--fonte-principal);
    font-weight: bold;
    font-size: 2.6rem;
    line-height: 1.4;
    color: var(--azul);
    margin-top: var(--margem-grid);
    margin-bottom: 3.4rem;
}

h2:first-child {
    margin-top: 0;
}

h2::after {
    position: absolute;
    bottom: -1.6rem;
    left: 0;
    content: '';
    width: 6rem;
    height: .4rem;
    border-radius: .4rem;
    background-color: var(--amarelo);
}

/* Centraliza o detalhe quando o H2 tem a classe text-center */
h2.text-center::after,
/* Centraliza o detalhe quando o H2 está DENTRO de uma div text-center */
.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-family: var(--fonte-principal);
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--cinza-08);
    margin-bottom: 1.6rem;
}

main ul,
main ol {
    margin-bottom: 1.6rem;
}

main ul:last-child,
main ol:last-child {
    margin-bottom: 0;
}

main ul li,
main ol li {
    font-family: var(--fonte-principal);
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    font-size: 1.6rem;
    line-height: 1.6;
    position: relative;
    margin-left: 3.2rem;
    margin-bottom: 1.6rem;
}

main ul li:last-child,
main ol li:last-child {
    margin-bottom: 0;
}

main ul li::before {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-size: 1.4rem;
    font-weight: 400;
    content: "\e122";
    top: 0.1rem;
    left: -2.4rem;
    color: var(--amarelo);
}

main li ul {
    margin-top: 1.6rem;
}

main li>ul li {
    margin-left: 2.4rem;
}

main li>ul li::before {
    left: -1.6rem;
    content: "\f105";
}

main ol {
    list-style: none;
    counter-reset: li
}

main ol li::before {
    position: absolute;
    content: '.' counter(li);
    left: -2.4rem;
    color: var(--laranja);
    text-align: right;
    direction: rtl;
}

main ol li {
    counter-increment: li;
}

/* ====== Utilitários - Textos ====== */

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.cor-amarelo {
    color: var(--amarelo);
}

.cor-azul {
    color: var(--azul);
}

.cor-cinza-03 {
    color: var(--cinza-03);
}

.cor-cinza-06 {
    color: var(--cinza-06);
}

/* ====== Main ====== */

.bg-cinza-02 {
    background-color: var(--cinza-02);
}

.bg-cinza-03 {
    background-color: var(--cinza-03);
}

.bg-azul {
    background-color: var(--azul);
}

/* main {
    margin-top: 8rem;
} */

hr {
    width: 100%;
    border: 0;
    border-top: solid .1rem var(--cinza-03);

}

/* ===== Footer ===== */

footer {
    background-color: var(--cinza-02);
    color: var(--cinza-08);
}

.menu-rodape {
    margin-right: calc(var(--margem-grid) * 2);
}

.menu-rodape:last-child {
    margin-right: 0;
}

footer a {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.6;
    color: var(--azul);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

footer a:hover {
    color: var(--azul-claro);
}

.logo-rodape {
    width: 100%;
    max-width: 16rem;
}

@media screen and (max-width: 992px) {

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .menu-rodape {
        margin-bottom: var(--margem-grid);
    }
}

@media screen and (max-width: 768px) {

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {

    h1 {
        font-size: 2.6rem;
    }

}

@media screen and (max-width: 414px) {

    h1 {
        font-size: 2.4rem;
    }

}