﻿:root {
    --main-blue: #0D2251;
    --blue-gradient: linear-gradient(to right, #20476B, #2E659D);
}
body {
    font-family: 'Montserrat', sans-serif;
    position:relative;
}
.sec1-flex-column {
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #fafafa;
    background-image: url('../img/bgSec1.png');
    box-sizing:border-box;
}
.my-container {
    width: 80%;
    display: block;
    margin: auto;
}
.menu-top {
    padding: 10px 0px;
    background-color: var(--main-blue);
    width: 100%;
}
.menu-top p{
    color:white;
    font-size:14px;
    margin:0;
}
.menu {
    padding: 20px 0px;
    width: 100%;
}
.menu-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-flex > span{
    color:#333;
    font-size:25px;
}
.menu-flex > img{
    width:170px;
}
.btn-custom-default,
.btn-custom-primary {
    border: 0px;
    border-radius: 30px;
    color: #333;
    background-color: white;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
    padding: 12px 45px;
    margin-right: 20px;
    text-decoration: none;
}
.btn-custom-default:hover {
    color:#333;
}
.btn-custom-primary{
    color:white !important;
    background:var(--blue-gradient) !important;
}
.menu-list > ul {
    margin: 0;
    padding: 0;
    display: inline;
}
.menu-list ul li {
    padding:0px 20px;
    display: inline;
}
.menu-list a {
    color:#333;
    text-decoration:none;
}
.menu-responsive p {
    font-size: 14px;
    color: #b9b9b9;
    margin:0;
}
.menu-responsive {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100vh;
    background-color: white;
    z-index: 100;
    transition: all .3s ease-in-out;
}
.menu-opened{
    right:0;
}
.menu-content{
    padding:40px 20px;
    width:100%;
    height:100%;
    position:relative;
    left:60px;
    transition:all .3s;
    opacity:0;
    display:flex;
    justify-content:center;
    flex-direction:column;
}
.menu-content ul{
    margin:0;
    padding:0;
}
.menu-content li {
    list-style: none;
    margin-bottom: 15px;
}
.menu-content li a {
    text-decoration: none;
    font-size: 25px;
    color:#333;
}
.menu-responsive-footer > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 40px 20px;
    margin: 10px;
    align-items:center;
    position:absolute;
    bottom:0;
    left:0;
}
.menu-mask-disabled {
    pointer-events: none;
    opacity: 0;
}
.menu-mask {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(238,238,238,.7);
    z-index: 90;
    padding-top: 40px;
    transition:all .3s;
}
.menu-mask span {
    color: #333;
    font-size: 25px;
    position:relative;
    top:1px;
}
.menu-mask > .my-container > div{
    margin: 20px 0px;
}
.banner {
    padding: 60px 0px;
    width: 100%;
    flex: 1 1 auto;
}
.banner > .my-container{
    display: flex;
}
.banner-text {
    flex: .6;
}
.banner-img {
    flex: .4;
}
.banner-img img{
    width:100%;
}
.pre-text {
    background: rgba(46, 134, 233, 0.18);
    color: #2E86E9;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 30px;
}
.banner-text > h1{
    margin-top:20px;
    font-size:45px;
}
.banner-text h1 span {
    color: #218D9E;
}
.banner-text > p {
    opacity:.5;
    margin-bottom:30px;
}
.projeto {
    padding: 100px 0px;
    text-align: center;
    position: relative;
    background: linear-gradient(white, #FBFBFB);
}
.projeto h1{
    margin-top:20px;
    font-size:45px;
}
.projeto p {
    color: #333;
    opacity: .5;
    max-width: 60%;
    display: block;
    margin: 0 auto;
    margin-bottom: 100px;
}
.sobre-projeto {
    margin-top: 100px;
    display: grid;
    grid-template-areas: 'g2 g3' 'g4 g5';
}
.sobre-projeto > div {
    grid-area: g2;
}
.sobre-projeto > div:nth-child(2) {
    grid-area: g3;
}
.sobre-projeto > div:nth-child(3) {
    grid-area: g4;
}
.sobre-projeto > div:nth-child(4) {
    grid-area: g5;
}
.sobre-projeto > h3 {
    text-align: left;
    font-size:40px;
    margin-bottom:60px;
}
.sobre-box {
    background-color: white;
    box-shadow: 0px 6px 6px 0px rgba(51, 51, 51, 0.05);
    border-radius: 10px;
    margin: 0px 10px 30px;
    padding:20px;
    border:1px solid #eaeaea;
}
.sobre-box > p {
    text-align: left;
    color: #333;
    opacity: 1;
    margin: 0;
    max-width: initial;
}
.dependentes{
    padding:100px 0px;
}
.dependentes .my-container > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.dependentes .pre-text {
    color: #c26a20 !important;
    background: rgba(234, 140, 25, 0.18);
}
.dependentes h1 {
    margin-top: 20px;
    font-size: 45px;
    text-align:center;
}
.dependentes p {
    color: #333;
    opacity: .5;
    max-width: 60%;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: center;
}
.dependentes button {
    margin-right: 0px;
    margin-bottom: 100px;
}
.dependentes .my-container > div > div > svg {
    width: 100%;
}
.vantagens {
    padding: 100px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vantagens .my-container > p,
.dependentes .my-container > p {
    max-width: 60%;
    display: block;
    margin: 0 auto;
}
.vantagens .pre-text {
    color: #20C27C !important;
    background: rgba(32, 194, 124, 0.18);
}
.vantagens-flex{
    display:flex;
    margin-top:100px;
}
.vantagens-img,
.vantagens-content {
    position: relative;
}
#circle {
    position: absolute;
    top:80px;
    right:-70px;
}
#polig{
    position:absolute;
    bottom:40px;
    right:calc(100% + 20px);
}
.vantagens-box{
    display:block;
    text-align:left !important;
    margin-bottom:60px;
}
.vantagens-box svg{
    text-align:left;
    margin-bottom:10px;
}
.vantagens-box p {
    font-size: 25px;
    opacity: 1;
    margin:0;
    max-width:initial;
    margin-bottom: 20px;
    text-align: left;
}
.vantagens-box p:nth-child(3) {
    font-size: 16px;
    color:#333;
    opacity:.5;
}
.vantagens-content{
    padding-left:120px;
    margin-top:60px;
}
.bg-rect{
    position:absolute;
    top:50%;
    right:0;
    transform:translate(50%, -50%);
}
.estatisticas {
    height: 100vh;
    background-color: #282828;
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
    padding: 100px 0px;
}
.circles{
    position:absolute;
    top:0;
    left:50%;
    transform:translate(-50%, -50%);
}
.estatisticas .my-container{
    display:flex;
    justify-content:center;
    flex-direction:column;
}
.estatisticas .my-container > h1{
    text-align:center;
    color:white;
    margin-top:20px;
    font-size:45px;
}
.estatisticas .my-container > p {
    max-width: 60%;
    display: block;
    margin: 0 auto;
    color:white;
}
.estatisticas .pre-text {
    color: #D68F23;
    background: rgba(214, 143, 35, 0.18);
}
.estatisticas-flex{
    display:flex;
    margin-top:100px;
    justify-content:space-between;
}
.estatisticas-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31.33%;
    height: 300px;
    border: 1px solid #505050;
    border-radius: 20px;
    background-color: #2f2f2f;
    z-index: 2;
    flex-direction: column;
}
.estatisticas-flex .estatisticas-box:nth-child(2) {
    border: 0px;
    box-shadow:0px 6px 6px 0px rgba(0, 0, 0, 0.10);
    transform:translateY(-30px);
}
.estatisticas-box p{
    text-align:center;
    opacity:.5;
    color:white;
    margin:0px;
}
.estatisticas-box p:nth-child(1) {
    font-size:50px;
    opacity:1;
}
.estatisticas > svg{
    position:absolute;
    top:0;
    left:0;
}
.divider {
    position: relative;
    overflow: hidden;
    height: 50vh;
}
.divider svg {
    position: absolute;
    top: -120px;
    left: -100px;
    width: calc(100% + 150px);
}
.funcionalidades{
    padding:100px 0px;
    background-color:rgba(46, 134, 233, 0.08);
}
.funcionalidades .my-container {
    display:flex;
    justify-content:center;
}
.funcionalidades-box {
    width:280px;
    height:380px;
    box-shadow:0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    margin:40px 20px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    padding:10px;
    background-color:white;
    position:relative;
    transition:all .2s;
    opacity:0;
}
.funcionalidades-box::after {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid rgba(46, 134, 233, 0.18);
    top: 5px;
    left: 5px;
}
.show{
    opacity:1 !important;
}
.funcionalidades .my-container > div:nth-child(2) > div:first-child {
    margin-top: 80px;
}
.funcionalidades .my-container > div:nth-child(3) > div:first-child {
    margin-top: 120px;
}
.func-img{
    flex:.8;
    background-image: url('../img/pexels-yan-krukov-4458423.jpg');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}
