/*
Theme Name: Novais Corretora
Author: Guilherme
Description: Theme developed for Client: Novais Corretora
Version: 1.0
*/

*, *::before, *::after {
    box-sizing: border-box;    
} 
html {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
    font: 16px/1.5 "Montserrat";
    -webkit-tap-highlight-color: rgba(#fff, 0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin-top: 0px !important;
}
html.disabled body, html.disabled {
    overflow-y: hidden;
    height: 100%;
}
body {
    margin: 0;
    background:#fff;
    color: #000;
    display: block;
}
body.compensate-for-scrollbar {
    margin: 0;
}

img,iframe,svg {
    display: block;
}
svg {
    fill: currentColor;
}
a {
    display: block;
    text-decoration: none;
    color: inherit;
}
p {
    margin-top: 0;
}
figure {
    margin: 0;
}
input {
    width: 100%;
    background: transparent;
    border: none;
    font-family: inherit;
    color: inherit;
    outline: none;
}
input:required {
    box-shadow: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
    appearance: none;
}
button {
    border: none;
    background: transparent;
    font: inherit;
    appearance: none;
    cursor: pointer;
}
textarea{
    resize: none;
    font-family: sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    outline: none;
}
:focus {
    outline: none;
}
:active {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
::placeholder {
  color: inherit;
  opacity: 1;
}
:root {
  --primary-color: #203348;
  --secondary-color: #91633D;
  --text-primary-color: #222222;
  --text-secondary-color:#;
  --white-color: #ffffff;
  --bg-off-white: #F0F0F0;
  --bg-blue: #C5D3E3;
}
.grecaptcha-badge { 
    visibility: hidden;
}
.no-scroll {
    overflow: hidden;
}



/* SETANDO PADROES DAS IMAGENS*/
.img-responsive {
    max-width: 100%;
    display: block;
    height: auto;
}
.img-cover, .img-contain {
    display: block;
    width: 100%;
    height: 100%;
}
.img-cover {
    object-fit: cover;
}
.img-contain {
    object-fit: contain;
}

/* SETANDO PADROES DO CONTAINER*/
.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
@media only screen and (min-width: 768px){
    .container {
        max-width: 750px;
    }
}
@media only screen and (min-width: 991px){
    .container {
        max-width: 970px;
    }
}
@media only screen and (min-width: 1200px){
    .container {
        max-width: 1170px;
    }
}
@media only screen and (min-width: 1600px){
    .container {
        max-width: 1330px;
    }
}

/* SETANDO PADROES DO LOAD PADRÃO*/
.load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(#000,.8);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms ease;
}
.load.active {
    opacity: 1;
    pointer-events: auto;
}
.load .item-load {
    display: inline-block;
    width: 64px;
    height: 64px;
    position: relative;
}
.load .item-load::after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: load 1.2s linear infinite;
}
@keyframes load {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* SETANDO PADROES DA MENSAGEM DE CONFIRMAÇÃO*/
.mensagem {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 500px;
    width: 100%;
    min-height: 200px;
    padding: 20px;
    background: #000;
    z-index: 14;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    border-radius: 25px;
    transition: opacity 350ms ease;
    transform: translate(-50%,-50%);
}
.mensagem.active {
    opacity: 1;
    pointer-events: auto;
}
.mensagem .item-mensagem {
    font-weight: 500;
    color: #fff;
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    text-align: center;
}
.mensagem .close-mensagem {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: auto;
    transform: translate(30%,-30%);
}
.mensagem .close-mensagem svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}


/********************** INICIO DO CODIGO *******************/

/* HEADER */
header {
    display: block;
    position: absolute;
    padding: 10px 0 0;
    top: 0;
    left: 0;
    right: 0;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .menu-area .menu-desktop {
    display: none;
}
header .menu-mobile .menu-button {
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 50px;
}
header .menu-mobile svg{
    width: 25px;
    height: 25px;
    color: var(--primary-color);
}
header .menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    display: flex;
}
header .menu-area ul li {
    margin-right: 50px;
}
header .menu-area ul li:last-child {
    margin-right: 0px;
}
header .menu-area ul li a {
    padding: 10px;
    color: var(--white-color);
    font-size: 1.125rem;
    font-weight: bold;
    transition: color 350ms;
}
header .menu-area ul li .deco {
    height: 2px;
    width: 0%;
    background-color: var(--secondary-color);
    transition: width 350ms ease;
}
header .menu-area .contact-button {
    background-color: #004aad;
    border: 1px solid #004aad;
    padding: 8px 62px;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
    font-size: 1.375rem;
    font-weight: bold;
    transition: color 350ms, background-color 350ms;
}

@media only screen and (min-width: 480px){ 
}
@media only screen and (min-width: 768px){
}
@media only screen and (min-width: 991px){
    header {
        padding: 40px 0 0;
    }  
    header .container {
        justify-content: center;
    }
    header .menu-area .menu-desktop {
        display: flex;
    }
    header .menu-mobile {
        display: none;
    }
    header .menu-area {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (min-width: 1024px){
    header .menu-area ul li:hover .deco {
        width: 100%;
    }
   
    header .menu-area .contact-button:hover {
        background-color: #fff;
        color: #004aad;
    }
}
@media only screen and (min-width: 1200px){
    header .menu-area {
        display: flex;
        width: 64%;
    }
}


/* SEÇÃO BANNER */
.section-banner {
    padding: 90px 0px;
    background: linear-gradient(to bottom, var(--bg-blue), var(--primary-color));
}
.section-banner .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.section-banner .content-area, .section-banner .image-area{
    width: 100%;
}
.section-banner .content-area{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-banner .content-area .description{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.section-banner .content-area h1 {
    font-size: 2rem;
    line-height: 1.25em;
    color: var(--text-primary-color);
    font-weight: 600;
    margin: 0 0 -75px;
    text-align: center;
}
.section-banner .content-area h1 strong {
    color: var(--white-color);
    font-weight: 700;
}
.section-banner .content-area p {    
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 400;
    width: 100%;
    margin: -50px 0 30px;
    line-height: 1.8rem;
    text-align: center;
}
.section-banner .content-area a {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 52px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 350ms, background-color 350ms;
}
.section-banner .image-area.desk{
    display: none;
}
.section-banner .image-area.mob{
    display: block;
    max-width: 480px;
}
.section-banner .image-area.mob img {
    margin: 0 auto;
}

@media only screen and (min-width: 480px){
    .section-banner {
        padding: 120px 0px;
    }
    .section-banner .content-area h1 {
        line-height: 3rem;
        font-size: 2.5rem;
        font-weight: 600;      
        margin: 0 0 -90px;  
    }
   .section-banner .content-area p {
       font-size: 1.125rem;
       margin: -50px 0 20px;
    }
    .section-banner .content-area a {
        font-size: 1.115rem;
    }
}
@media only screen and (min-width: 768px){
    .section-banner .content-area h1 {
        line-height: 3.5rem;
        font-size: 2.75rem;
        font-weight: 600;
        margin: 0 0 -75px;
    }
   .section-banner .content-area p {
       font-size: 1.25rem;
       margin: -75px 0 20px;
    }
}
@media only screen and (min-width: 991px){
    .section-banner {
        padding: 145px 0px;
         background: linear-gradient(175deg, var(--bg-blue), var(--primary-color));
    }
    .section-banner .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .section-banner .content-area{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .section-banner .content-area {
        width: calc(100% / 2 + 30px);
    }
    .section-banner .image-area{
        width: calc(100% / 2 - 40px);
        max-width: none;
    }
   .section-banner .image-area.desk{
       display: block;
    }
   .section-banner .image-area.mob{
        display: none;
    }
    .section-banner .content-area h1 {
        line-height: 4rem;
        font-size: 3rem;
        margin: 0 0 20px;
        text-align: left;
    }
   .section-banner .content-area p {
        margin: 0 0 35px;
        text-align: left;        
        font-size: 1.125rem;
        width: 100%;
        padding-right: 90px;
        color: var(--text-primary-color);
    }
}
@media only screen and (min-width: 1024px){
   .section-banner .content-area a:hover  {
        background-color: var(--bg-blue);
        color: var(--primary-color);
    }
}
@media only screen and (min-width: 1200px){
   .section-banner .content-area h1 {
        line-height: 5rem;
        font-size: 3.5rem;
        font-weight: 600;
        margin: 0 0 30px;
        text-align: left;
    }
   .section-banner .content-area p {
        margin: 0 0 35px;
        text-align: left;        
        font-size: 1.25rem;
        font-weight: 400;
        width: 100%;
        line-height: 1.8rem;
        padding-right: 90px;
    }
}

/* SEÇÃO CONTADORES */
.section-counters {
    padding: 60px 0px;
}
.section-counters .title-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
}
.section-counters .title-area h2{
    font-size: 1.7rem; 
    line-height: 1.25em; 
    color: var(--text-primary-color);
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
    margin: 0 0 10px;
}
.section-counters .title-area  p {
    font-size: 1rem;
    text-align: center;
    color: var(--text-primary-color);
    font-weight: 400;
    width: 100%;
    margin: 0 auto;
}
.section-counters .counters-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-counters .counters-area .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: var(--bg-off-white);
    width: calc(100% - 140px);
    border-radius: 10px;
    margin-top: 20px;
    
}
.section-counters .counters-area .counter-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0px 0 15px;
}
.section-counters .counters-area .counter-item p {
    margin: 0px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 400;
}
@media only screen and (min-width: 480px){
    .section-counters {
        padding: 160px 0px;
    }
    .section-counters .title-area h2{
        font-size: 2.5rem; 
        line-height: normal;
    }
    .section-counters .counters-area {
        flex-direction: row;
        justify-content: space-evenly;
    }
    .section-counters .counters-area .counter-item {
        padding: 20px;
        width: calc(100% / 3 - 15px);
    }
    .section-counters .counters-area .counter-item h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .section-counters .counters-area .counter-item p {
        font-size: 10px;
    }

}
@media only screen and (min-width: 768px){
    .section-counters .title-area h2{
        font-size: 2.75rem;
    }
    .section-counters .counters-area .counter-item {
        padding: 40px 20px;
        width: calc(100% / 3 - 30px);
    }
    .section-counters .counters-area .counter-item h3 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .section-counters .counters-area .counter-item p {
        font-size: 18px;
    }
}
@media only screen and (min-width: 991px){
    .section-counters .title-area h2 {
        font-size: 3.125rem;
    }
    .section-counters .counters-area .counter-item {
        padding: 40px 20px;
        width: calc(100% / 3 - 50px);
    }
    .section-counters .counters-area .counter-item h3 {
        font-size: 44px;
    }
}
@media only screen and (min-width: 1024px){
}
@media only screen and (min-width: 1200px){
}
@media only screen and (min-width: 1600px){
}

/* SEÇÃO SOBRE == MOBILE FEITO */
.section-about {
    padding: 60px 0px;
}
.section-about .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.section-about .content-area, .section-about .image-area{
    width: 100%;
}
.section-about .content-area{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-about .content-area .description{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.section-about .content-area .description .decoration{
    width: 54px;
    height: 4px;
    background-color: #545454;
    margin-right: 18px;
}
.section-about .content-area .description span{
    font-size: 1rem;
    color: #545454;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}
.section-about .content-area h2 {
    font-size: 1.7rem;
    line-height: 1.25em;
    color: var(--text-primary-color);
    font-weight: 600;
    margin: 0 0 18px;
    text-align: center;
}
.section-about .content-area h2 strong {
    color: var(--secondary-color);
    font-weight: 700;
}
.section-about .content-area h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0 0 18px;
    text-align: center;
}
.section-about .content-area p {    
    font-size: 1rem;
    color: var(--text-primary-color);
    font-weight: 400;
    width: 100%;
    margin: 0 0 15px;
    line-height: 1.8rem;
    text-align: center;
}
.section-about .content-area a {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 52px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 350ms, background-color 350ms;
}
.section-about .image-area.desk{
    display: none;
}
.section-about .image-area.mob{
    display: block;
    margin-bottom: 22px;
}
.section-about .image-area.mob img {
    margin: 0 auto;
}

@media only screen and (min-width: 480px){
    .section-about {
        padding: 180px 0px;
    }
    .section-about .image-area{
        max-width: 480px;
    }
    .section-about .content-area h2 {
        line-height: 2.5rem;
        font-size: 2rem;
        font-weight: 600;
        margin: 0 0 10px;
    }
    .section-about .content-area h4 {
        font-weight: bold;
        margin: 0 0 20px;
        font-size: 1.375rem;
    }
    .section-about .content-area p {
        margin: 0 0 35px;
        font-size: 1rem;
        font-weight: 400;
        width: 100%;
        line-height: 1.8rem;
    }
    .section-about .content-area a {
        font-size: 1.115rem;
    }
}
@media only screen and (min-width: 768px){
    .section-about .content-area h2,.section-about .content-area h4, .section-about .content-area p {  
        text-align: left;
    }
}
@media only screen and (min-width: 991px){
    .section-about .container {
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
    }
    .section-about .content-area{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .section-about .content-area, .section-about .image-area{
        width: calc(100% / 2 - 20px);
    }
    .section-about .image-area.desk{
       display: block;
    }
    .section-about .image-area.mob{
        display: none;
    }
}
@media only screen and (min-width: 1024px){
    .section-about .content-area a:hover  {
        background-color: var(--bg-blue);
        color: var(--primary-color);
    }
}
@media only screen and (min-width: 1200px){
    .section-about .content-area h2 {
        line-height: 3rem;
        font-size: 2.5rem;
        font-weight: 600;
        margin: 0 0 10px;
        text-align: left;
    }
    .section-about .content-area h4 {
        font-weight: bold;
        margin: 0 0 20px;
        font-size: 1.5rem;
        text-align: left;
    }
    .section-about .content-area p {
        margin: 0 0 35px;
        text-align: left;        
        font-size: 1rem;
        font-weight: 400;
        width: 100%;
        line-height: 1.8rem;
    }
    .section-about .content-area, .section-about .image-area {
        width: calc(100% / 2 + 30px);
    }
}

/* SEÇÃO SOLUÇÕES == MOBILE FEITO */
.section-solutions {
    padding: 45px 0;
    background-color: var(--bg-blue);
}
.section-solutions .title-area{
    margin-bottom: 45px;
}
.section-solutions .title-area .content-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-solutions .title-area .content-area h2{
    font-size: 1.7rem; 
    line-height: 1.25em; 
    color: #545454;
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
    margin: 0 0 10px;
}
.section-solutions .title-area .content-area h2 strong{
    color: #004aad;
    font-weight: bold;
}
.section-solutions .title-area .content-area p{
    font-size: 1rem;
    text-align: center;
    color: #545454;
    font-weight: 400;
    width: 100%;
    margin: 0 auto;
}
.section-solutions .solutions-area {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.section-solutions .solutions-area .solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background-color: var(--bg-off-white);
    padding: 30px;
    transform: scale(1);
    transition: transform 350ms, background-color 350ms;
    z-index: 1;
    cursor: pointer;
    border: 3px solid var(--bg-blue);
    border-radius: 8px;
}
.section-solutions .solutions-area .solution-item h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 15px;
}
.section-solutions .solutions-area .solution-item p {
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
    line-height: 1.7rem;
    color: var(--text-primary-color);

}


@media only screen and (min-width: 480px){
    .section-solutions {
        padding: 60px 0px;
    }
    .section-solutions .title-area .content-area h2{
        font-size: 2.5rem;
        line-height: normal;
    }
    
}
@media only screen and (min-width: 580px){
    .section-solutions .solutions-area .solution-item {
        width: calc(100% / 2);
    }
    .section-solutions .solutions-area .solution-item h3 {
        margin: 0 0 25px;
    }
}
@media only screen and (min-width: 768px){
    .section-solutions .title-area .content-area h2{
        font-size: 2.75rem;
        line-height: normal;
    }
}
@media only screen and (min-width: 991px){
    .section-solutions .title-area .content-area h2{
        font-size: 3.125rem;
    }
    .section-solutions .solutions-area .solution-item,  .section-solutions .solutions-area .solution-item:last-child {        
        width: calc(100% / 4);
    }
    .section-solutions .solutions-area .solution-item {
        padding: 25px;
    }
}
@media only screen and (min-width: 1024px){
    .section-solutions .solutions-area .solution-item:hover {
        transform: scale(1.075);
        background-color: var(--primary-color);
        z-index: 10;
    }
    .section-solutions .solutions-area .solution-item:hover img {
        filter: brightness(0) invert(1);
    }
    .section-solutions .solutions-area .solution-item:hover h3{
        color: var(--white-color);
    }
    .section-solutions .solutions-area .solution-item:hover p{
        color: var(--white-color);
    }
}

/* SEÇÃO EMPRESAS  == MOBILE FEITO */
.section-companies {
    padding: 60px 0px;
}
.section-companies .title-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
}
.section-companies .title-area h2{
    font-size: 1.7rem; 
    line-height: 1.25em; 
    color: var(--text-primary-color);
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
    margin: 0 0 10px;
}
.section-companies .title-area  p {
    font-size: 1rem;
    text-align: center;
    color: var(--text-primary-color);
    font-weight: 400;
    width: 100%;
    margin: 0 auto;
}
.section-companies .swiper {
   padding: 0px 20px;
}
.swiper-slide img {
    filter: grayscale(0);
    transform: scale(1);
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.section-companies .swiper .swiper-wrapper {
   align-items: center;
}
.section-companies .swiper .swiper-wrapper .swiper-slide {
    width: calc(100% / 4);
}
.section-companies .pagination-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.section-companies .pagination-area .swiper-button-prev,.section-companies .pagination-area .swiper-button-next {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    width: auto;
    height: auto;
    margin-top: 0px;
    padding: 5px 10px
}
.section-companies .pagination-area .swiper-button-prev {
    margin-right: 12px;
}
.section-companies .pagination-area .swiper-button-prev::after,.section-companies .pagination-area .swiper-button-next::after {
    font-size: 18px;
    color: var(--primary-color)
}

@media only screen and (min-width: 480px){
    .section-companies {
        padding: 0 0 160px;
    }
    .section-companies .title-area h2{
        font-size: 2.5rem; 
        line-height: normal;
    }

}
@media only screen and (min-width: 768px){
    .section-companies .title-area h2{
        font-size: 2.75rem;
    }
}
@media only screen and (min-width: 991px){
    .section-companies .title-area h2 {
        font-size: 3.125rem;
    }
}
@media only screen and (min-width: 1024px){
    .swiper:hover .swiper-slide img {
        filter: grayscale(100%);
        opacity: 0.5;
    }
    .swiper:hover .swiper-slide:hover img {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.05);
    }
}
@media only screen and (min-width: 1200px){
}
@media only screen and (min-width: 1600px){
}

/* SEÇÃO CONTATO == MOBILE FEITO */
.section-contact {
    padding: 60px 0px;
}
.section-contact .container {
    display: flex;
    flex-direction: column;
}
.section-contact .form-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-off-white);
    border-radius: 20px 20px 0 0;
    padding: 20px;
}
.section-contact .form-area h4 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin: 0 0 20px;
}
.section-contact #contact {
    flex: 1;
}
.section-contact #contact label {
    display: block;
    margin-bottom: 18px;
}
.section-contact #contact label span {
    width: 100%;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
}
.section-contact #contact input, .section-contact #contact select, .section-contact #contact select option {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-primary-color);
    background-color: var(--white-color);
    margin-bottom: 16px;
    border: none;
    font-family: "Montserrat";
}
.section-contact #contact textarea {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-primary-color);
    background-color: var(--white-color);
    margin-bottom: 16px;
    height: 200px;
    border: none;
    font-family: "Montserrat";
}
.section-contact #contact button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 52px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    font-size: 1.115rem;
    font-weight: bold;
    transition: color 350ms, background-color 350ms;
}
.section-contact .info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    border-radius: 0 0 20px 20px ;
    padding: 20px;
}
.section-contact .info-area iframe {
    width: 100% !important;
}
.section-contact .info-area h4 {
    font-size: 1.115rem;
    color: var(--white-color);
    margin: 0px 0px 20px;
}
.section-contact .info-area .info-item {
    display: flex;
    margin-bottom: 12px;
}
.section-contact .info-area .info-item p {
    font-size: 1rem;
    color: var(--white-color);
    transition: color 350ms;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}
