/* Default
** ----------------------------------------------- */
:root {
  --primary-color: #001a70;
  --secondary-color: #000;
}

.default {
  padding: 60px 0;
}

.space-bottom {
  margin-bottom: 30px;
}

.space-top {
  margin-top: 30px;
}

.row-gap {
  gap: 30px 0;
}

.bg-darker {
  background-color: var(--primary-color);
}

main {
  overflow: hidden;
}

/* Default
** ----------------------------------------------- */
p,
ul li,
ol li {
  font-size: 16px;
  font-weight: 400;
  color: #303030;
}

body {
  color: #333;
  background: #f6f6f6;
  font-family: "Roboto Slab";
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

a:hover,
a:focus {
  color: #444444;
  text-decoration: none;
  outline: 0;
}

a:hover,
a:focus {
  color: var(--primary-color);
}

/* Topo
** ----------------------------------------------- */
.topo {
  background-color: var(--primary-color);
}

.topo .topo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topo .logo {
  width: 160px;
  padding: 0;
}

/* Menu
** ----------------------------------------------- */
.topo .menu li {
  display: inline-block;
  position: relative;
}

.topo .menu li:hover > a,
.topo .menu a.menu-ativo {
  color: white;
  background: var(--primary-color);
  border-radius: 2px;
  border-bottom: 1px solid white;
  transition: all 0.4s;
}

.topo .menu li a {
  display: block;
  transition: all 0.4s;
  padding: 12px 15px;
  text-decoration: none;
  margin: 0 5px;
  color: white;
}

.topo .menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topo .menu ul li:hover > ul {
  display: inline-grid;
  height: 300px;
}

.topo .menu ul ul {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10;
  width: 250px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
}

.topo .menu ul ul li {
  width: auto;
}

.topo .menu ul ul li a {
  display: block;
  padding: 10px 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: var(--secondary-color);
}

.topo .menu ul ul li a:hover {
  color: white;
  background-color: #181818;
  border-radius: 0px;
}

/* Menu Fixo Lateral
** ----------------------------------------------- */
.menu-lateral {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.menu-lateral-conteudo {
  position: fixed;
  left: -315px;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: white;
  border-right: 1px solid #ccc;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 2;
  transition: all 0.3s ease 0s;
}

.menu-lateral-visivel .menu-lateral-conteudo {
  left: 0;
}

.menu-lateral-conteudo ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-lateral-conteudo li {
  border-top: 1px solid #eee;
}

.menu-lateral-conteudo ul ul {
  margin-left: 15px;
}

.menu-lateral-conteudo a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
}

.menu-lateral-conteudo a:hover {
  color: white;
  background-color: #72b5da;
}

.menu-lateral-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* WhatsApp
** ----------------------------------------------- */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  z-index: 100;
  right: 35px;
}

.whatsapp-icon i {
  font-size: 30px;
  color: white;
}

.whatsapp-icon a {
  color: white;
  background: #24cc63;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 60px;
  width: 60px;
}

.whatsapp-icon a:hover {
  text-decoration: none;
  background: #4ed882;
  transition: 0.3s all;
}

/* Conteudo
** ----------------------------------------------- */
.informacoes-link {
  margin: 15px;
  display: block;
  text-decoration: none;
}

.informacoes-link:hover {
  color: #72b5da;
}

.informacoes-link img {
  border: 1px solid #ccc;
  width: 100%;
  display: block;
}

/* Accordion
** ----------------------------------------------- */
.accordion-titulo {
  cursor: pointer;
  background: var(--primary-color);
  border-radius: 2px;
  padding: 10px;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 16px;
}

.accordion-conteudo {
  display: none;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-top: 5px;
  padding: 15px;
}

/* Footer
** ----------------------------------------------- */
.footer {
  color: white;
  background: var(--primary-color);
  padding: 60px 0px;
}

.footer h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 2px 2px 7px var(--secondary-color);
  font-size: 20px;
}

.footer span {
  color: #2c638d;
}

.footer h3 {
  color: #20997d;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: 2px 2px 7px #212121;
  margin-bottom: 30px;
}

.footer ul {
  padding: 0;
}

.footer ul li {
  display: inherit;
}

.footer ul li a {
  color: white;
  font-size: 14px;
  line-height: 1.8;
}

.footer ul li a:hover {
  color: #2c638d;
}

.footer img {
  margin: 0 5px;
}

.footer a,
.footer p {
  color: white;
  font-size: 14px;
}

