@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: #3377e5;
    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: #ff7300;
    text-transform: capitalize;
}

header {
    position: absolute;
    top: 0;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 0 5% 0 5%;
}

header section {
    margin-top: -50px;
}

header section h1 {
    font-family: 'helveticamedium';
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2em;
    color: #000;
}

header section h1 span {
    color: #ff7300;
}

header section.menu {
    margin-left: 100px;
    margin-top: -44px;
}

header section.menu h2 {
    font-family: 'helveticamedium';
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2em;
    margin: 63px 0 20px 0;
    color: #000;
}

header section.menu ul li {
    color: #777;
    text-transform: capitalize;
    margin-top: 10px;
    cursor: default;
}

header section.menu ul li a {
    color: #777;
    transition: .4s;
}

header section.menu ul li a:hover {
    color: #000;
    transition: .4s;
}

header section.menu ul:first-child li:first-child {
    color: #ff7300 !important;
    text-decoration: underline;
}

header section.menu nav {
    display: flex;
}

header section.menu nav ul:last-child {
    margin-left: 40px;
}

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

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

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

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

header section div.btn:hover a {
    color: #eee;
    transition: .2s;
}

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

footer#rodape {
    position: absolute;
    left: 5%;
    bottom: 30px;
}

footer#rodape span {
    font-family: 'helveticaregular';
    font-size: .8rem;
    color: #bbb;
}

img.ilustracao {
    position: absolute;
    width: 300px;
    right: 80px;
    bottom: 0;
}

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

div#preloader span {
    font-size: 1rem;
    color: #eee;
    text-transform: uppercase;
    cursor: default;
}

header#cabecalho {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

header#cabecalho img.ilu {
    width: 500px;
}

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

section#intro {
    position: relative;
    width: 100%;
    height: auto;
    padding: 200px 5% 200px 5%;
    box-sizing: border-box;
    overflow: hidden;
}