* {
    font-family: 'Montserrat', sans-serif;    
}
/* 
font-family: 'Lora', serif;
font-family: 'Source Sans Pro', sans-serif;
 */
.b-lazy {
    opacity:0;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.b-loaded {
    opacity:1;
}




/* Navbar Mobile */
header .navbar .offcanvas-header  {
    border-bottom: 1px solid #bcbcbc;
}
header .navbar .offcanvas-header svg {
    width: 150px;
    height: 50px;
    margin-right: auto;
}

header .navbar button:focus{
    outline: none;
    box-shadow: none;
}
header .navbar .navbar-toggler {
    width: 70px;
    height: 70px;
    padding: 0;
}
header .navbar .navbar-toggler svg{
    fill: #B47F50;
    clip-rule: evenodd;
    fill-rule: evenodd;
    stroke-linejoin: round;
    stroke-miterlimit: 2;

    width: 50px;
    height: 50px;
}
header .navbar.scrolling .navbar-toggler svg {
    fill: #226D4B;
}
header .navbar .btn-close {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    padding: 0;

    z-index: 1;

    opacity: 1;
    background-color: none;
}
header .navbar .btn-close svg{
    fill: #B47F50;
    clip-rule: evenodd;
    fill-rule: evenodd;
    stroke-linejoin: round;
    stroke-miterlimit: 2;
    opacity: 1;

    width: 50px;
    height: 50px;
}



/* Header */
header .navbar>.container {
    display: initial;
}

header .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    z-index: 999999;
}
header .navbar {
    padding: 20px 0;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;    
}

header .navbar.scrolling {
    background-color: #FFFFFF;
    padding: 10px 0;
    box-shadow: 0 10px 10px rgba(34, 109, 75, .05);
}

header .navbar .logo {
    width: 100%;
    max-width: 263px;
    height: auto;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;    
}
header .navbar.scrolling .logo {
    width: 100%;
    max-width: 180px;
}

header .navbar .logo svg{
    width: 100%;
    height: 100%;
}

header .navbar ul.navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;   
}

header .navbar ul.navbar-nav li.item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;

    margin-right: 10px;
}

header .navbar ul.navbar-nav li.item a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border-bottom: 2px solid transparent;
    
    color: #133626;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;   
}

header .navbar ul.navbar-nav li.item:hover a {
    border-bottom: 2px solid #B47F50;
}

header .navbar ul.navbar-nav li.item a.botao {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 15px;
    height: 50px;

    background-color: #226D4B;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, .25);

    color: #F7F9F4;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;

    z-index: 0;
}
header .navbar ul.navbar-nav li.item a.botao:hover{
    box-shadow: none;
}
header .navbar ul.navbar-nav li.item a.botao::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;

    width: 100%;
    height: 0%;
    
    background-color: #B47F50;
    z-index: -1;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
header .navbar ul.navbar-nav li.item a.botao:hover::before {
    top: unset;
    bottom: 0;
    height: 100%;
    transform-origin: top;    
}
header .navbar ul.navbar-nav li.item a.botao .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 20px;
    height: 20px;
    
    margin-right: 10px;
}
header .navbar ul.navbar-nav li.item a.botao .icon svg {
    fill: #ffffff;
    width: 100%;
    height: 100%;
}

header .navbar .offcanvas {
    background-color: #ffffff;
}

header .navbar .offcanvas-end {
    width: 700px;
}

header .navbar .offcanvas-body {
    position: absolute;
    display: flex;
    align-items: center;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

header .navbar .offcanvas-body ul.navbar-nav {
    height: unset!important;
}

header .navbar .offcanvas-body ul.navbar-nav li.item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
}

header .navbar .offcanvas-body ul.navbar-nav li.item:last-child {
    margin: 0;
}