.section-contact .info-area .info-item svg {
    display: none;
    width: 30px;
    height: 30px;
    fill: none;
    color: var(--white-color);
    margin-right: 10px;
    transition: color 350ms;
    flex-shrink: 0;
}
.section-contact .social-area{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px 40px;
}
.section-contact .social-area .social-item svg {
    width: 30px;
    height: 30px;
    fill: var(--white-color);
    margin-right: 30px;
    transition: fill 350ms;
    flex-shrink: 0;
}


@media only screen and (min-width: 480px){
    .section-contact #contact label span, .section-contact #contact label input, .section-contact #contact label textarea {
        font-size: 1.115rem;
    }
    .section-contact .form-area {
        padding: 48px;
        border-radius: 40px 40px 0 0;
    }
    .section-contact .form-area h4 {
        font-size: 2rem;
    }
    .section-contact .info-area {
        border-radius: 0 0 40px 40px ;
        padding: 48px;
    }
    .section-contact .info-area h4 {
        font-size: 1.25rem;
    }
    .section-contact .info-area .info-item p {
        font-size: 1.115rem;
    }
    .section-contact .info-area .info-item svg {
        display: block;
    }
}
@media only screen and (min-width: 768px){
    .section-contact #contact label span, .section-contact #contact label input, .section-contact #contact label textarea {
        font-size: 1.25rem;
    }
}
@media only screen and (min-width: 991px){
    .section-contact .container {
        flex-direction: row;
    }
    .section-contact .form-area {
        border-radius: 40px 0 0 40px; 
    }
    .section-contact .info-area {
        border-radius: 0 40px 40px 0;
    }

}
@media only screen and (min-width: 1024px){
    .section-contact .info-area a.info-item:hover p, .section-contact .info-area a.info-item:hover {
        color: var(--secondary-color);
    }
    .section-contact .info-area a.social-item:hover svg {
        fill: var(--secondary-color);
    }
    .section-contact .info-area a.info-item:hover svg  {
        color: var(--secondary-color);
    }
    .section-contact #contact button:hover {
        background-color: var(--bg-off-white);
        color: var(--text-primary-color);
    }
}
@media only screen and (min-width: 1200px){
    .section-contact .form-area h4 {
        font-size: 2.25rem;
    }
}
@media only screen and (min-width: 1600px){}

