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

@font-face {
    font-family: 'Bookos';
    src: url('../fonts/bookos.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'BookosB';
    src: url('../fonts/bookosb.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
}

body{
    font-family: 'Bookos', sans-serif;
    font-weight: 400;
    margin: 0;
    overflow-x:hidden;
    color: #000;
}
  
@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }
}

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

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

.cta {
    font-family: "Montserrat", sans-serif;
    display: inline-block; /* garante que o tamanho seja só do texto */
    position: relative;    /* para o ::before se posicionar em relação ao link */
    text-decoration: none;
    color: #273782;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    align-items: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}
.cta:hover {
    opacity: 0.7;
}
a.cta .underline {
    border-bottom: 3px solid #99CC33;
    padding-bottom: 5px;
}
  
.padding-top-160{
    padding-top: 160px;
}

.text-primary {
    color: #273782;
}
.text-verde {
    color: #99CC33;
}
.bg-azul {
    background-color: #0D2256;
}

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: 32px;
}
.main-menu li a{
    font-size: 16px;
    color: #4A4A4A;
    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;
	font-family: 'BookosB';
}
.main-menu li a:hover::after,
.main-menu li.current-menu-item a::after{
    content: "";
    width: 45%;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: -10px;
	transform: translateX(-50%);
    background-color: #99CC33;
}
.wpml-custom-select {
    position: relative;
    cursor: pointer;
    width: 132px;
    user-select: none;
    border: 0;
    font-size: 14px;
    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: 135px 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;
    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: 130px;
    }
    #main {
        margin-top: 130px;
    }
    .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;
    }
	.container {
        padding-right: 18px;
        padding-left: 18px;
    }
}

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

.banner .descricao {
    position: relative;
    max-width: 550px;
    width: 100%;
    z-index: 99;
    transform: translateY(-165%);
}
.banner .descricao h2 p {
    color: #fff;
    font-size: 64px;
    line-height: 109%;
    font-family: 'Bookos', sans-serif;
    font-weight: 300;
    margin-bottom: 0;
}
.banner .descricao h2 p strong {
    font-weight: 800;
}
.swiper-pagination {
    position: relative;
    transform: translateY(-560%);
    max-width: 1220px;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    text-align: start;
}
.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: 44px;
    }
    .banner .descricao {
        transform: translateY(-150%);
    }
    .swiper-pagination {
        transform: translateY(-200%);
        text-align: center;
    }
}
/* 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.4) 7.61%, rgba(13, 34, 86, 0.8) 77.65%);
    position: absolute;
    top: 0;     
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.bannerinterno_title {
    color:#fff;
    font-size: 80px;
    line-height: 101%;
    font-weight: 300;
    font-family: 'Bookos', sans-serif;
}
.bannerinterno_paragrafo {
    color: #99CC33;
    font-size: 14px;
    letter-spacing: 0.67em;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 175%;
    padding:    8px 10px;
}
@media (max-width: 758px) {
    .bannerinterno {
        height: 414px;
    }
    .bannerinterno_title {
        font-size: 60px;
    }
    .bannerinterno_paragrafo {
        font-size: 13px;
    }
}

/* Home Styles */
.homeContent {
    margin: 120px 0;
}
.home-title {
    font-size: 80px;
    line-height: 90%;
    font-weight: 300;
    font-family: 'Bookos', sans-serif;
    color: #273782;
}
.home-title strong {
    font-weight: 800;
}
.home-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 143%;
    font-weight: 400;
    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 {
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 0.06em;
    font-weight: 400;
    line-height: 147%;
	font-family: "Montserrat", sans-serif;
}
.bold-verde strong {
	color:#99CC33;
}
.cardIcon .text-white:before {
    content: "";
    background: #99CC33;
    width: 1px;
    height: 100%;
    position: absolute;
    left: -13px;
    top: 0;
}

@media (max-width: 758px) {
    .homeContent {
        margin-top: 20px;
		margin-bottom:30px;
    }
    .cardIcon {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .home-title {
        font-size: 58px;
    }
    .home-subtitle {
        font-size: 16px;
        max-width: 80%;
    }
	.home .cardIcon .img-fluid{
	border-bottom: 1px solid #99CC33;
	padding-bottom: 15px;
}
	.cardIcon .text-white:before {display:none;}
}
/* Serviços Styles */
.servicos {
    margin: 60px 0;
}
.card,
.card-reverse {
    margin-bottom: 50px;
    border: 0;
}
.card::after{
    content: "";
    background-color: #0D2256;
    position: absolute;
    top: 0;
    left: 0;
    height: 556px;
    width: 70%;
    z-index: 0;
    border-radius: 29px;
}
.card-reverse::after {
    content: "";
    background-color: #0D2256;
    position: absolute;
    top: 0;
    right: 0;
    height: 556px;
    width: 70%;
    z-index: -9;
    border-radius: 29px;
}
.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%;
    padding-left: 100px;
    padding-right: 70px;
}
.card-reverse .card-text {
    padding-left: 70px;
    padding-right: 100px;
}
.card-text h3 {
    font-size: 25px;
    margin: 0 0 30px 0;
    letter-spacing: 0.14em;
    line-height: 127%;
    font-weight: 400;
    font-family: 'Bookos', sans-serif;
}
.card-image {
    height: 456px;
}
.card-image img {
    width: 624px;
    height: 456px;
    object-fit: cover;
    border-radius: 29px;
}
@media (max-width: 758px) {
    .servicos {
        margin-bottom: 0;
    }
    .card-text,
    .card-reverse .card-text {
        height: auto;
        padding: 35px 30px;
    }
.card-reverse .card-text{ padding: 35px 30px 0;}
    .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: #061843;
    margin-top: -200px;
    padding-bottom: 120px;
}
.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: 35px;
	letter-spacing:normal;
}
.sobre .card-text p {
    line-height: 175%;
    font-weight: 400;
    letter-spacing: 0.06em;
}
.card-border {
    border-radius: 29px;;
}
.sobre .card-image img{
    border-top-left-radius: 29px;
    border-bottom-left-radius: 29px;    
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sobre ul {
    list-style: disc;
    padding-left: 14px;
}
@media (max-width: 758px) {
    .sobre {
        margin-top: -30px;
		padding-bottom:0;
    }
    .sobre .card-image,
    .sobre .card-image img{
        height: 318px;
        border-top-left-radius: 29px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 29px;
        border-bottom-right-radius: 0;
    }
    .sobre .card-text {
        padding-top: 50px;
        padding-bottom: 50px;
    }
	.sobre .bg-azul { background-color:#fff;}
	.sobre .bg-azul .card-text {color:#1A1A1A !important;}
	.sobre .bg-azul .card-text h3,
	.sobre .bg-azul .cta {color:#273782 !important}
	.sobre .card-text {height:100%;}
	.padding-top-160 {
    	padding-top: 120px;
	}
}
/* 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: 30px;
    font-weight: 300;
    color: #273782;
    font-family: 'Bookos', sans-serif;
}
ul.enderecos_list {
    display: flex;
    flex-direction: row;
    gap: 100px;
}
.endTitle {
    font-weight: 800;
    line-height: 24px;
    color: #273782;
    font-size: 16px;
	font-family: 'Bookosb', sans-serif;

}
.endTexto{
    font-weight: 400;
    line-height: 24px;
	font-family: "Montserrat", sans-serif;
}

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



/* Footer Styles */
footer {
    background-color: #0D2256;
    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: 14px;
    letter-spacing: 0.03em;
    line-height: 93%;
}
@media (max-width: 758px) {
    footer {
        height: 0;
        border-top: 8px solid #99CC33;
    }
}