.func-text {
    flex: .2;
    display:flex;
    align-items:center;
    justify-content:center;
}
.func-text p{
    margin:0;
    font-size:15px;
    text-align:center;
}
.func-img > img {
    width: 100%;
}
.contato{
    padding:100px 0px;
}
.contato-flex {
    display: flex;
}
.contato-flex h1{
    margin:0;
}
.contato-flex > div{
    flex:.6;
}
.contato-flex > div:last-child {
    flex: .4;
}
.contato p {
    opacity: .5;
}
.social-flex{
    display:flex;
}
.social-button {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right:10px;
    cursor:pointer;
    opacity:1;
    transition:all .3s;
}
.social-button:hover{
    opacity:.5;
}
.formulario button{
    margin:0;
}
.input-box {
    position: relative;
    margin-bottom: 20px;
}
.input-box svg{
    position:absolute;
    top:50%;
    left:30px;
    transform:translate(-50%, -50%);
}
.input-error {
    border: 1px solid #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.13) !important;
}
.custom-input {
    width: 100%;
    padding: 15px;
    padding-left: 50px;
    background-color: #f1f1f1;
    border: 0px;
    border-radius: 30px;
    max-width: 70%;
    color: #333;
    resize:none;
    transition:all .3s;
}
textarea.custom-input{
    height:200px;
    padding-left:15px;
}
.footer{
    padding:20px 0px;
    background-color:#333;
    color:white;
}
.footer p{
    margin:0;
    font-size:14px;
    opacity:.5;
}
.footer-flex > div:first-child p {
    opacity: 1;
}
.footer-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.footer-flex a{
    color:white;
    text-decoration:none;
    opacity:.5;
    transition:all .2s;
}
.footer-flex a:hover {
    opacity: 1;
}
.footer-divider {
    width: 40px;
    height:2px;
    background-color:white;
    margin:0px 10px;
    opacity:.5;
}
.footer-flex > div:nth-child(2) {
    display: flex;
    align-items: center;
    border-radius:4px;
}
.btn-responsive{
    background-color:transparent;
    outline:none !important;
    border:0;
    color:#333;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    display:none;
    z-index:101;
    position:fixed;
    right:50px;
    cursor:pointer;
}
#line1,
#line2,
#line3{
    opacity:1;
    transition:all .2s;
    position:absolute;
    transform-origin:center;
}
.modal-email, .modal-contato {
    border-radius: 20px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background-color: white;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 320px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all .3s;
    pointer-events: none;
}
.modal-contato{
    height:initial !important;
}
.modal-email-show, .modal-contato-show {
    opacity: 1;
    pointer-events: initial;
}
.modal-email p, .modal-contato p{
    text-align: center;
    margin: 0;
}
.modal-email > svg, .modal-contato > svg{
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
.lottie-area{
    display:flex;
    align-items:center;
    justify-content:center;
    width:200px;
    height:200px;
}
.lottie-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
}
.svgLoad{
    animation:myAnim 1s infinite ease-in-out;
}
.wrap-404{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100vh;
    background-color:#2E659D;
}
.wrap-404 h1,
.wrap-404 p {
    text-align: center;
    color: #194169;
}
.wrap-404 h1{
    font-size:20vw;
}
@keyframes myAnim {
    from{
        transform:rotateZ(0deg);
    } 
    to{
        transform:rotateZ(360deg);
    }
}
@media screen and (max-width:1360px) {
    .my-container{
        width:90%;
    }
    .vantagens-flex .vantagens-img,
    .vantagens-flex .vantagens-content {
        flex: .5;
    }
    .vantagens-img .woman-vantagens {
        width: 100%;
    }
}
@media screen and (max-width:1300px){
    .sobre-projeto {
        grid-template-areas: 'g1 g1' 'g2 g2' 'g3 g3' 'g4 g4' 'g5 g5';
    }
    .sobre-projeto h3,
    .sobre-projeto p {
        text-align: center;
    }
}
@media screen and (max-width:1272px) {
    .divider svg{
        top:-160px;
    }
    .menu-list,
    .btn-custom-default {
        display: none;
    }
    .btn-responsive {
        display: flex;
    }
}
@media screen and (max-width:1050px){
    .contato-flex{
        flex-direction:column;
    }
    .custom-input{
        max-width:initial;
    }
    .formulario > div:not(.input-box){
        width:100% !important;
        margin-bottom:40px;
    }
    .footer .footer-flex {
        flex-direction: column;
    }
    .footer .footer-flex > div{
        margin-bottom:10px;
    }
}
@media screen and (max-width:1000px) {
    .vantagens-box{
        background-color:white;
        padding:20px;
        border-radius:10px;
        box-shadow:0px 3px 10px 0px rgba(0, 0, 0, 0.08);
    }
    .vantagens-img{
        display:none;
    }
    .vantagens-flex .vantagens-img,
    .vantagens-flex .vantagens-content {
        flex: 1;
    }
    .vantagens-content{
        padding:0px;
        margin-top:0px;
    }
    .vantagens-box{
        max-width:50%;
        display:block;
        margin:0 auto;
        margin-bottom:30px;
    }
    .funcionalidades .my-container{
        flex-direction:column;
    }
    .funcionalidades-box{
        margin:0 auto;
        margin-top:40px;
    }
    .funcionalidades .my-container > div:nth-child(2) > div:first-child,
    .funcionalidades .my-container > div:nth-child(3) > div:first-child {
        margin-top: 40px;
    }
    .dependentes .my-container > div > div > svg {
        height: 600px;
    }
}
@media screen and (max-width:900px){
    .banner-img{
        display:none;
    }
    .banner-text{
        flex:1;
    }
    .sec1-flex-column{
        height:80vh;
    }
    .divider{
        display:none;
    }
}
@media screen and (max-width:850px){
    .estatisticas-box{
        height:200px;
    }
    .estatisticas-box p:nth-child(1){
        font-size:30px;
    }
}
@media screen and (max-width:650px){
    .estatisticas{
        height:initial;
    }
    .menu-responsive {
        width: 80%;
    }
    .menu-responsive{
        right:-80%;
    }
    .menu-opened{
        right:0% !important;
    }
    .vantagens-box{
        max-width:70%;
    }
    .estatisticas-flex{
        flex-direction:column;
        align-items:center;
    }
    .estatisticas-flex .estatisticas-box:nth-child(2) {
        transform: initial;
        border: 1px solid #484848;
    }
    .estatisticas-box {
        margin-bottom: 30px;
        box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.10);
        width:60%;
    }
    .btn-responsive{
        right:30px;
    }
    .modal-email,
    .modal-contato {
        width: 90%;
    }
    .contato-flex > div:last-child p{
        text-align:center;
    }
    .social-flex{
        justify-content:center;
    }
    .menu-mask span{
        display:none;
    }
}
@media screen and (max-width:550px){
    .banner-text h1{
        font-size:30px;
    }
    .dependentes .my-container > div > div > svg {
        height: 400px;
    }
    .projeto p{
        max-width:initial;
    }
    .sobre-box > p{
        margin-bottom:20px;
    }
    .menu-top p{
        white-space:nowrap;
        font-size:12px;
    }
    .footer-flex a{
        font-size:12px;
    }
    .footer-divider{
        width:20px;
    }
}