/* Banner */
#banner .swiperBanner .swiper-slide {
    position: relative;
}
#banner .swiperBanner .image {
    background-color: #D2CEC4;
}
#banner .swiperBanner .image img {
    width: 100%;
    height: 800px;
    /* height: 100vh;
    min-height: 800px; */
    
    -o-object-fit: cover;
    object-fit: cover;

    -o-object-position: right center;
    object-position: right center;
}
#banner .swiperBanner .content {
    position: absolute;
    display: flex;
    align-items: center;
    
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;    
}
#banner .swiperBanner .content h1.title {
    color: #133626;
    font-family: 'Source Sans Pro', sans-serif;   
    font-size: 64px;
    line-height: 66px;
    font-weight: 700;
}
#banner .swiperBanner .content h1.title span {
    display: block;
    /* font-family: 'Lora', serif; */
    font-family: 'Times New Roman', Times, serif;
    font-size: 72px;
    font-style: italic;
    font-weight: 300;
}
@media (max-width: 1400px) {
    #banner .swiperBanner .content h1.title {
        font-size: 56px;
        line-height: 58px;
    }

    #banner .swiperBanner .content h1.title span {
        font-size: 64px;
    }
}
@media (max-width: 1200px) {
    #banner .swiperBanner .content h1.title {
        font-size: 40px;
        line-height: 42px;
    }

    #banner .swiperBanner .content h1.title span {
        font-size: 48px;
    }
}

@media (max-width: 1100px) {
    #banner .swiperBanner .content h1.title {
        font-size: 36px;
        line-height: 38px;
    }

    #banner .swiperBanner .content h1.title span {
        font-size: 40px;
    }
}


#banner .swiperBanner .content .botao {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 250px;
    height: 55px;

    background-color: #226D4B;    
    margin-top: 20px;

    color: #F7F9F4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;

    z-index: 0;
}
#banner .swiperBanner .content .botao::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;

    width: 100%;
    height: 0%;
    
    background-color: #B47F50;
    z-index: -1;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#banner .swiperBanner .content .botao:hover::before {
    top: unset;
    bottom: 0;
    height: 100%;
    transform-origin: top;
}




/* Serviços */
#servicos {
    background-color: #133626;
    padding: 100px 0;
}

#servicos .section-title {
    color: #E0E2DB;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 64px;
    font-weight: 700;
}
#servicos .section-title span{
    color: #E0E2DB;
    font-family: 'Times New Roman', Times, serif;
    font-size: 64px;
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 1200px) {
    #servicos .section-title,
    #servicos .section-title span {
        font-size: 54px;        
    }
}


#servicos p.description {
    color: #E0E2DB;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    margin: 40px 0;
}

#servicos .card-servicos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#servicos .card-servicos-header h1.title {
    color: #E0E2DB;
    font-size: 18px;
    font-weight: 600;
    margin: 40px 0;
}

#servicos .card-servicos-header .nav-swiperServicos {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
    
    list-style: none;
}
#servicos .card-servicos-header .nav-swiperServicos li {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;
    padding: 10px;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos-header .nav-swiperServicos li:not(.swiper-button-disabled) {
    background-color: #226D4B;
    border-color: #226D4B;
}
#servicos .card-servicos-header .nav-swiperServicos li:not(.swiper-button-disabled):hover {
    background-color: #B47F50;
    border-color: #B47F50;
}
#servicos .card-servicos-header .nav-swiperServicos li.swiper-button-disabled {
    opacity: .25;
}
#servicos .card-servicos-header .nav-swiperServicos li svg {
    display: block;
    fill: #B47F50;
    width: 100%;
    height: 100%;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos-header .nav-swiperServicos li:not(.swiper-button-disabled) svg {
    fill: #ffffff;
}

