@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    height: 100vh;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
}

:root {
    font-family: 'helveticamedium';
    font-size: 18px;
}

::selection {
    background: #ff7300;
    color: #eee;
}

a {cursor: pointer;}

nav#menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 12vh;
    background-color: #eee;
    box-sizing: border-box;
    padding: 0 5% 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: .4s;
}

nav#menu img {
    width: 90px;
}

nav#menu span {
    color: #3377e5;
    text-transform: capitalize;
}

header#cabecalho {
    position: relative;
    margin-top: 12vh;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 0 5% 0 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    vertical-align: middle; 
    overflow: visible !important;
    z-index: 2;
}

header#cabecalho main {
    display: flex;
    margin-top: -300px;
}

header#cabecalho h1 {
    font-family: 'helveticamedium';
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    line-height: 1.2em;
    margin-top: -10px;
}

header#cabecalho h1 span {
    color: #3377e5 !important;
}

header#cabecalho p {
    margin-left: 50px;
    color: #777;
    width: 30vw;
}

header#cabecalho p span {
    color: #000 !important;
}

header#cabecalho img.bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100px;
}

article#mapa {
    position: relative;
    background-color: #fff;
    width: 100%;
    height: auto;
    padding: 150px 5% 100px 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: space-between;
    z-index: 1;
}

article#mapa main {
    margin-left: 250px;
}

article#mapa h2 {
    font-family: 'helveticamedium';
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2em;
    color: #000;
}

article#mapa h2 span {
    color: #3377e5 !important;
}

article#mapa p {
    color: #777;
    width: 30vw;
    margin-top: 50px;
}

article#mapa p span {
    color: #000;
}

article#mapa img.mapa {
    width: 500px;
}

article#mapa div.btn {
    position: relative;
    width: 140px;
    height: 55px;
    background-color: #ddd;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    overflow: hidden !important;
    cursor: pointer;
}

article#mapa div.btn a {
    position: absolute;
    font-size: .85rem;
    color: #ff7300;
    z-index: 9;
    transition: .6s;
}

article#mapa div.btn div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ff7300;
    transition: .6s;
}

article#mapa div.btn:hover div {
    height: 100%;
    transition: .2s;
}

article#mapa div.btn:hover a {
    color: #eee;
    transition: .2s;
}

article#mapa div.btn:active div {
    background-color: #ff8f33;
    transition: .1s;
}

section#contato {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #3377e5;
    padding: 100px 5% 0 5%;
    margin-bottom: 350px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

section#contato h2 {
    font-family: 'helveticamedium';
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2em;
}

section#contato div.btn {
    position: relative;
    width: 180px;
    height: 55px;
    background-color: rgba(255, 255, 255, .2);
    margin: 50px 150px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    overflow: hidden !important;
    cursor: pointer;
}

section#contato div.btn a {
    position: absolute;
    font-size: .85rem;
    color: #fff;
    z-index: 9;
    transition: .6s;
}

section#contato div.btn div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    transition: .6s;
}

section#contato div.btn:hover div {
    height: 100%;
    transition: .2s;
}

section#contato div.btn:hover a {
    color: #3377e5;
    transition: .2s;
}

section#contato div.btn:active div {
    background-color: #ff7300;
    transition: .1s;
}

section#contato img.bg {
    position: absolute;
    width: 90%;
    bottom: 0;
}

footer#rodape {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 400px;
    padding: 100px 10vw 70px 10vw;
    background-color: #ddd;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 0;
}

footer#rodape div.coluna {
    display: flex;
}

footer#rodape div.coluna img {
    width: 60px;
    margin-top: -30px;
}

footer#rodape div.coluna h2 {
    font-family: 'helveticamedium';
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 30px;
}

footer#rodape div.coluna nav ul li {
    margin-bottom: 15px;
}

footer#rodape div.coluna nav ul:first-child li:nth-child(3) a {
    text-decoration: underline;
    color: #000 !important;
    cursor: default;
}

footer#rodape div.coluna nav ul li a {
    text-transform: capitalize;
    color: #777;
    transition: color .4s;
}

footer#rodape div.coluna nav ul li a:hover {
    color: #000;
    transition: color .4s;
}

footer#rodape div.coluna nav ul:first-child {
    margin-right: 40px;
}

footer#rodape div.coluna:nth-child(2) div:first-child {
    margin-right: 100px;
}

footer#rodape div.coluna nav {
    display: flex;
    margin-bottom: 50px;
}

footer#rodape span {
    position: absolute;
    bottom: 50px;
    margin: 0 auto;
    font-family: 'helveticaregular';
    font-size: .8rem;
    color: #aaa;
    white-space: nowrap;
}

footer#rodape div.coluna div .btn {
    position: relative;
    width: 140px;
    height: 55px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    overflow: hidden !important;
    cursor: pointer;
}

footer#rodape div.coluna div .btn a {
    position: absolute;
    font-size: .85rem;
    color: #ff7300;
    z-index: 9;
    transition: .6s;
}

footer#rodape div.coluna div .btn div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ff7300;
    transition: .4s;
}

footer#rodape div.coluna div .btn:hover div {
    height: 100%;
    transition: .2s;
}

footer#rodape div.coluna div .btn:hover a {
    color: #eee;
    transition: .2s;
}

footer#rodape div.coluna div .btn:active div {
    background-color: #ff8f33;
    transition: .1s;
}

div#whatsapp {
    position: fixed;
    right: 30px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}