body, html {
    overflow-x: hidden;
}

.container-fluid {
	padding-left: 32px;
	padding-right: 32px;
}

html {
	scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
body {
	font-family: "Ubuntu", sans-serif !important;
}


.barra-azul-1 {
    background: #0033FF;
    border-radius: 0px 60px 60px 0px;
    width: 100%;
    height: 570px;
}

.barra-azul-2 {
    background: #0033FF;
    border-radius: 60px 0px 0px 60px;
    width: 100%;
    height: 570px;
	padding-top: 50px;
}

.btn-0 {
    position: absolute;
    bottom: 40px;
    right: 50px;
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: -0.011em;
	text-decoration-line: underline;
	color: #FFFFFF;
}

.breve-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 60px;
    object-position: bottom;
}

.mapa iframe {
    border: 0;
    height: 90px;
    width: 100%;
    filter: grayscale(1);
}

.titulo-0 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 63px;
    line-height: 85%;
    letter-spacing: -0.001em;
    color: #000000;
}

.texto-0 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    leading-trim: both;
    text-edge: cap;
    color: #6B6B6B;
}

.btn-1 {
    background-color: #090909;
    padding: 15px 25px;
    border-radius: 74px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #090909;
}
.btn-1 i {
    font-size: 24px;
    color: #FFFFFF;
}
.btn-1:hover{
	box-shadow: 0px 16px 30px -13px rgba(31, 31, 31, 0.85);
}

.btn-2 {
    background-color: #0033FF;
    padding: 15px 25px;
    border-radius: 74px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-2 i {
    font-size: 24px;
    color: #FFFFFF;
}
.btn-2:hover {
	box-shadow: 0px 16px 30px -13px rgba(31, 31, 31, 0.85);;
}


.btn-4 {
    background-color: transparent;
    padding: 15px 25px;
    border-radius: 74px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #DEDEDE;
}
.btn-4:hover{
	background-color: #fff;
	color: #0033FF;
	box-shadow: 0px 16px 30px -13px rgba(31, 31, 31, 0.85);
}

.btn-3 {
    background-color: transparent;
    padding: 15px 25px;
    border-radius: 74px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-3:hover {
	background-color: rgba(231, 236, 255, 0.25);
}


.btn-5 {
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 74px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #0033FF;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #0033FF;
}
.btn-5:hover{
	background-color: #fff;
	color: #0033FF;
	box-shadow: 0px 16px 30px -13px rgba(31, 31, 31, 0.85);
}



.secao-breve {
	min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.social {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;
}

.social li a {
    font-size: 25px;
 	color: #FFFFFF;
	position: relative;
	z-index: 2;
}

.barra-azul-2 span {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    letter-spacing: -0.011em;
    color: #FFFFFF;
    transform: rotate(-90deg);
	margin-right: 150px;
    width: 100%;
	position: relative;
	z-index: 1 !important;
}

.texto-01 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: -0.02em;
    color: #6B6B6B;
}

.modal-sm {
   --bs-modal-width: 370px;
}

b, strong {
    font-weight: 900;
}


.titulo-03 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 123%;
    letter-spacing: -0.02em;
    color: #0033FF;
}

/* Animação de entrada pela direita */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Aplicar ao modal */
.modal.modal-slide-right .modal-dialog {
  animation: slideInRight 0.4s ease-out;
  margin-left: auto;
  margin-right: 0;
}

.teste-cache h1 {
	color: #00f;
	font-size: 220px;
	background-color: #AF5138;
}
.teste-cache h2 {
	color: #0f0;
	font-size: 100px;
	background-color: #AF5138;
}

.hero-home {
	position: relative;
	width: 100%;
	height: 850px;
}

#video-home {
	width: 100%;
    height: 100%;
    filter: grayscale(1) brightness(0.6);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hero-home .container {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.titulo-1 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 111px;
    line-height: 87%;
    color: #FFFFFF;
}


.texto-1 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
}

.home-2 {
	padding-bottom: 90px;
	padding-top: 90px;
}

