@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Arame';
	src: url('../fonts/arame.woff2') format('woff2'),
         url('../fonts/arame.woff') format('woff');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
/* Thin */
@font-face {
    font-family: 'ArameThin';
	src: url('../fonts/arame-thin.woff2') format('woff2'),
         url('../fonts/arame-thin.woff') format('woff');
    font-weight: 250; /* ou use "lighter" */
    font-style: normal;
	font-display: swap;
}
/* Thin */
@font-face {
    font-family: 'ArameBold';
    src: url('../fonts/arame-bold.woff2') format('woff2'),
         url('../fonts/arame-bold.woff') format('woff');
    font-weight: 700; /* ou use "bold" */
    font-style: normal;
	font-display: swap;
}

body{
    font-family: 'Arame', sans-serif;
    font-weight: 400;
    margin: 0;
    overflow-x:hidden;
    color: #000;
}
  
@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }
}
@media (max-width: 758px) {
    .container {
        padding-right: 18px;
    	padding-left: 18px;
    }
	.logoContent img {margin-left:-5px;}
}

::selection {
    background: #99CC33;  /* fundo verde */
    color: #273782;          /* texto azul */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta {
    display: inline-block;
    text-decoration: none;
    color: #273782;
    font-weight: 700;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}
.cta:hover {
    opacity: 0.7;
}
.padding-top-120{
    padding-top: 120px;
}

header {
    height: 130px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fff;
    z-index: 5040;
}
.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}
.main-menu li a{
    text-transform: uppercase;
    font-size: 16px;
    color: #4A4A4A;
    letter-spacing: 0.14em;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}
.main-menu li a:hover,
.main-menu li.current-menu-item a{
    color: #273782;
    font-weight: 700;
}
.main-menu li a:hover::after,
.main-menu li.current-menu-item a::after{
    content: "";
    width: 12px;
    height: 9px;
    position: absolute;
    left: 50%;
    bottom: -12px;
    background-image: url("data:image/svg+xml;utf8,<svg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 9L0 4.46039L4.33466 0L6.54545 2.16209L0 9Z' fill='%238EB530'/><path d='M4.09082 0L12.2726 8.18182L12.2726 4.09091L8.33958 0L4.09082 0Z' fill='%2399CC33'/></svg>");
    background-repeat: no-repeat;
    background-size: contain; /* ou cover, depende do que quiser */
    background-position: center;
}
.wpml-custom-select {
    position: relative;
    cursor: pointer;
    width: 132px;
    user-select: none;
    border: 0;
    font-size: 14px;
	font-weight:400;
    font-family: "Montserrat", sans-serif;
}
.wpml-custom-select .selected-language {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    padding: 6px 10px;
    background-color: #fff;
    position: relative;
}
.wpml-custom-select .language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 5px;
    background: #fff;
    z-index: 1000;
}
.wpml-custom-select .language-options li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
}
.wpml-custom-select .language-options li:hover {
    background-color: #f0f0f0;
}
.select-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    margin-left: 0;
}
/* Rotaciona a seta quando o dropdown estiver aberto */
.wpml-custom-select.open .select-arrow {
    transform: rotate(180deg);
}



 /* ============================
   * Menu Mobile Styles
   * ============================ */
.icon-menu {
    z-index: 9999;
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    width: 28px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    position: relative;
}
.icon-menu span {
    display: block;
    border-top: 3px solid #99CC33;
    border-bottom: 3px solid #99CC33;
    border-radius: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    height: 3px;
    width: 100%;
    position: absolute;
    right: 0;
}
.icon-menu span:first-child {
    top: 0;
}