#servicos .swiper-slide {
    height: auto!important;
}
#servicos .card-servicos {
    position: relative;    
    
    height: 100%;
    cursor: pointer;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#servicos .card-servicos .image {
    width: 100%;
    height: 235px;

    overflow: hidden;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos .image img {
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos:hover .image img {
    transform: scale(1.075);
}

#servicos .card-servicos .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;

    padding: 20px 40px;
    background-color: #F7F9F4;
    height: calc(100% - 235px);

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos[aria-expanded="true"] .content {
    background-color: #226D4B;
}
#servicos .card-servicos h2.subtitle {
    color: #B47F50;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
#servicos .card-servicos h1.title {
    color: #133626;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}
#servicos .card-servicos h1.title i {
    font-size: 90%;
}
#servicos .card-servicos.min h1.title {
    font-size: 24px;
}
#servicos .contents .accordion-body {
    margin-top: 50px;
    background-color: #226D4B;
    border-radius: 8px;
    padding: 30px;
}
#servicos .contents .accordion-body h1.name {
    color: #E0E2DB;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
#servicos .contents .accordion-body .desc p {
    color: #E0E2DB;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin: 0;
}
#servicos .contents .accordion-body .desc ul {
    margin: 5px 0 15px 0;
    padding-left: 16px;
}
#servicos .contents .accordion-body .desc ul li {
    color: #E0E2DB;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

#servicos .card-servicos .botao.saiba-mais {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 225px;
    height: 40px;

    background-color: #226D4B;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;

    color: #F7F9F4;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    z-index: 0;

    box-shadow: 0px 8px 16px rgba(0, 0, 0, .25);

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos:hover .botao.saiba-mais {
    box-shadow: none;
}
#servicos .card-servicos .botao.saiba-mais::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;

    width: 100%;
    height: 0%;
    
    background-color: #B47F50;
    z-index: -1;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#servicos .card-servicos:hover .botao.saiba-mais::before {
    top: unset;
    bottom: 0;
    height: 100%;
    transform-origin: top;
}
#servicos .card-servicos[aria-expanded="true"] .botao.saiba-mais {
    opacity: 0;
    height: 0;
    margin: 0;
}




/* Áreas de atuação */
#areas-atuacao {
    background-color: #133626;
    padding: 100px 0;
}
#areas-atuacao h1.section-title {
    color: #E0E2DB;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 40px;
}

#areas-atuacao .card-atuacao {
    position: relative;
    background-color: #F7F9F4;
    padding: 50px;
    height: 100%;
    
    z-index: 0;
    overflow: hidden;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#areas-atuacao .card-atuacao::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;

    width: 100%;
    height: 0%;
    
    background-color: #226D4B;
    z-index: -1;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#areas-atuacao .card-atuacao:hover::before {
    top: unset;
    bottom: 0;
    height: 100%;
    transform-origin: top;
}

#areas-atuacao .card-atuacao .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 100px;
    height: 100px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
#areas-atuacao .card-atuacao .icon svg {    
    fill: #BA704A;
    width: 100%;
    height: 100%;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#areas-atuacao .card-atuacao:hover .icon svg {
    fill: #F7F9F4;
}
#areas-atuacao .card-atuacao h1.title {
    color: #133626;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-align: center;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#areas-atuacao .card-atuacao:hover h1.title {
    color: #F7F9F4;
}




/* Registros */
#registros {
    background-color: #133626;
    padding: 100px 0;
}
#registros h1.section-title {
    color: #E0E2DB;
    font-family: 'Source Sans Pro', sans-serif;   
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}
#registros ul.registros {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;

    width: 100%;
    height: 100%;

    list-style: none;
    padding: 0;
    margin: 0;
}
#registros ul.registros li {
    color: #E0E2DB;
    font-family: 'Source Sans Pro', sans-serif;   
    font-size: 36px;
    font-weight: 600;
    margin: 0;

    cursor: pointer;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#registros ul.registros li:hover {
    color: #B47F50;
    transform: scale(.9);
}
#registros .col-associado {
    border-left: 3px solid #E0E2DB;
}
#registros .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#registros .logo img {
    width: 150px;
    height: 120px;

    cursor: pointer;
    
    -o-object-fit: contain;
    object-fit: contain;

    -webkit-filter: invert(97%) sepia(97%) saturate(0%) hue-rotate(75deg) brightness(103%) contrast(100%);
    filter: invert(97%) sepia(97%) saturate(0%) hue-rotate(75deg) brightness(103%) contrast(100%);

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#registros .logo:hover img {
    -webkit-filter: invert(54%) sepia(62%) saturate(340%) hue-rotate(347deg) brightness(87%) contrast(91%);
    filter: invert(54%) sepia(62%) saturate(340%) hue-rotate(347deg) brightness(87%) contrast(91%);

    transform: scale(.9);
}