/* MODAL */

.modal-link {
    position: fixed;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-link .box {
    width: 100%;
    max-width: 90vw;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--white-color);
    position: relative;
}
.modal-link .box .close-button svg {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0;
    color: var(--white-color);
    transition: color 350ms ease;
    cursor: pointer;
    top: -40px;
}
.modal-link .box .close-button svg:hover {
    color: var(--secondary-color);
}
.modal-link .links-area {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 30px 0px;
}
.modal-link .box h4 {
    font-size: 20px;
    color: var(--text-primary-color);
    margin: 0;
    text-align: center;
}
.modal-link .box .links-area a {
    font-weight: 400;
    transition: font-weight 350ms ease;
    margin: 15px 0 0;
}
.modal-link .box .links-area a:hover {
font-weight: 800;
}
.modal-link .box p {
    font-size: 12px;
    color: var(--text-primary-color);
    text-align: center;
}
.modal-link .box p a {
    display: inline;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}
@media only screen and (min-width: 480px){
    .modal-link .box {
        max-width: 75vw;
    }
     .modal-link .links-area {
        margin: 45px 0px;
    }
    .modal-link .box .close-button svg {
        width: 40px;
        height: 40px;
        top: -50px;
    }
}
@media only screen and (min-width: 768px){
    .modal-link .box {
        max-width: 65vw;
    }
}
@media only screen and (min-width: 991px){
    .modal-link .box {
        max-width: 50vw;
    }
    .modal-link .box h4 {
        font-size: 26px;
    }
    .modal-link .links-area {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        margin: 60px 0px;
    }
    .modal-link .box .links-area a {
        margin: 0;
    }
    .modal-link .box .close-button svg {
        width: 50px;
        height: 50px;
        top: -60px;
    }
}
@media only screen and (min-width: 1024px){
}
@media only screen and (min-width: 1200px){
    .modal-link .box h4 {
        font-size: 32px;
    }
}

/* Acessibildade */

.acess-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}