/* Declaracao das fontes externas*/
@font-face {
    font-family: 'MuseoSans-100';
    src: url('/fonts/MuseoSans-100.ttf');
}
@font-face {
    font-family: 'MuseoSans-300';
    src: url('/fonts/MuseoSans-300.ttf');
}
@font-face {
    font-family: 'MuseoSans-500';
    src: url('/fonts/MuseoSans-500.ttf');
}
@font-face {
    font-family: 'MuseoSans-700';
    src: url('/fonts/MuseoSans-700.ttf');
}
@font-face {
    font-family: 'MuseoSans-900';
    src: url('/fonts/MuseoSans-900.ttf');
}

/* estilo do corpo do site */
body {
    background-color: #396089;
    margin: 0;
}

/* estilo do cabecalho */
header {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* estilo das uls*/
ul {
    margin: 0;
    padding: 0;
}

/* estilo das listas*/
li {
    list-style-type: none;
    text-decoration: none;
}

.bg-faq {
    background-image: url("/images/background_image_faq.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

/* estilo altura da pagina */
.bg-height {
    height: 1355px; /* Ajusta a altura da página */
}

/* cabecalho ##########################################################################################################*/

/* estilo do container do cabecalho */
.container-header {
    display: flex;
    justify-content: center;
    width: 1200px;
}

/* estilo do botao home */
.home-button {
    display: flex;
    text-align: center;
    display: block;
    margin-top: 10px;
    margin-left: 15px;
}

/* estilo da imagem do botao home*/
.home-img {
    position: relative; /* Para o botao ficar a frente do main-menu*/
    width:  150px;
    height: 150px;
    z-index: 2;
}

/* estilo botao de menu layout mobile */
.open-nav {
    display: none !important;
}

/* estilo do menu principal */
.main-menu {
    position: absolute;
    width: 1200px;
    top: 11.5%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/* estilo da lista do menu */
.main-menu li {
    list-style-type: none;
    text-decoration: none;
}

/* estilo do item do menu principal */
.menu-item {
    list-style-type: none;
    text-decoration: none;
    font-family: 'MuseoSans-300', verdana;
    text-transform: uppercase;
    color: #dcdcda;
    width: 180px;
    height: 30px;
    margin: 10px;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    z-index: 1;
}

/* texto ##########################################################################################################*/

.body-text{
    position: absolute;
    top: 760px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.container-text{
    width: 620px;
    height: 300px;
    z-index: 1;
    overflow-y: auto;

    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-left: -10px;
    padding-right: 40px;
}

.container-text::-webkit-scrollbar{
    background: #1c3851;
    width: 5px;
}

.container-text::-webkit-scrollbar-thumb{
    background: #386189;
}

.ul-1, .ul-2, .ul-3, .ul-4, .ul-5, .ul-6, .ul-7, .ul-8, .ul-9, .ul-10 {
    display: none;
    padding-top: 10px;
}

.body-text .li-p {
    padding-top: 10px;
    padding-bottom: 10px;
}

.body-text a{
    list-style-type: none;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content:end;
    height: 100%;
}

.body-text .faq-arrow{
    width: 26px;
    height: 22px;
    margin: auto;
    margin-left: 0px;
    margin-right: 10px;
}

.container-text h1{
    margin: 0;
    padding: 0;
    color: #dcdcd8;
    text-transform: uppercase;
    font-family: 'MuseoSans-300', calibri;
    font-size: 18px;
}

.li-ul {
    color: #dcdcd8;
    font-family: 'MuseoSans-300', calibri;
    font-size: 14px;
    list-style: inside disc;
    text-align: justify;
}

.container-text p{
    color: #dcdcd8;
    font-family: 'MuseoSans-300', calibri;
    font-size: 14px;
    text-align: justify;
}

.text-line{
    position: relative;
    background-color: #21405b;
    width: 100%;
    height: 2px;
    margin: 10px;
    margin-bottom: 10px;
}

/* botoes download ##########################################################################################################*/

.body-download-buttons {
    position: absolute;
    top: 1180px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.download-buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 280px;
    padding-left: 10px;
}

.app-store-button{
    width: 115px;
    height: 36px;
    border-radius: 5px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.app-store-img{
    width: 105px;
}

.google-play-button{
    width: 115px;
    height: 36px;
    border-radius: 5px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.google-play-img{
    width: 105px;
}

/* rodape ##########################################################################################################*/
/* estilo do rodape */
.body-footer {
    position: absolute;
    width: 100%;
    top: 1270px;
    display: flex;
    justify-content: center;
}

/* estilo do container do rodape */
.container-footer {
    text-align: center;
    width: 1200px;
}

/* estilo do copyright*/
.copy-right {
    font-size: 14px;
    color: #3e5e7f;
}