/* Sobre */
#sobre {
    position: relative;
    padding: 100px 0 150px 0;
    background-color: #E0E2DB;
    overflow: hidden;
    z-index: 0;
}
#sobre .render_1 {
    position: absolute;

    top: 130px;
    left: -50px;

    width: 450px;
    height: auto;

    z-index: -1;
}
#sobre .render_2 {
    position: absolute;
    
    bottom: 30px;
    right: 5%;
    
    width: 450px;
    height: auto;

    margin: auto;
    
    z-index: -1;
}
#sobre .render_1 img,
#sobre .render_2 img {
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;
}

#sobre .accordion .header {
    border-bottom: 2px solid #b9c6bd;
    margin-bottom: 10px;
    gap: 3px;
}
#sobre .accordion .header .accordion-header .accordion-button{
    color: #133626;
    font-family: 'Source Sans Pro', sans-serif;   
    font-size: 16px;
    font-weight: 600;
    
    background: #b9c6bd;
    box-shadow: none;
}
#sobre .accordion .header .accordion-header .accordion-button::before {
    position: absolute;
    content: '';
    
    left: 0;
    bottom: -2px;
    
    width: 100%;
    height: 2px;
    
    background-color: transparent;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#sobre .accordion .header .accordion-header .accordion-button:hover::before {
    background-color: #B47F50;
    color: #ffffff;
}
#sobre .accordion .header .accordion-header .accordion-button[aria-expanded="true"]::before {
    background-color: #226D4B;
    color: #ffffff;
}
#sobre .accordion .header .accordion-header .accordion-button:hover {
    background-color: #B47F50;
    color: #ffffff;
}
#sobre .accordion .header .accordion-header .accordion-button[aria-expanded="true"] {
    background-color: #226D4B;
    color: #ffffff;
}
#sobre .accordion .header .accordion-header .accordion-button::after {
    content: none;
}
#sobre .accordion .accordion-item {
    background: none;
    border: none;
}
#sobre .accordion .accordion-item .accordion-body {
    padding: 40px 0 10px 0;
}
#sobre .accordion .accordion-item .accordion-body p {
    color: #133626!important;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif!important; 
    text-align: justify;
}

#sobre .image {
    width: 90%;
    height: auto;
    margin-left: auto;
}
#sobre .image img {
    width: 100%;
    height: 100%;

    box-shadow: 0px 8px 16px rgba(0, 0, 0, .25);
}




/* Contato */
#contato {
    position: relative;
    
    background-color: #133626;
    padding: 100px 0;

    overflow: hidden;

    z-index: 0;
}
#contato::before {
    position: absolute;
    content: '';

    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: calc(100% - 170px);

    background: url("../img/pattern.webp");
    background-size: contain;

    margin-bottom: auto;

    z-index: -1;
}

#contato .cards-contato {
    position: relative;
    z-index: 0;
}
#contato .cards-contato::before {
    position: absolute;
    content: '';

    top: -20px;
    left: -5%;

    width: 110%;
    height: calc(100% + 40px);
    background-color: #226D4B;
    border-radius: 8px;

    box-shadow: 121px -30px 115px rgba(0, 0, 0, .3);
    
    z-index: -1;
}
#contato .card-contato {
    border-radius: 30px;
    box-shadow: 121px -30px 115px rgba(0, 0, 0, .28);
}
#contato .card-contato-info {
    background-color: #F7F9F4;
    padding: 40px;
    height: 100%;
    border-radius: 30px 0 0 30px;
}
#contato .card-contato-info .card-contato-header {
    border-bottom: 1px solid #BA704A;
    margin-bottom: 20px;
}
#contato .card-contato-info .card-contato-header h2.section-subtitle {
    color: #B47F50;
    font-size: 18px;
    font-weight: 600;
}
#contato .card-contato-info .card-contato-header h1.section-title {
    color: #133626;
    font-family: 'Source Sans Pro', sans-serif;   
    font-size: 56px;
    font-weight: 600;
}

