/* 

CORES:

Cinza:                   #4D4D4D
--------------------------------
Branco:                  #FFFFFF
--------------------------------
Preto:                   #363633

*/

:root{
    --cinza: #4D4D4D;
    --branco: #FFFFFF;
    --preto: #363633;
}

.space-30 {
    height: 30px;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------Titulos---------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.ttl-1 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 22px;
    margin: 20px;
}

.ttl-2 {
    text-align: center;
    margin: 40px;
    text-transform: uppercase;
    font-weight: 300;
}

.ttl-3 {
    margin: 40px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 28px;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------Linhas----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.lh-1 {
    
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------Botoes----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.botao-1 {
    display: block;
    text-transform: uppercase;
    width: fit-content;
    margin: auto;
    border: solid 1px;
    border-radius: 15px;
    padding: 2px 20px;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------Boxes----------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.bloco-1 {
    max-width: 450px;
    margin: auto;
}
.bloco-1 h2 {
    font-weight: 300;
}
.bloco-1 h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--cinza);
    margin: 25px 0px 15px;
}
.bloco-1 p {
    margin: 15px 0;
}

.bloco-2 {
    max-width: 450px;
    margin: auto;
    padding: 15px 0;
    padding-left: 20px;
    border-left: solid 4px #4d4d4d;
}
.bloco-2 h2 {
    font-weight: 300;
}
.bloco-2 h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cinza);
    margin: 25px 0px 15px;
}
.bloco-2 p {
    margin: 15px 0;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------header----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

header {
    width: 100%;
    padding: 15px;
    position: fixed;
    z-index: 99;
    background: var(--branco);
}
header img {
    max-height: 42px;
    width: auto;
}
header nav ul {
	text-align: right;
}
header nav ul li {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    margin-left: 15px;
    font-weight: 300;
}
header nav ul li a {
    
    border: solid 1px transparent;
    padding: 2px 10px;
}
header nav ul li a.active {
    border: solid 1px;
    padding: 2px 10px;
    border-radius: 15px;
}
header #btn-menu {
    text-align: center;
    margin-top: 30px;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------corpo-----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

#corpo {
    padding-top: 72px;
}
.roll-down {
    position: relative;
}
.roll-down a {
    position: absolute;
    font-size: 26px;
    color: var(--branco);
    top: -74px;
    left: calc(50% - 13px);
}

.bg-grey {
    background-color: #efefef;
}
.bg-escuro {
    background-color: var(--cinza);
    color: #ffffff;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------footer--------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

footer {
    
}

#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 80px;
}