.titulo-2 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.041em;
    color: #000000;
}

.titulo-2 b {
    background-color: #0033FF;
    color: #fff;
    padding: 2px 15px;
}


.texto-2 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #7D839F;
}

.box-number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px;
    gap: 11px;
    width: 100%;
    height: 177px;
    background: #F6F6F6;
    border: 1px solid #ECECEC;
    box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, 0.45);
    border-radius: 36px;
}

.box-number span {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    line-height: 110%;
    color: #000000;
}

.box-number p {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.011em;
    color: #888888;
    margin-bottom: 0;
}

.home-3 {
	padding-bottom: 130px;
	padding-top: 60px;
}


.box-servicos {
    display: block;
    height: 680px;
    border-radius: 36px;
    padding: 20px;
    position: relative;
    background-position: center center;
    filter: grayscale(1);
	background-repeat: no-repeat;
	background-size: cover;
}

.box-servicos:hover {
    filter: grayscale(0);
}

.box-servicos::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 36px;
    z-index: 1;
}

.box-servicos div {
    position: absolute;
	z-index: 2;
    bottom: 20px;
    left: 20px;
    filter: brightness(10);
}

.box-servicos span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FFFFFF;
	display: block;
}

.box-servicos h3 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 107%;
    color: #FFFFFF;
	transform: translateY(90px);
    transition: transform 0.6s ease;
}

.box-servicos p {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #FFFFFF;
 	opacity: 0;
    transition: opacity 0.7s ease;
}

.box-servicos:hover h3 {
    transform: translateY(-10px);
}

.box-servicos:hover p {
    opacity: 1;
}
.box-servicos p u {
    font-size: 16px;
}



.owl-banner.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #d9d9d9;
    border-radius: 100%;
}
.owl-banner.owl-theme .owl-dots .owl-dot.active span, .owl-banner.owl-theme .owl-dots .owl-dot:hover span {
	background: #0033FF;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.owl-banner.owl-theme .owl-nav [class*=owl-] {
    font-size: 35px;
    background: transparent;
    opacity: 0.5;
}
.owl-banner.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #fff;
}
.owl-banner .owl-dots {
    bottom: -50px;
}
.owl-banner.owl-carousel .owl-stage {
    padding-left: 0 !important;
}





.box-blog-1 {
    display: block;
    height: 290px;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    background-position: center center;
    filter: grayscale(1);
	background-repeat: no-repeat;
	background-size: cover;
}
.box-blog-1:hover {
    filter: grayscale(0);
}
.box-blog-1::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
    z-index: 1;
}
.box-blog-1 div {
    position: absolute;
	z-index: 2;
    bottom: 20px;
    left: 20px;
    filter: brightness(10);
	width: 45%;
}
.box-blog-1 span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FFFFFF;
	display: block;
}
.box-blog-1 i {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
}
.box-blog-1 h3 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 107%;
    color: #FFFFFF;
	transform: translateY(20px);
    transition: transform 0.6s ease;
}
.box-blog-1 p {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #FFFFFF;
 	opacity: 0;
    transition: opacity 0.7s ease;
}
.box-blog-1:hover h3 {
    transform: translateY(-10px);
}
.box-blog-1:hover p {
    opacity: 1;
}
.box-blog-1 p u {
    font-size: 16px;
}


.home-4 {
	padding-bottom: 60px;
	padding-top: 60px;
}

.box-blog-cta {
    background: #F6F6F6;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    height: 100%;
}

.box-blog-cta h3 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #0033FF;
}

.box-blog-cta p {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #000000;
}

.box-blog-cta div {
    width: 420px;
}