.icon-menu span:nth-child(2), 
.icon-menu span:nth-child(3) {
    top: calc(50% - 2.5px);
    width: 80%;
}
.icon-menu span:nth-child(4) {
    bottom: -1px;
}
.icon-menu span:nth-child(4){
    width: 60%;
}
.navbar-toggler.active .icon-menu span:nth-child(2){
    transform: rotate(45deg);
}
.navbar-toggler.active .icon-menu span:nth-child(3) {
    transform: rotate(-45deg);
}
.navbar-toggler.active .icon-menu span:first-child,
.navbar-toggler.active .icon-menu span:nth-child(4) {
    width: 0;
    opacity: 0;
}
.mobile-navbar{
    background: #fff;
    transform: translateX(-768px);
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 5030;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 88px 25px 0 15px;
}
.menu-opened .mobile-navbar {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}
.menu-mobile .main-menu{
    display: block;
    font-size: 16px;
    color: #4A4A4A;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 48px;
}
.menu-mobile .main-menu li {
    border-bottom: 1px solid #B5B5B5;
}
.menu-mobile .main-menu li:last-child {
    border-bottom: none;
}
.mobile-navbar .copyright {
    margin-top: 50px;
    font-size: 11px;
    color: #363636;
    letter-spacing: 0.03em;
    line-height: 93%;
    font-family: "Montserrat", sans-serif;
}

#main {
    margin-top: 130px;
}

@media (max-width: 758px) {
    header {
        height: 85px;
    }
    #main {
        margin-top: 85px;
    }
    .wpml-custom-select {
        width: 100%;
    }
    .wpml-custom-select .selected-language{
        padding: 6px 0;
        justify-content: start;
    }
    .main-menu li a:hover::after, .main-menu li.current-menu-item a::after{
        display: none;
    }
}

/* Banner Styles */
.banner .swiper-slide {
    height: 608px;
    position: relative;
}
.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .descricao {
    position: absolute;
    top: 50%;
    left: 9%;
    max-width: 550px;
    width: 100%;
    z-index: 99;
    transform: translateY(-60%);
}
.banner .descricao h2 p {
    color: #fff;
    font-size: 45px;
    letter-spacing: 0.18em;
    line-height: 144%;
    font-family: 'ArameThin';
    font-weight: 250;
    margin-bottom: 0;
}
.banner .descricao h2 p strong {
    font-weight: 700;
	font-family: 'ArameBold';
}
.swiper-pagination {
    text-align: start;
    left: 9% !important;
    top: 75% !important;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    background-color: #fff;
    opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: #99CC33;
}