.footer a:hover {
  color: #2c638d;
  transition: 0.4s all;
  text-decoration: none;
}

.footer .redes-sociais-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .redes-sociais-footer a {
  color: white;
  font-size: 26px;
}

.footer .redes-sociais-footer a:hover {
  color: var(--primary-color);
  transition: 0.4s all;
}

.footer .iframe iframe {
  width: 100%;
  height: 162px;
}

/* Créditos
** ----------------------------------------------- */
.creditos {
  padding: 15px 0;
}

.creditos-box {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creditos .creditos-logo {
  width: 80px;
}

img.logo-focuspublicidade {
  width: 90px;
}

.creditos .creditos-link {
  display: flex;
  align-items: center;
}

.creditos .creditos-link a {
  margin-left: 10px;
}

.creditos-text a {
  font-size: 12px;
}

.creditos-text strong {
  font-weight: 500;
}

/* Faixa PG
** ----------------------------------------------- */
.faixa-pgs {
  background: var(--primary-color);
  padding: 10px;
  border-bottom: 0.2px solid white;
}

.faixa-pgs h1,
.faixa-pgs h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
  padding: 5px 0;
  color: white;
  text-shadow: 2px 2px 7px #353535;
}

/* Breadcrumb
** ----------------------------------------------- */
div#breadcrumb {
  text-align: center;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
  color: white;
}

div#breadcrumb > a:hover,
.bread > a:hover {
  text-decoration: none;
  color: var(--secondary-color);
  transition: 0.3s all;
}

.breadcrumb i {
  padding: 0 5px;
}

.breadcrumb a {
  color: white;
}

.breadcrumb a:hover {
  text-decoration: none;
  color: white;
}

span.breadcrumb-separador {
  color: white;
}

.bread {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.faixa-pgs .row {
  display: flex;
  align-items: center;
}

/* 
/* Politica de Privacidade
** ----------------------------------------------- */
.politica-de-privacidade {
  padding: 60px 0px;
}

.politica-de-privacidade h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.politica-de-privacidade p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 15px;
  line-height: 1.65;
}

.politica-de-privacidade h3 {
  margin-top: 26px;
  font-size: 23px;
}

.politica-de-privacidade ul li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--secondary-color);
}

/* 
/* Página de erro 404
** ----------------------------------------------- */
.erro-404 {
  padding: 60px 0px;
}

.erro-404 h2 {
  font-size: 20px;
}

.erro-404 h3 {
  font-weight: 400;
  font-size: 20px;
}

.erro-404 p {
  font-size: 25px;
  margin-top: 17px;
}

/* Mapa do Site
** ----------------------------------------------- */
.mapa-site {
  padding: 54px 0px;
}

.mapa-site h2 {
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 500;
}

.mapa-site h3 {
  margin-bottom: 13px;
  margin-top: 24px;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-color);
}

.mapa-site ul li {
  font-size: 16px;
  line-height: 1.45;
  list-style: none;
}

.mapa-site ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s all;
}

/* Página de contato
** ----------------------------------------------- */
.contato-full {
  padding: 60px 0;
  background: #f6f6f6;
}

.contato-full a {
  color: var(--secondary-color);
}

.contato-full a:hover {
  color: #df3a2a;
  text-decoration: none;
}

.contato-full h2 {
  font-weight: 400;
  font-size: 20px;
  color: var(--secondary-color);
  border-bottom: 0.5px solid rgb(20 68 96 / 40%);
  padding: 5px 0;
  margin-bottom: 25px;
}

hr.adjust-hr {
  margin: 13px 0;
  border-top: 0.5px solid #929292;
}

.iframe iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.contato-espace {
  padding: 55px 0;
}

/* Botboox (pop-up de formulários)
** ----------------------------------------------- */
.bootbox-body h3 {
  font-size: 20px;
  text-align: center;
  color: #28a745;
}

button.btn.btn-primary.bootbox-accept:hover,
button.btn.btn-primary.bootbox-accept:active,
button.btn.btn-primary.bootbox-accept:focus {
  background: #28a745;
  transition: 0.3s all;
}

/* SEO
** ----------------------------------------------- */
.conteudo-seo {
  padding: 60px 0px;
  overflow: hidden;
}

.conteudo-informacoes {
  padding: 56px 0px;
}

.conteudo-informacoes a {
  text-decoration: none;
  transition: 0.4s all;
}

.conteudo-informacoes a:hover {
  text-decoration: none;
  transform: translateY(-10px);
}