.home-5 {
	padding-bottom: 120px;
	padding-top: 60px;
}
.box-resultados {
  display: block;
  height: 415px;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.box-resultados::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: grayscale(1);
  z-index: 0;
}
.box-resultados::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 16px;
  z-index: 1;
}
.box-resultados div {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: inherit;
}
.box-resultados h3 span {
    background-color: #0033FF;
    color: #fff;
    padding: 2px;
}
.box-resultados h3 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 107%;
    color: #FFFFFF;
	transform: translateY(60px);
    transition: transform 0.6s ease;
	text-align: center;
}
.box-resultados p {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #FFFFFF;
 	opacity: 0;
    transition: opacity 0.7s ease;
	text-align: center;
}
.box-resultados:hover h3 {
    transform: translateY(-10px);
}
.box-resultados:hover p {
    opacity: 1;
}
.box-resultados u {
    font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	display: block;
	letter-spacing: -0.011em;
	color: #A1A1A1;
	text-decoration: none;
}

.texto-modal-1 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #000000;
}

.titulo-modal-1 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 107%;
    color: #000000;
}

.foto-full {
	filter: grayscale(1);
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    height: 590px;
    object-fit: cover;
	margin: auto;
	width: 100%;
}

.foto-investidor {
    filter: grayscale(1);
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    height: 590px;
    object-fit: cover;
}

.modal-xl {
    --bs-modal-width: 1240px;
}

.numeros_caixas_modal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
}

.box_numero_modal {
    background: #F6F6F6;
    border: 1px solid #E3E3E3;
    box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, 0.45);
    border-radius: 24px;
    padding: 20px;
	flex-shrink: 0;
	min-width: 240px;
}
.box_numero_modal p {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #888888;
	margin-bottom: 0px;
}
.box_numero_modal span {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 110%;
    color: #0033FF;
	display: block;
}
.box_numero_modal small {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #888888;
    display: block;
}
.box_numero_modal i {
    font-family: 'Ubuntu';
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #888888;
    display: block;
}

.redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.redes li {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.011em;
    color: #6B6B6B;
}

.redes a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6C6C6C;
    font-size: 20px;
    color: #fff;
    border-radius: 100%;
}

.navbar-brand img {
    height: 50px;
}

.principal li a {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.04em;
    color: #000000;
	padding: 8px 16px !important;
    border-radius: 86px;
}

.principal li a:hover {
    background-color: #D2DBFF99;
}

.principal {
    gap: 20px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .current_page_item > a  {
    color: #fff !important;
    background-color: #0033FF !important;
}



.mapa_f iframe {
    border: 0;
    width: 100%;
    height: 280px;
    border-radius: 16px;
}

.texto-foot {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #6B6B6B;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}


.texto-foot-2 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #6B6B6B;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}


.mail-foot {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    color: #0033FF;
    padding-bottom: 15px;
    border-bottom: 2px solid #EDEDED;
    display: block;
    width: max-content;
    margin-bottom: 20px;
}

.texto-foot b {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    color: #6B6B6B;
}

.menu_inst li a {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #6B6B6B;
}

.menu_inst  {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 0px;
    list-style: none;
    margin-bottom: 0px;
}

#menu_mob_abrir {
	display: none;
	position: absolute;
    z-index: 999999999;
    top: 30px;
    left: 30px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 35px;
    padding: 0px;
}

#menu_mobile {
    position: fixed;
    z-index: 9999999999;
    width: 100%;
    background-color: #0033FF;
    height: 100vh;
	padding: 18px;
}

#menu_mob_fechar {
	background-color: transparent;
    border: none;
    color: #fff;
    font-size: 35px;
    padding: 0px;
}

#menu_mobile div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}

.numbers-white {
    margin-bottom: 0px;
}

.numbers-white span {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    line-height: 110%;
    display: block;
    letter-spacing: -0.041em;
    color: #FFFFFF;
}