#contato .card-contato-info .card-contato-address {
    border-bottom: 1px solid #BA704A;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#contato .card-contato-info .card-contato-address .col-address {
    border-right: 1px solid #BA704A;
}

#contato .card-contato-info .card-contato-address h1.title {
    color: #B47F50;
    font-size: 14px;
    font-weight: 600;
}

#contato .card-contato-info .card-contato-address a {
    display: block;
    color: #5B5B59;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#contato .card-contato-info .card-contato-address a:hover {
    color: #226D4B;
}

#contato .card-contato-info .card-contato-map h1.title {
    color: #B47F50;
    font-size: 14px;
    font-weight: 600;
}

#contato .card-contato-info .card-contato-map .googlemaps {
    display: block;
    width: 100%;
    height: 0;

    border-radius: 10px;
    overflow: hidden;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#contato .card-contato-info .card-contato-map .googlemaps iframe {
    width: 100%;
    height: 100%;
}

#contato .card-contato-form {
    background-color: #226D4B;
    padding: 40px;
    border-radius: 0 30px 30px 0;
    
    height: 100%;
}

#contato .card-contato-form p.input-name {
    color: #E0E2DB;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#contato .card-contato-form input,
#contato .card-contato-form textarea {
    position: relative;
    display: block;

    width: 100%;
    height: 40px;
    
    background-color: #FFFFFF;
    border: 1px solid #CBCBCB;
    border-radius: 2px;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#contato .card-contato-form textarea {
    height: 110px;
    max-height: 110px;
    min-height: 40px;
}
#contato .card-contato-form input:hover,
#contato .card-contato-form textarea:hover {
    border-bottom-color: #B47F50;
    border-bottom-width: 4px;
}

#contato .card-contato-form input:focus,
#contato .card-contato-form textarea:focus {
    box-shadow: none;
    background-color: #FFFFFF;
    border-color: #133626;
    border-bottom-width: 4px;
}

#contato .card-contato-form button.send-contato {
    position: relative;

    width: 100%;
    height: 60px;

    background-color: #133626;
    border: none;
    
    color: #E0E2DB;
    font-size: 14px;
    font-weight: 600;

    box-shadow: 4px 4px 15px rgba(0, 0, 0, .25);

    z-index: 0;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contato .card-contato-form button.send-contato:hover {
    box-shadow: none;
}

#contato .card-contato-form button.send-contato::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;

    width: 100%;
    height: 0%;
    
    background-color: #B47F50;
    z-index: -1;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contato .card-contato-form button.send-contato:hover::before {
    top: unset;
    bottom: 0;
    height: 100%;
    transform-origin: top;
}




/* Footer */
footer {
    padding: 30px 0;
    background-color: #133626;
}

footer .logo {
    display: flex;
    align-items: end;

    width: 100%;
    max-width: 262px;
    height: auto;
}
footer .logo svg {
    width: 100%;
    height: 100%;
}

footer .site-map {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    list-style: none;
}

footer .site-map li {
    margin-right: 45px;
}
footer .site-map li:last-child{margin-right: 0;}

