@charset "utf-8";

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

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

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

::selection {
    background: #3377e5;
    color: #fff;
}

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: none;
    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#cabecalho {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70vh;
    padding: 0 13% 0 0;
    margin-top: 12vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    background-color: #fff;
    z-index: -1;
}

header#cabecalho hgroup {
    margin-top: -50px;
}

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

header#cabecalho h2 {
    position: absolute;
    font-family: 'helveticamedium';
    font-weight: normal;
    font-size: 2.5rem;
    line-height: 1.2em;
    margin-top: 30px;
    color: #ff7300;
}

header#cabecalho p {
    margin-left: 177px;
    color: #777;
}

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

header#cabecalho div.btn {
    position: relative;
    width: 135px;
    height: 50px;
    background-color: #ddd;
    margin-top: 77px;
    margin-left: 177px;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
}

header#cabecalho div.btn a {
    color: #ff7300;
    transition: .3s;
}

header#cabecalho div.btn .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ff7300;
    float: bottom;
    transition: .3s;
    z-index: 0;
}

header#cabecalho div.btn:hover .hover {
    height: 100%;
    transition: .3s;
}

header#cabecalho div.btn:hover a {
    color: #fff;
    transition: .3s;
    z-index: 1;
}

header#cabecalho div.btn:active .hover {
    background-color: #6196ea;
    transition: .1s;
}

header#cabecalho img.ilu {
    position: absolute;
    bottom: 0;
    right: 13%;
    width: 50vw;
}

section#intro {
    position: relative !important;
    width: 100%;
    height: auto;
    padding: 200px 10% 200px 10%;
    margin-top: calc(70vh + 12vh);
    box-sizing: border-box;
    background-color: #ddd;
    transition: .6s;
    z-index: 3;
}

section#intro section {
    width: 100%;
    display: flex;
}

section#intro h2 {
    font-family: 'helveticaregular';
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.2em;
    color: #fff;
}

section#intro p {
    font-family: 'helveticaregular';
    color: #eee;
    margin-top: 100px;
    z-index: 1;
}

section#intro p.paragrafo-1 {
    width: 40vw;
    text-align: justify;
    padding: 0 30px 0 0;
}

section#intro p.paragrafo-2 {
    width: 40vw;
    text-align: right;
    margin-top: 70vh;
    padding: 0 0 0 30px;
}

section#intro div.timeline {
    margin-top: -100px;
    z-index: 2;
}

section#intro div.timeline .ano .linha {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, .2);
    margin: 10px 0 10px 0;
}

section#intro div.timeline .ano {
    font-family: 'helveticamedium';
    color: rgba(255, 255, 255, .4);
}

section#intro div.timeline .ano:first-child::after {
    content: "  início";
    color: #eee;
    text-transform: capitalize;
    font-family: 'helveticaregular';
}

section#intro div.timeline .ano:last-child {
    font-family: 'helveticamedium';
    font-size: 2rem;
    color: rgba(255, 255, 255, 1);
}

section#intro svg {
    position: absolute;
    right: 0;
    top: 400px;
    width: 800px;
    opacity: .3;
    z-index: 0;
}

svg .line {
    fill: none;
    stroke: #fff;
    stroke-width: 1px;
    stroke-miterlimit: 10;
    stroke-dasharray: 1500;
    animation: 4s write infinite;
}

@keyframes write {
    0% {
      stroke-dashoffset: 1500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

section#part-2 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 200px 10% 200px 10%;
    box-sizing: border-box;
    background-color: #fff;
    margin-bottom: 350px;
    z-index: 3;
}

section#part-2 .ilu {
    position: absolute;
    z-index: -1;
    display: none;
}

section#part-2 .nuvem-1 {
    width: 100px;
    top: 150px;
    right: -100px;
}

section#part-2 .nuvem-2 {
    width: 100px;
    top: 300px;
    right: -100px;
}

section#part-2 svg {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 800px;
}

section#part-2 svg .line {
    fill: none;
    stroke: #ddd !important;
    stroke-miterlimit: 10;
    opacity: .2;
}

section#part-2 p {
    width: 40vw !important;
    text-align: justify;
    hyphens: auto;
    color: #000;
    z-index: 1;
}

section#part-2 p:nth-child(2) {
    margin-top: 100px;
}

section#part-2 .cenario {
    position: absolute;
    right: 100px;
    bottom: 0;
    width: 800px;
}

footer#rodape {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 400px;
    padding: 100px 10vw 70px 10vw;
    background-color: #121212;
    display: none;
    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;
    opacity: .1;
}

footer#rodape div.coluna h2 {
    color: #323232;
    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(2) a {
    text-decoration: underline;
    color: #777 !important;
    cursor: default;
}

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

footer#rodape div.coluna nav ul li a:hover {
    color: #fff;
    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: 'helveticamedium';
    font-size: .8rem;
    color: #323232;
    white-space: nowrap;
}

footer#rodape div.coluna div .btn {
    position: relative;
    width: 140px;
    height: 55px;
    background-color: #212121;
    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: #3377e5;
    z-index: 9;
    transition: .6s;
}

footer#rodape div.coluna div .btn div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #3377e5;
    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: 100px;
    width: 40px;
    height: 40px;
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

div.btn-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 50px;
    right: 30px;
    background-color: #ff7300;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    margin-top: 30px;
    transform: rotate(180deg);
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
    z-index: 9;
}

div.btn-top .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ff7300;
    transition: .3s;
    z-index: 0;
}

div.btn-top:hover .hover {
    height: 100%;
    transition: .3s;
}

div.btn-top:hover .seta div {
    background-color: #fff !important;
}

div.btn-top:hover .seta div {
    background-color: #fff;
    transition: .3s;
}

div.btn-top .seta {
    position: absolute;
    transform: rotate(180deg);
    margin-left: -6px;
    margin-bottom: -2px;
    z-index: 1;
}

div.btn-top .seta div {
    width: 6px;
    height: 2px;
    background-color: #fff;
    transition: .3s;
}

div.btn-top .seta div:first-child {
    transform: rotate(-45deg);
    margin-left: -4px;
    margin-bottom: -2px;
}

div.btn-top .seta div:last-child {
    transform: rotate(45deg);
}

div.btn-top:active .hover {
    background-color: #6196ea;
    transition: .1s;
}

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