*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
}
@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon/icomoon.eot?fau71g');
    src:  url('../fonts/icomoon/icomoon.eot?fau71g#iefix') format('embedded-opentype'),
      url('../fonts/icomoon/icomoon.ttf?fau71g') format('truetype'),
      url('../fonts/icomoon/icomoon.woff?fau71g') format('woff'),
      url('../fonts/icomoon/icomoon.svg?fau71g#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-search:before {
    content: "\e901";
  }
  .icon-phone:before {
    content: "\e942";
  }
  .icon-location:before {
    content: "\e947";
  }
  .icon-close:before {
    content: "\ea0f";
  }
  .icon-checkmark:before {
    content: "\ea10";
  }
  .icon-facebook:before {
    content: "\ea90";
  }
  .icon-instagram:before {
    content: "\ea92";
  }
  .icon-whatsapp:before {
    content: "\ea93";
  }
  .icon-linkedin:before {
    content: "\eac9";
  }
  .icon-email:before {
    content: "\e903";
  }
  
  
@font-face {
    font-family: 'Montserrat';
    font-weight: 200;
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2');
}     
@font-face {
    font-family: 'Montserrat';
    font-weight: 300;
    src: url('../fonts/Montserrat-Light.woff2') format('woff2');
}     
@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
}     
@font-face {
    font-family: 'Montserrat';
    font-weight: 500;
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
}     
@font-face {
    font-family: 'Montserrat';
    font-weight: 600;
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
}     
 
.reveal {
    opacity: 0;
    transform: translateY(0px); /* fallback para quem não usar direction */
    transition: all 1.2s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
}

/* === DIREÇÕES === */
.reveal.fade-right {
  transform: translateX(-70px) !important;
}
.reveal.fade-right.active {
  transform: translateX(0px) !important;
}
.reveal.fade-left {
  transform: translateX(70px) !important;
}
.reveal.fade-left.active {
  transform: translateX(0px) !important;
}
.reveal.fade-up {
  transform: translateY(70px) !important;
}
.reveal.fade-up.active {
  transform: translateY(0px) !important;
}
.reveal.fade-down{
  transform: translateY(-70px) !important;
}
.reveal.fade-down.active {
  transform: translateY(0px) !important;
}
.reveal.zoom-in {
  transform: scale(0.8) !important;
}
.reveal.zoom-in.active {
  transform: scale(0) !important;
}

:root{
    --rosa_fundo: #f3ede8;
    --rosa_text: #ab6c65;
    --rosa_escuro: #4a0a0b;
}
body::-webkit-scrollbar {
    background-color: var(--rosa_fundo);
    width: 12px;
}
body::-webkit-scrollbar-track {
    background: transparent;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--rosa_escuro);
}
body{
    background-image: url("../img/quem_somos/banner_body.webp");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    color: var(--rosa_text);
    font-family: 'Montserrat' !important;
    font-weight: 400;
}
input,button,textarea,label{
    font-family: 'Montserrat' !important;
}
a{
    color: inherit;
    text-decoration: none;
}
.content{
    max-width: 1242px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.box-float{
    -webkit-box-shadow: 0px 0px 19px -4px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 19px -4px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 19px -4px rgba(0,0,0,0.6);
    padding: 10px 8px;
    padding-bottom: 4px;
    background-color: var(--rosa_escuro);
    border-radius: 10px;
    position: fixed;
    right: 70px;
    bottom: 50px;
    z-index: 999;    
}
.box-float ul{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    color: #fff;
    list-style: none;
}
.box-float ul li a{
    font-size: 35px;
}
.box-float ul li a svg{
    fill: #fff;
}
header.scrolled{
    -webkit-box-shadow: 0px 10px 17px -7px rgba(0, 0, 0, 0.155);
    -moz-box-shadow: 0px 10px 17px -7px rgba(0, 0, 0, 0.155);
    box-shadow: 0px 10px 17px -7px rgba(0, 0, 0, 0.155);
}
header{
    position: sticky;   
    top: 0;
    z-index: 999;
    width: 100vw;
    max-width: 100%;
    transition: all .3s ease-in-out;
}
header .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    position: relative;
    /* transition: all .3s ease-in-out; */
}
header .wrapper .logo{
    margin: 4px 0;
}
header .wrapper .navigation-links{
    position: relative;
    transition: all .3s ease-in-out;
    list-style: none;
    width: 100%;
    height: 69px;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}