footer .site-map li a {
    display: block;
    
    color: #B47F50;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-decoration: none;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
footer .site-map li a:hover {
    color: #BA704A;
}

footer .base-footer {
    margin-top: 30px;
    padding: 30px 0 0 0;
    border-top: 1px solid #BA704A;
}

footer .base-footer p {
    color: #E0E2DB;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

footer .base-footer .wtek {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer .base-footer .wtek .logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
    width: 100%;
    max-width: 110px;
    height: auto;

    margin-left: 15px;

    text-decoration: none;
}
footer .base-footer .wtek .logo svg {
    fill: #E0E2DB;
    width: 100%;
    height: 100%;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
footer .base-footer .wtek .logo:hover svg {
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .5));
}
footer .base-footer .wtek .logo svg .w {
    fill: #E0E2DB;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
footer .base-footer .wtek .logo:hover svg .w {
    fill: #fedf00;
}




/* Utils */
.widget-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: block;
    width: 60px;
    height: 60px;
}
.widget-whatsapp img {
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;

    -o-object-position: right center;
    object-position: right center;
}
.tooltip-inner {
    background-color: #226D4B;
    border-radius: 0;
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #226D4B;
}



/* Responsivo */
@media (max-width: 992px) {
    /* Banner */
    #banner .swiperBanner .image img {
        width: 100%;
        height: 300px;
        min-height: unset;
        
        -o-object-fit: cover;
        object-fit: cover;

        -o-object-position: right center;
        object-position: right center;

        opacity: .2;

        margin-top: 50px;
    }

    #banner .swiperBanner .content {
        margin-top: 50px;
    }
    #banner .swiperBanner .content h1.title {
        font-size: 32px;
        line-height: 32px;

        text-align: center;
    }
    #banner .swiperBanner .content h1.title span {
        font-size: 32px;
    }
    #banner .swiperBanner .content .botao {
        margin-left: auto;
        margin-right: auto;
    }




    /* Servicos */
    #servicos {
        padding: 30px 0;
    }
    #servicos .section-title {
        font-size: 24px;
        text-align: center;
    }
    #servicos .section-title span {
        font-size: 24px;
    }
    #servicos p.description {
        font-size: 14px;
        text-align: center;
    }
    #servicos .card-servicos-header h1.title {
        margin: 15px 0;
    }
    #servicos .card-servicos .image {
        height: 350px;
    }
    #servicos .card-servicos .content {
        height: calc(100% - 350px);
    }




    /* Atuacao */
    #areas-atuacao {
        padding: 30px 0;
    }
    #areas-atuacao h1.section-title {
        font-size: 32px;
        text-align: center;
    }
    
    #areas-atuacao .card-atuacao {
        padding: 15px;
    }
    #areas-atuacao .card-atuacao .icon {
        width: 75px;
        height: 75px;
    }
    #areas-atuacao .card-atuacao h1.title {
        font-size: 18px;
    }




    /* Registros */
    #registros {
        padding: 30px 0;
    }
    #registros h1.section-title {
        font-size: 38px;
        margin-bottom: 25px;
    }
    #registros ul.registros ul.registros {
        justify-content: center;
    }
    #registros ul.registros li {
        font-size: 22px;
        padding: 0 15px;
    }
    #registros .col-associado {
        border: none;
    }
    #registros .col-associado h1.section-title {
        margin-top: 40px;
    }




    /* Sobre */
    #sobre {
        padding: 30px 0;
        background: #E0E2DB;
    }




    /* Contato */
    #contato {
        padding: 100px 0 50px;
    }
    #contato .card-contato-info .card-contato-header h1.section-title {
        font-size: 42px;
    }
    #contato .card-contato-info {
        border-radius: 30px 30px 0 0;
    }
    #contato .card-contato-info .card-contato-address .col-address {
        border: none;
        margin-bottom: 20px;
    }
    #contato .card-contato-form {
        border-radius: 30px;
        padding: 25px;
    }




    /* Footer */
    footer .logo {
        margin: auto;
    }
    footer .site-map {
        justify-content: center;
        flex-wrap: wrap;
        margin: 20px 0 0 0;
        padding: 0;
    }
    footer .base-footer p {
        text-align: center;
        width: 100%;
    }
    footer .base-footer .wtek {
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    footer .base-footer .wtek .logo {
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    footer .base-footer .wtek .logo:hover svg {
        transform: translateY(0);
    }
}