body {
    font-family: 'Quicksand', sans-serif;
    background-color: #eee;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.bold {
    font-weight: 700;
}

h1 {
    font-size: 25px;
}

.btn-whatsapp {
    background-color: #24c55f;
    display: inline-block;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid #fff;
    padding: 5px 10px!important;
    display: flex;
    align-items: center;
    transition: .3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-whatsapp .fab {
    font-size: 20px!important;
    margin-right: 5px;
}

.acordeon-content__text h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
}

.acordeon-content__text img {
    margin: 30px 0;
    width: auto;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 10px;
}

.acordeon-content__text ul {
    margin: 20px 10px;
}

h4 {
    font-weight: 900;
    font-size: 25px;
}

.title {
    margin-bottom: 40px;
}

p {
    margin-bottom: 15px;
}

/* HEADER */

.header .mini-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #038bb4;
    padding: 20px 0;
}

.mini-header .mini-header__infos {
    margin: 0 20px;
    color: #fff;
    font-size: 16px;
    padding: 5px;
}

.header .menu {
    padding: 40px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    box-shadow: 0px 10px 15px -20px #000;
}

.menu .back-page {
    color: #fff;
    background-color: #5db9e3;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
}

.menu .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu .social .social__item {
    margin-left: 15px;
}

.menu .social .social__item a {
    color: #038bb4;
    font-size: 25px;
}

@media(max-width: 768px) {
    .menu .back-page {
        font-size: 12px;
        padding: 10px;
    }

    .menu .social .social__item a {
        color: #038bb4;
        font-size: 20px;
    }

    .header .menu {
        padding: 20px;
    }

    .mini-header .mini-header__infos {
        font-size: 12px;
    }
}

/* FIM HEADER */

/* BODY */

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.nav-main {
    width: 27.3%;
    position: fixed;
    right: 2.5%;
}

.nav-main nav {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 1px 7px -5px #000;
}

.nav-main nav .menu-content {
    margin-top: 20px;
}

.nav-main nav .menu-content a {
    display: block;
    color: #000;
    margin-bottom: 10px;
}

.nav-main nav .menu-content a:hover {
    color: #038bb4;
    font-weight: bold;
}

.acordeon-content {
    width: 70%;
    margin-right: 30px;
}

.acordeon-content .acordeon-content__text {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: 0s;
    display: none;
}

.open {
    opacity: 1!important;
    visibility: visible!important;
    height: auto!important;
    margin-top: 30px;
    transition: 0.3s!important;
    display: block!important;
}

.acordeon-content .box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 1px 7px -5px #000;
    margin-bottom: 20px;
}

.acordeon-content .box .title-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
}

.title-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.title-close .fas {
    color: #038bb4;
    display: none;
}

.container {
    padding: 40px;
}

.hm-button {
    display: none;
}

@media(max-width: 992px) {
    .hm-button .fas {
        background-color: #038bb4;
        color: #fff;
        padding: 10px 11px;
        border-radius: 50%;
    }

    .hm-button {
        display: block;
        position: fixed;
        left: 0;
        text-align: left;
        width: 100%;
        top: 0px;
        padding: 10px;
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .acordeon-content {
        width: 100%;
        margin-right: 0;
    }

    .nav-main nav {
        border-radius: 0;
        height: 100vh;
    }

    .nav-main {
        position: fixed;
        left: 0%;
        top: 0;
        opacity: 0;
        width: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .nav-main.open-menu {
        opacity: 1;
        width: 50%;
        visibility: visible;
        z-index: 1;
    }

    .title-close .fas {
        display: block;
    }
}

@media(max-width: 768px) {
    .container {
        padding: 20px
    }
}

@media(max-width: 480px) {
    .nav-main {
        width: 75%!important;
        position: fixed;
        left: 0%;
        top: 0;
    }
}

/* FIM BODY */

/* FOOTER */

.footer {
    padding: 40px;
    color: #fff;
    background-color: #038bb4;
    border-bottom: 10px solid #005c78;
    text-align: center;
}

@media(max-width: 768px) {
    .footer {
        padding: 20px;
    }
}

/* FIM FOOTER */