.conteudo-informacoes a:hover h4 {
  color: var(--primary-color);
  transition: 0.4s;
}

.conteudo-informacoes h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin: 10px 0px 0px 0px;
  padding: 10px;
  font-size: 14px;
}

.conteudo-informacoes img {
  border-radius: 19px;
}

.formulario-seo {
  padding: 64px 0px;
  min-height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
}

.formulario-seo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(template/imagens/banner/1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.formulario-seo h1 {
  font-size: 40px;
  color: white;
  font-weight: 700;
  position: relative;
}

.formulario-seo h1::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  width: calc(100% - 80%);
  height: 5px;
  border-radius: 2px;
}

.scroll-to-content {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 100px;
}

.scroll-to-content i {
  animation: arrowDown 2s infinite;
  color: white;
  font-size: 30px;
}

.scroll-to-content a:hover i {
  color: var(--primary-color);
  transition: 0.3s all;
}

.texto-seo p {
  font-size: 15px;
  text-align: justify;
}

.texto-seo h2,
.texto-seo h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-color);
}

.texto-seo ul li {
  font-size: 16px;
}

.multipla-imagens-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.multipla-imagens-seo img {
  border: 1px solid #ddd;
  width: 200px;
}

/* BreadCrumb Seo
** ----------------------------------------------- */
.breadcrump-seo {
  margin-bottom: 24px;
}

.breadcrump-seo #breadcrumb {
  text-shadow: none;
}

.breadcrump-seo #breadcrumb a {
  color: var(--secondary-color);
  font-size: 14px;
}

.breadcrump-seo #breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: none !important;
}

.breadcrump-seo #breadcrumb i {
  color: var(--primary-color);
  font-size: 16px;
}

.breadcrump-seo #breadcrumb span.page-active {
  color: var(--primary-color);
}

/* Mais visitados
** ----------------------------------------------- */
section.mais-visitados {
  padding: 32px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

section.mais-visitados h3 {
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 700;
}

section.mais-visitados .swiper-button-next,
section.mais-visitados .swiper-button-prev {
  color: var(--secondary-color);
  top: var(--swiper-navigation-top-offset, 55%);
}

.box-mais-visitado {
  text-align: center;
  width: 200px;
  margin: 0 auto;
  margin-top: 32px;
}

.box-mais-visitado h6 {
  margin-top: 16px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

.box-mais-visitado img {
  height: 200px;
  border-radius: 8px;
}

.box-mais-visitado a:hover {
  text-decoration: none;
}

.box-mais-visitado a:hover h6 {
  color: var(--secondary-color);
  transition: 0.3s all;
}

/* Regiões
** ----------------------------------------------- */
.regioes h3 {
  margin-top: 56px;
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 600;
}

nav.regioes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

nav.regioes a {
  background: var(--primary-color);
  color: white;
  font-size: 16px;
  width: 19.42%;
  padding: 15px 0px;
  text-align: center;
  border-radius: 12px;
}

nav.regioes a:hover,
nav.regioes a:focus {
  text-decoration: none;
  background: var(--secondary-color);
  transition: 0.3s all;
}

div#RegioesBrModal p,
div#RegioesSpModal p {
  color: var(--secondary-color);
  font-size: 15px;
}

div#RegioesBrModal h5.modal-title,
div#RegioesSpModal h5.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Faixa Informações
** ----------------------------------------------- */
.faixa-informacoes {
  background: var(--primary-color);
  padding: 32px 0px;
  position: relative;
}

.faixa-informacoes::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1000vw;
  height: 100%;
  background-color: var(--primary-color);
  left: calc(-100vw);
  z-index: -1;
}

.faixa-informacoes h2 {
  color: white;
  text-align: right;
  font-size: 36px;
  margin: 0;
}

.faixa-informacoes .btn-whatsapp {
  text-align: left;
}

.faixa-informacoes .btn-whatsapp a {
  background: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
}

