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

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

body {
    line-height: 1;
    list-style-type: none;
}

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: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--preto);
    margin: 0 !important;
    overflow-x: hidden;
    position: relative;
}

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

:root {
    --branco: #fff;
    --branco-transparente: #ffffffCC;
    --verde-escuro: #40a193;
    --verde-medio: #66beac;
    --verde-claro: #9eca80;
    --preto: #333;
    --cinza-medio: #ccc;
    --cinza-claro: #f2f2f2;
    --rosa: #ecc0be;
    --margem-grid: 1.6rem;
}

/* ====== Recursos ====== */

.center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: .8rem !important;
}

.mt-2 {
    margin-top: 1.6rem !important;
}

.mt-3 {
    margin-top: 2.4rem !important;
}

.mt-4 {
    margin-top: 3.2rem !important;
}

.mt-5 {
    margin-top: 4rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: .8rem !important;
}

.mb-2 {
    margin-bottom: 1.6rem !important;
}

.mb-3 {
    margin-bottom: 2.4rem !important;
}

.mb-4 {
    margin-bottom: 3.2rem !important;
}

.mb-5 {
    margin-bottom: 4rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

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

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

.bg-verde p {
    color: var(--branco);
}

.bg-branco p {
    color: initial !important;
}

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

strong {
    font-weight: 700;
}

small {
    font-size: 1.2rem;
}

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

a:hover {
    color: var(--verde-medio);
}

h1 {
    font-family: 'Calistoga', cursive;
    font-size: 3.2rem;
    color: var(--branco);
    margin-bottom: 3.2rem;
}

h1 span {
    background-color: var(--verde-claro);
    line-height: 2;
    border-radius: .8rem;
    padding: .6rem 2rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.4;
    color: var(--preto);
    margin-bottom: 1.6rem;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--preto);
    margin-bottom: 1.6rem;
}

.titulo-destaque {
    font-family: 'Calistoga', cursive;
    font-size: 3.2rem;
    color: var(--branco);
    margin-bottom: 3.2rem;
}

main ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    position: relative;
    margin-left: 3.2rem;
    margin-bottom: 1.6rem;
    line-height: 1.5;
}

main ul li::before {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-size: 1.5rem;
    font-weight: 300;
    content: "\f0a9";
    top: 0;
    left: -2.4rem;
    color: var(--verde-medio);
}

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

main li > ul li::before {
    content: "\f105";
}

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

main {
    margin-top: 9rem;
}

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

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

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


/* === Footer === */

footer ul {
    margin-bottom: 1.6rem;
}

footer ul > li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
}

.redes-sociais {
    display: flex;
    margin-bottom: 0;
}

.redes-sociais__item {
    margin-right: 1.6rem;
}

.redes-sociais__item:last-child {
    margin-right: 0;
}

.redes-sociais__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.5rem;
    color: var(--branco);
    background-color: var(--verde-escuro);
    border-radius: 50%;
}

.redes-sociais__item-link:hover {
    color: var(--branco);
    background-color: var(--verde-medio);
}

.footer-copyright {
    padding: 3.2rem 0;
    background-color: var(--cinza-medio);
}


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

    .footer__contador {
        text-align: center;
        margin: 0 auto;
    }

}

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

    h1 {
        font-size: 2.8rem;
    }

    .redes-sociais__item-link {
        width: 4.8rem;
        height: 4.8rem;
        font-size: 2.4rem;
    }

}

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

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2.2rem;
    }

}

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

}