header .wrapper .navigation-links:after,
header .wrapper .navigation-links:before{
    content: "";
    position: absolute;
    width: 99.4vw;
    height: 2px;
    bottom: 0;
    background-color: var(--rosa_text);
}
header .wrapper .navigation-links:before{
    bottom: inherit;
    top: 0;
}
header .wrapper .navigation-links li a{
    transition: all .3s ease-in-out;
    text-wrap: nowrap;
    text-transform: uppercase;
    font-size: 20.83px;
    font-weight: 500;
    position: relative;
    color: var(--rosa_text);
}
header .wrapper .navigation-links li a:hover,
header .wrapper .navigation-links li a.active{
    text-decoration: underline !important;
}
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: #fff;
    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) !important;
    pointer-events: all !important;
    z-index: 99 !important;
}
.breadcrumb{
    padding: 17px 0;
    font-size: 16.67px;
}
.breadcrumb h3{
    text-transform: uppercase;
    font-size: 20.83px;
    font-weight: 500;
    -webkit-text-stroke: 0.4px var(--rosa_escuro);
    color: #781f25;
    display: flex;
    align-items: center;
    gap: 3px;
}
.breadcrumb h3 a,
.breadcrumb h3 span{
    font-weight: 500;
}
section.lead{
    position: relative;
    background-image: url("../img/leads/home.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-repeat: repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 392px;
    color: var(--rosa_escuro);
}
section.lead .box-form{
    float: right;
    width: 573px;
}
section.lead .box-form h3{
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--rosa_escuro);
    -webkit-text-stroke: 0.5px var(--rosa_escuro) !important;
    font-size: 25px;
    gap: 12px;
}
section.lead .box-form h3 strong{
    font-weight: 600;
}
section.lead .box-form h4{
    color: var(--rosa_escuro);
    margin-bottom: 27px;
    font-size: 20.83px;
    font-weight: 500;
    text-transform: uppercase;
}
section.lead .box-form .wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
section.lead .box-form .g-2{
    display: flex;
    align-items: center;
    gap: 15px;
}
section.lead .box-form .group-link{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}
section.lead .box-form .group-link label{
    padding-left: 6px;
    font-size: 16.67px;
    font-weight: 500;
}
section.lead .box-form .group-link input{
    padding: 0 12px;
    color: #e5c9bb;
    font-size: 12.5px;
    font-weight: 500;
    width: 100%;
    height: 33px;
    background-color: #781f25;
    border-radius: 10px;
    outline: none;
    border: none;
}
section.lead .box-form .group-link input::placeholder{
    font-style: italic;
    font-size: 10.5px;
    font-weight: 400;
    color: #fff;
}
section.lead .box-form .group-terms{
    display: flex;
    align-items: center;
    gap: 7px;
    text-align: center;
    color: var(--rosa_escuro);
}
section.lead .box-form .group-terms label {
    font-weight: 500;
    font-size: 12.5px;
}
section.lead .box-form .group-terms label a{
    font-weight: 500;
    text-decoration: underline;
}
section.lead .box-form .group-button{
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
section.lead .box-form .group-button button{
    cursor: pointer;
    color: var(--rosa_escuro);
    background-color: transparent;
    border: none;
    font-size: 16.67px;
    font-weight: 600;
    border-radius: 0px;
    padding: 2px 10px;
    text-transform: uppercase;
    width: fit-content;
    height: 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 2;
}
section.lead .box-form .group-button button:hover{
    text-decoration: underline;
}
section.lead .box-form .group-button button{
    display: flex;
    align-items: center;
    gap: 10px;
}
section.link-footer{
    border-top: 15px solid #864844;
    border-bottom: 15px solid #864844;
    margin-top: 170px;
    background-color: hsla(356, 59%, 30%, 0.603);
    color: #fff;
}
section.link-footer .wrapper{
    min-height: 70px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}
section.link-footer .wrapper h3{
    text-wrap: nowrap;
    font-size: 29.17px;
    font-weight: 500;
}
section.link-footer .wrapper h3 span{
    font-weight: 500;
    text-decoration: underline;
}
section.link-footer .wrapper p{
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    width: 50px;
    height: 24px;
    background-color: #fff;
    color: var(--rosa_text);
    transition: all .3s ease-in-out;
}
footer{
    overflow: hidden;
    position: relative;
    background-color: var(--rosa_fundo);
    color: #480a0b;
    flex-shrink: 0;
    height: auto;
    padding: 50px 0;
    padding-bottom: 30px;
}
footer .wrapper-footer{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .wrapper-footer p{
    font-size: 16.67px;
}
footer .wrapper-footer .right{
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
footer .wrapper-footer .group-link{
    width: 280px;
}
footer .wrapper-footer .group-link.explore{
    width: 150px;
}
footer .wrapper-footer .group-link.logo {
    width: 226px;
    height: 100%;
    display: inline-flex;
}
footer .wrapper-footer .group-link.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer .logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
footer .wrapper-footer .group-link.about p{
    text-align: left;
}
footer .wrapper-footer .group-link.about p strong{
    font-weight: 600;
}
footer .wrapper-footer .group-link h3{
    font-size: 20.83px;
    font-weight: 500;
    margin-bottom: 16px;
}
footer .wrapper-footer .group-link .wrapper-links{
    display: flex;
    align-items: start;
    gap: 45px;
}
footer .wrapper-footer .group-link ul{
    text-align: left;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
footer .wrapper-footer .group-link a{
    text-decoration: none;
    display: inline-flex;
}
footer .wrapper-footer .group-link p, footer .wrapper-footer .group-link ul li a{
    font-weight: 500;
    font-size: 16.67px;
    text-decoration: none;
}
footer .wrapper-footer .group-link ul li a{
    white-space: nowrap;
    z-index: 2;
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .5s ease-in-out;
}
footer .wrapper-footer .group-link.explore ul li a:hover,
footer .wrapper-footer .group-link.explore ul li a.active{
    text-decoration: underline !important;
}
.byEngenho{
    background-color: var(--rosa_fundo);
    color: #fff;
    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) {
    .content{
        padding: 0 20px;
    }
    .breadcrumb{
        padding-bottom: 40px;
    }
    .breadcrumb h3{
        padding-left: 65px;
    }
    .breadcrumb .content{
        padding: 0;
    }
    .breadcrumb .wrapper{
        padding: 0;
    }
    .link-footer {
        padding: 30px 0;
    }
    .link-footer .wrapper{
        padding: 15px 0;
        flex-direction: column;
        row-gap: 30px;
    }
    .link-footer .wrapper h3{
        text-wrap: wrap !important;
        width: 100%;
    }
    section.lead .arrows{
        left: 50%;
        top: inherit;
        bottom: 0 !important;
        transform: translateX(-50%) scale(2) !important;
        opacity: 0.4;
    }
    section.lead .arrows img{
        
        width: 100%;
    }
    section.lead {
        padding: 40px 0;
    }
    section.lead .top h3{
        margin-bottom: 15px;
    }
    section.lead .top p{
        width: 100%;
    }
    section.lead .box-form h3{
        display: block;
        text-wrap: wrap;
    }
    section.lead .box-form h3 img{
        transform: translateY(10px);
    }
    section.lead .box-form,
    section.lead .box-form .wrapper{
        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 .logo img {
        width: 90%;
        height: auto;
    }
    footer .wrapper{
        gap: 50px;
        flex-direction: column-reverse;
    }
    footer .wrapper-footer,
    footer .wrapper-footer .right{
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }
    footer .wrapper .links{
        row-gap: 30px;
        flex-direction: column;
    }
    footer .wrapper-footer .group-link{
        width: 100% !important;
    }
    footer .wrapper-footer .group-link.explore{
        transform: none;
    }
    .byEngenho .content div{
        padding: 0 20px;
        row-gap: 15px;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
}
@media(max-width: 768px){
    body{
        overflow-x: hidden !important;
    }
    .box-float{
        right: 20px;
        bottom: 200px;
    }
    header .wrapper{
        height: auto;
        justify-content: space-between;
    }
    header .wrapper .navigation-links .logo.desktop{
        display: none !important;
    }
    header .wrapper .logo.mobile{
        display: block !important;
    }
    header ul.navigation-links{
        display: flex !important;
        flex-direction: column !important;
        top: 0 !important;
        left: 0 !important;
        transform: scaleX(0) !important;
        transform-origin: left !important; 
        position: fixed !important;
        width: 80% !important;
        row-gap: 30px !important;
        justify-content: center !important;
        align-items: start !important;
        height: 100dvh !important;
        background-color: var(--rosa_text) !important;
        color: #fff !important;
        padding-left: 60px !important;
        justify-content: center !important;
        pointer-events: none !important;
        -webkit-box-shadow: 0px 0px 19px -4px rgba(0,0,0,0.6);
        -moz-box-shadow: 0px 0px 19px -4px rgba(0,0,0,0.6);
        box-shadow: 0px 0px 19px -4px rgba(0,0,0,0.6);
    }
    header .wrapper .navigation-links:after,
    header .wrapper .navigation-links:before{
        display: none !important;
    }
    header .btnMobile{
        display: flex !important;
    }
    header .wrapper{
        flex-direction: row;
    }
    header .wrapper .navigation-links li a{
        color: #fff !important;
    }
    .breadcrumb{
        padding: 20px 0;
    }
    .breadcrumb .content{
        padding: 0 20px;
    }
    .breadcrumb h3{
        padding-left: 0;
    }
    section.lead{
        overflow-x: hidden !important;
    }
    footer .wrapper-footer .group-link.logo img {
        width: auto;
        height: auto;
    }
    footer .wrapper-footer, footer .wrapper-footer .right{
        width: 100%;
    }
    footer .wrapper-footer .group-link ul li a{
        white-space: normal !important;
    }
}
@media(max-width: 468px){
    header .wrapper{
        transform: none;
    }
    .box-float ul li a{
        font-size: 25px;
    }
    header .wrapper .logo a img{
        height: 50px;
    }
    section.link-footer .wrapper{
        align-items: start;
    }
    footer .wrapper-footer{
        row-gap: 30px;
    }
}