@charset "utf-8";

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

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

: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;
}

main#contato {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin-top: 12vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 12vw;
    box-sizing: border-box;
}

main#contato div.info {
    margin-top: -50px;
}

main#contato div .bg {
    width: 50vw;
}

main#contato div ul li {
    margin-bottom: 30px;
}

main#contato div ul li.title h2 {
    font-family: 'helveticamedium';
    font-weight: normal;
    font-size: 2rem;
    line-height: 1.2em;
}

main#contato div ul li span {
    color: #3377e5;
    margin-right: 50px;
}

li.content {
    color: #000;
}

span.zap {
    color: #25d366 !important;
}

span.cel {
    margin-left: 73px;
    color: #000 !important;
}

p.local {
    font-size: .9rem;
    color: #aaa;
}

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

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

main#contato div .btn div {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #3377e5;
    transition: .4s;
}

main#contato div .btn:hover div {
    width: 100%;
    transition: .2s;
}

main#contato div .btn:hover a {
    color: #eee;
    transition: .2s;
}

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

main#contato .copyright {
    bottom: 50px;
    font-family: 'helveticaregular';
    font-size: .8rem;
    color: #aaa;
    white-space: nowrap;
}

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

div#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    z-index: 9999;
}

div#preloader main {
    display: flex;
    align-items: center;
    vertical-align: middle;
}

div#preloader img {
    width: 30px;
    height: 6px;
}

div#preloader p {
    color: #777;
    font-size: .95rem;
    margin-left: 10px;
}

div#preloader p span {
    color: #000;
}