.faixa-informacoes .btn-whatsapp a:hover {
  text-decoration: none;
  background: #24cc63;
  transition: 0.3s all;
  color: white;
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais {
  margin-top: 40px;
  font-size: 13px;
}

/* Página Inicial
** ----------------------------------------------- */

.form-container {
  background: linear-gradient(180deg, #0066cc 0%, #0099ff 100%);
  border-radius: 20px;
  padding: 10px 16px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.form-control {
  border: none;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}
.form-container h1.form-title {
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.toggle-container {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  padding: 5px;
  margin-bottom: 25px;
  flex-direction: row;
  align-items: center;
}
.toggle-btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.toggle-btn.active {
  background: rgba(0, 0, 0, 0.5);
}
.form-control::placeholder {
  color: #999;
}
.terms-container {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}
.terms-container input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.terms-text {
  color: white;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 25px;
  background: #005b90;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #022e47;
  transform: translateY(-2px);
}
.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.divider-text {
  text-align: center;
  color: white;
  margin: 10px 10px 10px 22px;
  font-size: 14px;
}
select.select-control {
  display: block;
  width: 167px;
  height: calc(1.5em + 0.75rem + 2px);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.banner-home {
  height: 900px;
  background-color: var(--primary-color);
  background-image: url(template/imagens/banner.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: right;
}

.banner-home.bg-investidor {
  height: 660px;
}

.banner-home h6 {
  color: white;
  font-weight: 300;
  margin-top: 20px;
}

.banner-home h1 {
  font-size: 42px;
  font-weight: 900;
  color: white;
}

.btn-banner a {
  font-size: 16px;
  padding: 13px 30px;
  border: 1px solid;
  border-radius: 10px;
  color: white;
  transition: all 0.4s;
  text-decoration: none;
}

.btn-banner a:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-banner {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.banner-home img {
  position: relative;
  bottom: -40px;
}

h1.title-pages {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
}

h1.title-pages span {
  color: #8d8d8d;
}

.bg-darker h1.title-pages {
  color: white;
}

/* Empresa Home */
.btn-saber a {
  padding: 12px 30px 12px 0;
  font-size: 16px;
  transition: all 0.4s;
}

.btn-saber {
  margin-top: 30px;
}

.btn-saber a:hover {
  padding-left: 30px;
}

.empresa-home .image-before {
  position: relative;
}

.empresa-home .image-before::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  display: block;
  z-index: -1;
}

.empresa-home .image-before::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  display: block;
  z-index: -1;
}

.empresa-home img {
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.bg-darker p {
  color: #000;
}

.box-service {
  padding: 30px;
  background: #c3d2e0;
  border-radius: 15px;
  height: 233px;
}

.box-service p {
  margin: 0;
}

.box-service h3 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  /* padding-right: 120px; */
  margin-bottom: 20px;
}

a.cta {
  display: block;
  padding: 12px 30px;
  width: max-content;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s;
}

a.cta:hover {
  background-color: white;
  color: var(--primary-color);
}

.flex-center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.box-vantagem {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  position: relative;
}

/* .box-vantagem::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 100%;
  width: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  z-index: -1;
} */

.box-vantagem i {
  font-size: 30px;
  color: #2c638d;
}

.box-vantagem h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.box-vantagem .icon-vantagem {
  margin-bottom: 15px;
}

.box-vantagem p {
  margin-bottom: 0;
}

.investidores {
  background-image: url(template/imagens/banner.png);
  background-size: cover;
  background-position: center;
}

ul.investidores-list li {
  list-style: none;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

ul.investidores-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}

.investidores img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

footer.footer h1 {
  font-size: 20px;
}

.box-forms {
  padding: 20px;
  background-color: #ebebeb;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.box-forms label {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}

.box-forms button.btn.btn-success.btn-envia {
  background-color: #2c638d;
  border: none;
  border-color: none;
}

.box-forms h5 {
  margin-top: 20px;
  font-weight: 300;
}

.box-forms h3 {
  color: #2c638d;
}

.faixa_page {
  background-color: var(--primary-color);
  background-image: url(template/imagens/banner.png);
  background-size: cover;
  background-position: center;
  height: 280px;
}

.faixa_page h1 {
  text-align: center;
  color: white;
}

.topics-line {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.topics-line .topic {
  padding: 30px;
  background: #2c638d;
  color: white;
  border-radius: 10px;
}

.topics-line .topic p {
  margin: 0;
  margin-top: 15px;
  color: white;
}

.contato img {
  border-radius: 15px;
}

.box-post {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.box-post img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.post_body {
  padding: 30px;
}

.line-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

span.categ {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
}

.box-post h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

img.case-post {
  height: 500px;
  width: 100%;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 15px;
}

.line-details span {
  font-size: 15px;
}

.blog-search-wrap {
  background: white;
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
  border: 1px solid rgba(0, 26, 112, 0.08);
}

.blog-search-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-search-field {
  position: relative;
}

.blog-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.blog-search-field input,
.blog-search-select select {
  width: 100%;
  border: 1px solid #d4d7e2;
  border-radius: 10px;
  height: 48px;
  font-size: 15px;
  color: #1f2430;
  background: #fbfcff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-field input {
  padding: 0 15px 0 42px;
}

.blog-search-select select {
  padding: 0 12px;
}

.blog-search-field input:focus,
.blog-search-select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 26, 112, 0.12);
}

.blog-search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.blog-search-meta p {
  margin: 0;
  font-size: 14px;
  color: #3d4452;
  font-weight: 500;
}

#blog-search-clear {
  border: 0;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

#blog-search-clear:hover {
  background: #002497;
}

@media (max-width: 991px) {
  .blog-search-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .blog-search-wrap {
    padding: 16px;
  }

  .blog-search-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Keyframes - Animações
** ----------------------------------------------- */
@keyframes arrowDown {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.box-text h4 {
  margin-bottom: 12px;
}

.box-text {
  padding: 30px;
  background: #e0e0e0;
  border-radius: 15px;
  margin-top: 30px;
}

.card-etapas {
  background: white;
  padding: 30px;
  border-radius: 20px;
  height: 422px;
}

.card-etapas h5 {
  font-size: 16px;
  margin-bottom: 0;
  width: 175px;
}

.card-etapas h4 {
  padding: 12px;
  margin: 0;
  height: 35px;
  width: 35px;
  border-radius: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.etapas .col-lg-3:nth-child(3) h4,
.etapas .col-lg-3:nth-child(1) h4 {
  background: var(--primary-color);
  color: white;
}

.etapas .col-lg-3:nth-child(2) h4,
.etapas .col-lg-3:nth-child(4) h4 {
  background: #2f8fc2;
  color: white;
}

.card-etapas .content {
  display: flex;
  gap: 10px;
}

.box-feedback {
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.box-feedback::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.box-feedback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner-footer {
  background-image: url(template/imagens/banner.png);
  background-size: cover;
  background-position: center;
}

.localizacao .iframe iframe {
  width: 100%;
  border: none;
  border-radius: 15px;
  height: 280px;
}

.empresa_pg .box-text h4 {
  color: var(--primary-color);
}

.empresa_pg .box-text p {
  margin-bottom: 0;
}

.banner-contato {
  height: 550px;
  background-image: url(template/imagens/banner.png);
  background-size: cover;
  background-position: center;
}

.banner-contato .col-lg-6:nth-child(1) {
  text-align: center;
}

.banner-contato img {
  position: relative;
  height: 320px;
}

.banner-contato h2 {
  color: white;
  margin-bottom: 40px;
}

.banner-contato .box-contato {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  margin-top: 30px;
}

.banner-contato .box-contato i {
  font-size: 30px;
  color: var(--primary-color);
}

.banner-contato .box-contato h5 {
  font-size: 23px;
}

.icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: aliceblue;
  border-radius: 150px;
}

.banner-contato .box-contato p {
  font-size: 16px;
  margin: 0;
  color: white;
}

.banner-contato .box-contato p a {
  color: white;
  text-decoration: none;
  transition: all 0.4s;
}

.banner-contato .box-contato p a:hover {
  color: #8ec3ff;
}

.duvidas .accordion-titulo {
  background: transparent;
  color: #333;
  font-weight: 400;
  text-align: left;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding: 30px 15px;
}

.duvidas .accordion-titulo i {
  float: right;
  transition: transform 0.4s ease;
}

.duvidas .accordion-conteudo {
  background: transparent;
  border: none;
  font-size: 15px;
  margin-bottom: 20px;
}

.accordion-titulo.active i {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.depoimento p {
  color: white;
  font-size: 22px;
  margin: 0;
}

.depoimento {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 2;
}

.investidores-points {
  display: flex;
  height: 550px;
  background-color: #e0e0e0;
}

.investidores-points .box-invest {
  width: 50%;
  position: relative;
}

.investidores-points .box-invest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-invest.d-flex {
  flex-direction: column;
  justify-content: center;
  padding: 0 100px;
}

.box-invest.d-flex h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.box-invest.d-flex p {
  font-size: 18px;
  margin-bottom: 0;
}

img.amigo {
  height: 480px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  object-position: 0 -40px;
}

p.sub-blog {
  padding: 0 150px;
}

div#row-selects {
  display: flex;
  justify-content: space-between;
}
