*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 300;
    src: url('../fonts/Montserrat-Light.woff') format('woff');
}    
@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    src: url('../fonts/Montserrat-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 500;
    src: url('../fonts/Montserrat-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 600;
    src: url('../fonts/Montserrat-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    src: url('../fonts/Montserrat-Black.woff') format('woff');
}
@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon/icomoon.eot?5cveoq');
    src:  url('../fonts/icomoon/icomoon.eot?5cveoq#iefix') format('embedded-opentype'),
      url('../fonts/icomoon/icomoon.ttf?5cveoq') format('truetype'),
      url('../fonts/icomoon/icomoon.woff?5cveoq') format('woff'),
      url('../fonts/icomoon/icomoon.svg?5cveoq#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-email:before {
    content: "\e900";
    color: #fff;
  }
  .icon-phone:before {
    content: "\e942";
  }
  .icon-location:before {
    content: "\e947";
  }
  .icon-search:before {
    content: "\e986";
  }
  .icon-close:before {
    content: "\ea0f";
  }
  .icon-checkmark:before {
    content: "\ea10";
  }
  .icon-facebook:before {
    content: "\ea91";
  }
  .icon-instagram:before {
    content: "\ea92";
  }
  .icon-whatsapp:before {
    content: "\ea93";
  }
  
[data-anime]{
    opacity: 0;
    transition: all 1.2s ease-in-out;
    pointer-events: none;
}
[data-anime="left"]{
    transform: translate3d(-200px,0px,0);
}
[data-anime="right"]{
    transform: translate3d(200px,0px,0);
}
[data-anime="top"]{
    transform: translate3d(0px, 300px,0);
}
[data-anime="bottom"]{
    transform: translate3d(0px , -300px,0);
}
[data-anime="bottom-vertical"]{
    transform: translate3d(0 , 300px,0);
}
[data-anime="expand"]{
    transform: translate3d(0px,0px,0px) scale(0);
}
[data-anime].animate_active{
    pointer-events: all;
    opacity: 1;
    transform: translate3d(0px,0px,0px) scale(1);
}
:root{
    --azul: #1f3f6d;

}
body{
    background-color: #FAF7EE;
    color: var(--azul);
    font-family: 'Montserrat' !important;
}
input,button,textarea{
    font-family: 'Montserrat' !important;
}
a{
    color: inherit;
    text-decoration: none;
}
@keyframes pulse {to { box-shadow: 0px 0px 46px 5px rgba(31, 63, 109, 0.9);}}
.socials{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
    background-color: var(--azul);
    padding: 10px 14px;
    position:fixed;
    right: 6%; 
    bottom: 5%;
    z-index: 99!important;
    display:flex;
    justify-content:center;
    align-items:center;
    row-gap: 15px;
    animation: pulse 1s ease-in-out infinite alternate;
}
.socials li a{
    position: relative;
    text-decoration: none;
    color:#fff;
    font-size: 35px
}
.socials li a:hover .tooltip{
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: all;
}
.socials li a .tooltip{
    pointer-events: none;
    transition: all .2s ease-in-out;
    padding: 10px;
    display: flex;
    align-items: center;
    opacity: 0;
    position: absolute;
    right: calc(100% + 30px);
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: auto;
    height: 30px;
    background-color: #000;
}
.socials li a .tooltip::before{
    position: absolute;
    content: "";
    right: -15px;
    border: 0.25em solid transparent;
    border-left-color: #000;
}
.socials li a .tooltip span{
    font-size: 16.67px;
}
a{
    color: inherit;
    text-decoration: none;
}
.content{
    max-width: 1258px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
header.scrolled{
    background-color: #FAF7EE;
    -webkit-box-shadow: 0px 10px 17px -7px rgba(31,63,109,1);
    -moz-box-shadow: 0px 10px 17px -7px rgba(31,63,109,1);
    box-shadow: 0px 10px 17px -7px rgba(31,63,109,1);
}
header nav{
    color: var(--azul);
    background-color: var(--azul);
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 10px 17px -7px rgba(31,63,109,1);
    -moz-box-shadow: 0px 10px 17px -7px rgba(31,63,109,1);
    box-shadow: 0px 10px 17px -7px rgba(31,63,109,1);
    padding-right: 150px;
}
header nav ul{
    display: flex;
    justify-content: end;
    list-style: none;
    gap: 17px;
}
header nav ul li:not(.facebook) a{
    font-size: 15px ;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
header{
    position: sticky;   
    top: 0;
    z-index: 999;
    width: 100vw;
    max-width: 100%;
    margin-bottom: 90px;
    transition: all .3s ease-in-out;
}
header .wrapper{
    border-bottom: 2px solid var(--azul);
    padding-top: 8px !important;
    display: flex;
    justify-content: space-between;
    align-items: end; 
    padding: 0 24px;
    padding-right: 35px;
}
header .wrapper .navigation-links{
    transition: all .3s ease-in-out;
    list-style: none;
    display: flex;
    gap: 50px;
    padding-bottom: 12px;
}
header .wrapper .navigation-links li a{
    font-size: 17.33px;
    font-weight: 600;
    position: relative;
    width: fit-content;
}
header .wrapper .navigation-links li a:hover:before,
header .wrapper .navigation-links li a.active:before{
    transform: translateX(-50%) scaleX(1);
}
header .wrapper .navigation-links li a:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: all .3s ease-in-out;
    background-color: var(--azul);
    width: 100%;
    height: 7px;
    z-index: 11;
}
header .btnMobile {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
}
header .btnMobile span {
    transition: all .3s ease-in-out;
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: var(--azul);
    border-radius: 0px;
    opacity: 1;
    right: 0;
}
header .btnMobile span:nth-child(1) {
    top: 0;
}
header .btnMobile span:nth-child(2){
    top: 9px;
    width: 100%;
}
header .btnMobile span:nth-child(3) {
    top: 19px;
    width: 100%;
}
header.active .btnMobile span:nth-child(1) {
    width: 100%;
    transform: translateY(10px) rotate(45deg);
}
header.active .btnMobile span:nth-child(2) {
    width: 100%;
    opacity: 0;
}
header.active .btnMobile span:nth-child(3) {
    width: 100%;
    transform: translateY(-9px) rotate(-45deg);
}
header.active ul.navigation-links{
    transform: scaleX(1);
    pointer-events: all;
}
header.active .wrapper .navigation-links li a:before{
    background-color: #fff;
}
section.lead{
    color: #fff;
    background-image: url("../img/leads/home.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 415px;
}
section.lead .top{
    text-align: center;
    margin-bottom: 40px;
}
section.lead .top h3{
    text-shadow: 0px 2px 16px rgb(27, 35, 75);
    font-weight: 600;
    font-size: 33.33px;
    margin-bottom: 32px;
}
section.lead .top p{
    font-size: 16.67px;
    margin: 0 auto;
    width: 677px;
    text-align: left;
}
section.lead form {
    width: 100%;
}
section.lead form .wrapper{
    transform: translateX(10px);
    display: flex; 
    justify-content: center;
    align-items: center;
}
section.lead form .wrapper .row{
    display: flex;
    gap: 20px;
}
section.lead form .wrapper .row .group{
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
section.lead form .wrapper .row .group:nth-child(1){
    width: 453px;
}
section.lead form .wrapper .row .group input{
    width: 100%;
    height: 32px;
    background-color: #ffffff55;
    color: #fff;
    outline: none;
    border: none;
    padding-left: 10px;
}
section.lead form .wrapper .group-button button{
    cursor: pointer;
    background-color: var(--azul);
    height: 32px;
    width: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    color: #fff;
    font-size: 16.67px;
    font-weight: 600;
}
section.lead form .wrapper .terms{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    transform: translateY(20px) translateX(30px);
}
section.lead form .wrapper .terms label{
    font-size: 12.46px;
}
section.lead form .wrapper .terms label a{
    text-decoration: underline;
}
.link-footer {
    overflow: hidden;
    color: #fff;
    background-color: var(--azul);
    padding: 12px;
}
.link-footer .content{
    border-width: 300px;
    position: relative;
}
@keyframes dashed_move {
    to{
        transform: translate(-100%,-50%) scaleX(2);
    }
}
.link-footer:hover .wrapper p{
    transform: scale(1.15);
}
.link-footer .content:before{
    animation: dashed_move 10s linear infinite;
    pointer-events: none;
    border: 5px dashed #fff;
    width: 100vw;
    height: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scaleX(2);
    background: transparent;
}
.link-footer .wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 174px;
    gap: 76px;
}
.link-footer .wrapper h3{
    text-shadow: 0px 2px 16px rgb(27, 35, 75);
    text-align: center;
    width: 506px;
    font-size: 33.33px;
    font-weight: 600;
    line-height: 1.1;
}
.link-footer .wrapper p{
    min-width: 170px;
    height: 34px;
    background-color: #fff;
    font-size: 16.67px;
    font-weight: 500;
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
footer{
    color: #fff;
    background: rgb(23,54,100);
    background: linear-gradient(0deg, rgba(23,54,100,1) 0%, rgba(26,57,103,1) 100%);
}
footer .wrapper{
    display: flex;
    align-items: center;
    min-height: 352px;
    gap: 93px;
}
footer .wrapper .links{
    display: flex;
    align-items: start;
}
footer .wrapper .links .group h3{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 17px;
}
footer .wrapper .links .group p{
    width: 233px;
    font-size: 16.67px;
}
footer .wrapper .links .group ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    row-gap: 12px;
}
footer .wrapper .links .group ul li a{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16.67px;
    position: relative;
    width: fit-content;
}
footer .wrapper .links .group ul li a:hover div{
    transform: translateY(-3px) scale(1.1);
}
footer .wrapper .links .group ul li a div{
    transition: transform .2s ease-in;
}
footer .wrapper .links .group ul li a i{
    font-size: 15px;
}
footer .wrapper .links .group:nth-child(2) ul li a:hover:before,
footer .wrapper .links .group:nth-child(2) ul li a.active:before{
    transform: translateX(-50%) scaleX(1);
}
footer .wrapper .links .group:nth-child(2) ul li a:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%) scaleX(0);
    transition: all .3s ease-in-out;
    width: 100%;
    height: 5px;
    background-color: #fff;
}
footer .wrapper .links .group:nth-child(1){
    width: 360px;
}
footer .wrapper .links .group:nth-child(2){
    width: 285px;
}
footer .wrapper .links .group:nth-child(3){
    width: 244px;
}
footer .wrapper .links .group{
}
.byEngenho{
    background-color: #fff;
    color: var(--rosa);
    display: flex;
}
.byEngenho .content{
    padding: 5px 0;
    text-align: center;
    max-width: 1004px;
}
.byEngenho img{
    width: 317px;
    height: auto;
    object-fit: contain;
}

@media(max-width: 1100px) {
    header nav{
        padding-right: 0;
    }
    header .wrapper{
        padding: 0;
    }
    header ul.navigation-links{
        display: flex;
        flex-direction: column;
        top: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
        position: fixed;
        width: 80vw;
        height: 100dvh;
        background-color: var(--azul);
        color: #fff;
        padding-left: 40px;
        justify-content: center;
        pointer-events: none;
    }
    header .btnMobile{
        transform: translateY(-15px);
        display: flex !important;
    }
    .link-footer {
        padding: 30px 0;
    }
    .link-footer .wrapper{
        padding: 15px 0;
        flex-direction: column;
        row-gap: 30px;
    }
    .link-footer .wrapper h3{
        width: 100%;
    }
    section.lead {
        padding: 40px 0;
    }
    section.lead .top h3{
        margin-bottom: 15px;
    }
    section.lead .top p{
        width: 100%;
    }
    section.lead form .wrapper{
        transform: none;
        flex-direction: column;
        row-gap: 20px;
    }
    section.lead form .wrapper .row{
        flex-direction: column;
    }
    section.lead form .wrapper .row .group{
        width: 100% !important;
    }
    section.lead form .wrapper .terms{
        text-align: left;
        align-items: start;
        margin-top: 20px;
        transform: none;
    }
    footer{
        padding: 30px 0;
    }
    footer .wrapper{
        gap: 50px;
        flex-direction: column-reverse;
    }
    footer .wrapper .links{
        row-gap: 30px;
        flex-direction: column;
    }
    footer .wrapper .links .group{
        width: 100% !important;
    }
}
@media(max-width: 468px){
    [data-anime]{
        transform: inherit !important;
    }
    .socials{
        transform: scale(0.7);
    }
}