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

.bg-about {
    background-image: url("/images/background_image_about.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;

    /*background: #2b2c5c;*/
}

/* 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;
    /*background: #8889d1;*/
}

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

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

.container-text{
    width: 450px;
    margin-left: 230px;
}

.body-text p{
    color: #aeb6bf;
    font-family: 'MuseoSans-300', calibri;
    text-align: justify;
    font-size: 20px;
}

.body-text p b{
    color: #aeb6bf;
    font-family: 'MuseoSans-900', verdana;
    text-align: justify;
    font-size: 20px;
}

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