.numbers-white p {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.texto-3 {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #3D3D3D;
}

.hero-home.servicos-v {
	height: 530px;
}

.foto-full.esquerda-foto {
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
	border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.serv_menu_faixa {
    background-color: #0033FF;
    position: fixed;
    top: 76px;
    z-index: 999;
    width: 100%;
}

.serv_menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.serv_menu li a {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 107%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    padding: 12px 30px;
    display: block;
}

.serv_menu li a:hover {
    background-color: #000;
}

.serv_menu li a:active, .serv_menu li a.ativo, .serv_menu li a:focus {
    background-color: #000;
    color: #fff;
}

header {
    position: fixed;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(37, 57, 83, 0.2);
	height: 76px;
}

@media (max-width: 767px) {
	
.container-fluid {
	padding-left: 16px;
	padding-right: 16px;
}
	
.serv_menu_faixa {
		display: none;
}	
	
.hero-home.servicos-v {
    height: 420px;
}	
	
.foto-full.esquerda-foto {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}	
	
.texto-3 {
    font-size: 14px;
}	
	
.numbers-white {
    margin-bottom: 30px;
    text-align: center;
}
	
.principal li a {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.04em;
    color: #fff;
    padding: 3px 26px !important;
    border-radius: 86px;
    width: max-content;
}
	
.principal li a:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
	
.navbar-nav .dropdown-menu {
    position: relative !important;
	transform: none !important;
}
	
.dropdown-menu {
    display: block;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 20px;
}
	
.dropdown-menu li a {
    font-weight: 500 !important;
	margin-bottom: 10px;
}
	
.dropdown-menu li a::before {
    content: '•';
    margin-right: 8px; /* espaço entre o ponto e o texto */
    color: inherit; /* ou escolha uma cor */
}
	
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
    background-color: #0033FF;
    border: 1px solid #fff;
}
	
#menu_mob_abrir {
	display: block;
}	
	
.titulo-1 {
    font-size: 68px;
    line-height: 87%;
}
	
.texto-1 {
    font-size: 16px;
    line-height: 120%;
}
	
.hero-home {
    height: 650px;
}
.hero-home.sobre-h{
    height: 950px;
}
	
.titulo-2 {
    font-size: 48px;
    line-height: 110%;
}
	
.titulo-2 b {
    padding: 2px 8px;
}
	
.texto-2 {
    font-size: 12px;
    line-height: 150%;
}
	
.box-number span {
    font-size: 36px;
    line-height: 110%;
}
	
.box-number {
    padding: 30px;
}
	
.box-servicos {
    height: 600px;
}
	
.box-blog-1 div {
    width: 90%;
}
	
.box-blog-cta div {
    width: 100%;
}
	
.box-blog-cta {
    padding: 70px 30px;
    margin-top: 25px;
}	
	
.r_footer li:first-child {
    width: 100%;
    text-align: left;
}
	
.mapa_f iframe {
    border: 0;
    width: 100%;
    height: 210px;
    border-radius: 16px;
}
	
.mail-foot {
    font-size: 28px;
}
	
.foto-investidor {
    height: 290px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 25px;
}	
	

.foto-full {
    height: 390px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 25px;
}

	
.box_numero_modal span {
    font-size: 20px;
    line-height: 110%;
	margin-bottom: 10px;
}
	
.box_numero_modal p {
	font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
}
	
.box_numero_modal small {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
}
	
.box_numero_modal {
    border-radius: 14px;
    padding: 14px;
    flex-shrink: 0;
    min-width: auto;
    width: 45%;
}
	
.owl-banner.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: visible;
}	
	
	
.logo_breve {
	margin: auto;
	width: 140px;
}
.titulo-0 {
    font-size: 36px;
    line-height: 85%;
}	
.breve-img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 34px;
    object-position: bottom;
}
	
.btn-0 {
    position: absolute;
    bottom: 5px;
    right: 0;
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.011em;
    text-decoration-line: underline;
    color: #FFFFFF;
}	
	
.redes_mob {
    padding: 15px 25px;
    border-radius: 74px;
    border: 1px solid #DADADA;
	display: flex;
	justify-content: center;
	align-items: center;
}
	
.redes_mob span {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #6B6B6B;
}
	
.social li a {
    font-size: 20px;
    color: #000;
    position: relative;
    z-index: 2;
}
	
.social {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
}	
	
.sobre-2 {
    padding-top: 45px;
}	
	
	
}