@media (max-width: 758px) {
    .banner .swiper-slide {
        height: 427px;
    }
    .banner .descricao h2 p{
        font-size: 34px;
    }
    .banner .descricao {
        width: 95%;
		left: 5%;
    }
    .swiper-pagination {
        text-align: center;
        left: 0% !important;
        top: inherit !important;
        bottom: 10% !important;
    }
}
/* Banner Páginas Internas Styles */
.bannerinterno {
    height: 640px;
}
.backgroundInterno {
    background-size: cover;
    background-position: center;
    height: 100%;
}
.overlay-bg {
    background: linear-gradient(263.74deg, rgba(39, 55, 130, 0) 7.61%, rgba(0, 8, 48, 0.72) 77.65%);
    position: absolute;
    top: 0;     
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.bannerinterno_title {
    color:#fff;
    font-size: 64px;
    letter-spacing: 0.18em;
    line-height: 101%;
    font-weight: 250;
    font-family: 'ArameThin';
}
.bannerinterno_paragrafo {
    color: #273782;
    font-size: 14px;
    letter-spacing: 0.67em;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    background-color: #99CC33;
    line-height: 175%;
    padding:    8px 10px;
    margin-top: 20px;
}
@media (max-width: 758px) {
    .bannerinterno {
        height: 414px;
    }
    .bannerinterno_title {
        font-size: 45px;
        letter-spacing: 0.31em;
    }
    .bannerinterno_paragrafo {
        font-size: 12px;
        letter-spacing: 0.17em;
    }
}

/* Home Styles */
.homeContent {
    margin: 120px 0;
}
.home-title {
    font-size: 64px;
    letter-spacing: 0.14em;
    line-height: 127%;
    font-weight: 250;
    font-family: 'ArameThin';
    color: #273782;
}
.home-title strong {
    font-weight: 700;
	font-family: 'ArameBold';
}
.home-subtitle {
    font-family: "Montserrat", sans-serif;
	  font-weight: 400;
	  font-style: normal;
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 143%;
    color: #202020;
    margin-top: 25px;
    max-width: 50%;
}
.cardIcon {
    font-family: "Montserrat", sans-serif;
    border: 1.5px solid #C5C5C5;
    border-radius: 26px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cardIcon p {
	font-family: "Montserrat", sans-serif;
	  font-weight: 400;
    margin-bottom: 0;
    font-size: 14px;
    color: #202020;
    letter-spacing: 0.06em;
    line-height: 147%;
}
@media (max-width: 758px) {
    .homeContent {
        margin-top: 50px;
		margin-bottom: 50px;
    }
    .cardIcon {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .home-title {
        font-size: 45px;
    }
    .home-subtitle {
        font-size: 16px;
        max-width: 80%;
    }
}
/* Serviços Styles */
.servicos {
    margin: 60px 0;
}
.card,
.card-reverse {
    margin-bottom: 50px;
    border: 0;
}
.card::after{
    content: "";
    background-color: #EDEDED;
    position: absolute;
    top: 0;
    left: 0;
    height: 556px;
    width: 70%;
    z-index: 0;
}
.card-reverse::after {
    content: "";
    background-color: #EDEDED;
    position: absolute;
    top: 0;
    right: 0;
    height: 556px;
    width: 70%;
    z-index: -9;
}
.card-text {
    height: 556px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 154%;
    color: #161616;
    padding-left: 100px;
    padding-right: 70px;
}
.card-reverse .card-text {
    padding-left: 70px;
    padding-right: 100px;
}
.card-text h3 {
    color: #273782;
    font-size: 25px;
    margin: 0 0 30px 0;
    letter-spacing: 0.14em;
    line-height: 127%;
    font-weight: 400;
    font-family: 'Arame';
}
.card-image {
    height: 456px;
}
.card-image img {
    width: 624px;
    height: 456px;
    object-fit: cover;
}
@media (max-width: 758px) {
    .servicos {
        margin-bottom: 0;
    }
    .card-text,
    .card-reverse .card-text {
        height: auto;
        padding: 35px 30px;
    }
    .card-reverse {
        margin-bottom: 80px;
    }
    .card-image,
    .card-image img{
        height: 215px;
    }
    .card-reverse::after {
        width: 100%;
        height: 90%;
        top: 100px;
    }
}

/* Sobre Styles */
.sobre {
    background: #273782;
    margin-top: -200px;
    padding-bottom: 160px;
}
.sobre .card-text,
.sobre .card-image,
.sobre .card-image img{
    height: 476px;
}
.sobre .card-text {
    padding-left: 50px;
    padding-right: 50px;
}
.sobre .card-text h3 {
    color: #99CC33;
    font-size: 20px;
    letter-spacing: 0.63em;
	font-family: 'ArameBold';
	font-weight:700;
}
.sobre .card-text p {
    line-height: 175%;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 0.06em;
	margin-bottom: 0;
}
.sobre .card-text .cta {padding-top:30px;}
.sobre ul {
    list-style: disc;
    padding-left: 14px;
}
@media (max-width: 758px) {
    .sobre {
        margin-top: -80px;
        padding-bottom: 50px;
    }
    .sobre .card-image,
    .sobre .card-image img{
        height: 318px;
    }
	.sobre .card-text {
		height:530px;
	}
    .sobre .card-text {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
/* Contact Styles */
.contato {
    margin: 120px 0;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.04em;
    color: #202020;
    font-weight: 400;
}
.contatotitle{
    font-size: 25px;
    letter-spacing: 0.14em;
    line-height: 127%;
    font-weight: 400;
    color: #273782;
    text-transform: uppercase;
    font-family: 'Arame';
}
ul.enderecos_list {
    display: flex;
    flex-direction: row;
    gap: 100px;
}
.endTitle {
    font-weight: 800;
    line-height: 24px;
    color: #273782;
    font-size: 16px;
}
.endTexto{
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 758px) {
    .contato {
        margin: 40px 20px;
    }
    ul.enderecos_list {
        flex-wrap: wrap;
        gap: 20px;
    }
}



/* Footer Styles */
footer {
    background-color: #090E27;
    border-top: 3px solid #99CC33;
    height: 300px;
    font-family: "Montserrat", sans-serif;
}
.content-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 17px;
}
.content-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.copyright {
    font-size: 12px;
	font-family: "Montserrat", sans-serif;
	  font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 93%;
}
.linkwhats {text-decoration:none;color: #202020;}
@media (max-width: 758px) {
    footer {
        height: 0;
        border-top: 8px solid #99CC33;
    }
}