
/*ESTILOS GERAIS*/
:root {
  --cor-primaria: rgb(79, 108, 129);
  --cor-secundaria:rgb(254,92,18);
  --cor-branco:white;
  --cor-black:black;
  --cor-azul-claro:#134f92;
  --cor-verde-bma:rgb(106, 124, 54);
  --cor-verde-escuro:rgb(47,53,27);

  --fonte:"Montserrat", sans-serif;
  --fonte-2:"Roboto", sans-serif;
  --fonte-3:"Quicksand", sans-serif;
  
}

body{
  background-color: white;
  color: var(--cor-black);
  font-family: var(--fonte-2);
  padding:0;
  margin: 0;
  overflow-x: hidden;

}

section{
  overflow-x: hidden;
}

hr{
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  border: solid 1px var(--cor-secundaria);
  opacity: 0.5;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.icone {
  animation: pulse 1s infinite;
  display: inline-block;
  font-size: 90px;
  color: #009900;
}
.icone a{
  animation: pulse 1s infinite;
  transition-duration: 0.2s;
}


.btn-lg{
  border-radius: 0;
}

.btn-one {
  color: var(--cor-secundaria);
  transition: all 0.3s;
  position: relative;
  font-weight: bold;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.5);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.1);
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}

.btn-one:hover{
  color: var(--cor-secundaria) !important;
}


.custom-btn-primary {
  color: #fff;
  padding: 10px 25px;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}

.btn-primary {
  background-color: #89d8d3;
  background-image: linear-gradient(315deg,  #134f92 0%, #134f92 74%);
  border: none;
  z-index: 1;
}
.btn-primary:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #4dccc6;
  background-image: linear-gradient(315deg, #4dccc6 0%, #134f92 74%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  color: #fff;
}
.btn-primary:hover:after {
  top: 0;
  height: 100%;
}

.btn-primary:active {
  top: 2px;
}


.custom-btn-secondary {
  color: #fff;
  padding: 10px 25px;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}


.btn-secondary {
  background:var(--cor-secundaria);
  border: none;
  z-index: 1;
}
.btn-secondary:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--cor-branco);
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  color: var(--cor-black);
}
.btn-secondary:hover:after {
  left: 0;
  width: 100%;
}
.btn-secondary:active {
  top: 2px;
}



.btn-terciary{
  background-color: var(--cor-secundaria);
  color: var(--cor-branco);
  border-radius: 30px;
  border: solid 1px var(--cor-secundaria) ;
  font-weight: bold;
  padding-left:1.5rem;
  padding-right:1.5rem;
}

.btn-terciary:hover{
  background-color: var(--cor-branco);
  color:var(--cor-secundaria) ;
  border: solid 1px var(--cor-secundaria) ;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
}


.btn-whatsapp{
  background-color: #009900;
  color: var(--cor-branco);
  border-radius: 30px;
  border: solid 1px #009900 ;
  font-weight: bold;
  padding-left:1.5rem;
  padding-right:1.5rem;
}

.btn-whatsapp:hover{
  background-color: var(--cor-branco);
  color:#009900 ;
  border: solid 1px #009900 ;
  transition: 0.3s ease-in-out;
  
}

/*BANNER*/
.banner{
  background-image: linear-gradient(rgba(106, 124, 54,0.9), rgba(0, 0, 0.8)), url(../images/home/banner.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;

}

.banner h1{
  font-size: 50px;
}


.texto-banner{
  color: var(--cor-branco);
  
}

.conteudo-banner span{
  color: var(--cor-secundaria);
}


.destaque {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  color: var(--cor-branco);
  position: relative;
  display: inline-block;
  padding: 20px;
  
}

/*.selo {
  position: relative;
  display: inline-block;
}

.selo::before,
.selo::after {
  content: "";
  position: absolute;
  background-color: transparent;
  z-index: -1;
  box-sizing: border-box;
  border: 3px solid orange; /* Cor e espessura da borda */
  /*clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Forma de hexágono
  
}

.selo::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  animation: girar-horario 10s linear infinite; /* Gira no sentido horário 
}

.selo::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  animation: girar-antihorario 8s linear infinite; /* Gira no sentido anti-horário 
}

@keyframes girar-horario {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes girar-antihorario {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
      transform: translate(-50%, -50%) rotate(-360deg);
  }
}*/

.destaque i {
  color: var(--cor-secundaria);
}

.destaque span {
  font-size: 170px;
  font-weight: bold;
  color: var(--cor-secundaria);
}

.centavos {
  font-size: 0.5em; /* Diminui o tamanho da fonte */
  vertical-align: super; }

/*SEÇÃO BMA*/

.destaque2 h2{
  font-size:2.5rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

.destaque2 span, .destaque2 i{
  color: var(--cor-secundaria);
}

.destaque2 p{
  font-size: 30px;
  font-weight: bold;

}

.linha-do-tempo span{
  border-bottom: 2px solid var(--cor-black);
}

.timeline-container {
  text-align: center;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc;
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
  width: 100px;
  
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--cor-verde-bma);
  border-radius: 50%;
  border: 4px solid var(--cor-verde-bma);
}

.timeline-item p {
  margin-top: 70px;
  font-weight: bold;
  font-size: 18px;
}


.linha-do-tempo2 span {
  border-bottom: 2px solid var(--cor-black);
}

.timeline-container2 {
  text-align: center;
}

.timeline2 {
  position: relative;
  display: flex;
  flex-direction: column; /* Muda para disposição vertical */
  align-items: center; /* Centraliza os itens no meio */
  width: 80%;
  margin: 0 auto;
}

.timeline2::before {
  content: '';
  position: absolute;
  left: 50%; /* Coloca a linha no centro horizontalmente */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ccc;
  transform: translateX(-50%);
}

.timeline-item2 {
  position: relative;
  text-align: left;
  width: 100%; /* Define a largura dos itens */
  
}

.timeline-item2 h3 {
  margin-bottom: 10px;
  padding-top: 30px;
}

.timeline-item2::before {
  content: '';
  position: absolute;
  left: 50%; /* Coloca os círculos no centro da linha */
  top: 48px;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--cor-verde-bma);
  border-radius: 50%;
  border: 4px solid var(--cor-verde-bma);
  z-index: 2; /* Garante que o círculo fique acima da linha */
}

.timeline-item2 p {
  margin-left: calc(50% + 40px); /* Ajusta o texto para ficar à direita da linha */
  margin-top: -30px; /* Ajuste para alinhar verticalmente com os círculos */
  font-weight: bold;
  font-size: 18px;
}


/*SEÇÃO VANTAGENS*/
.vantagens{
  background-color: #eee;
}

.titulos-vantagens h2{
  font-weight: bold;
  text-transform: uppercase;
}

.titulos-vantagens span{
  color: var(--cor-secundaria);
}

.cor2{
  background-color: var(--cor-branco);
  border-top: solid 3px orange;
}

.borda{
  border-top:none;
  border-bottom:solid 3px orange;
  margin-bottom:-3px;
}


/*TEMPLATES*/

.templates{
  background-image: linear-gradient(rgba(0,0,0,0.9), rgba(47,53,27,0.8)), url(../images/home/paralax-templates.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed ;
  color: var(--cor-branco);
  
}
.templates img{
  border-radius:8px 8px 0 0 ;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
}


.templates-card{
  background-color: var(--cor-branco);
  text-align: center;
  border-radius: 8px;
  border: solid 1px rgb(250, 250, 172);
  box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.templates-card p{
  font-family: var(--fonte-3);
  font-size: 18px;
  font-weight: bold;
  padding-top: 1rem;
  color: var(--cor-black);
}



.templates-card:hover i{
  color: var(--cor-branco);
  transition: 0.3s ease-in-out;
}

.templates span{
  color: var(--cor-secundaria);
}

.overlay-button{
  width: 100%;
  box-shadow: 0px 0px 7px 0px rgba(255,255,255,0.75);
  text-transform: uppercase;
  font-family: var(--fonte-3);
}



.templates-card .overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--cor-black);
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 2; /* Elevando o botão acima do blur */
}

.templates-card:hover img {
  filter: blur(8px);
  transform: scale(1.1);
}

.templates-card:hover .overlay-button {
  opacity: 1;
  pointer-events: all;
}

.templates-card .overlay-button:hover {
  color:var(--cor-black)
}

.icones-templates i{
  font-size: 25px;
  color:white;
  cursor: pointer;

}

.icones-templates i:hover{
  color: var(--cor-secundaria);
  transition: all 0.3s ease-in-out;
}

.template-cabecalho{
  background-color: #2d394b;
}

.template-cabecalho p{
  font-family: var(--fonte-2);
  font-weight: 700;
  font-size: 23px;
  color: var(--cor-branco);
}


/*PERGUNTAS FREQUENTES*/

.accordion{
  margin-bottom: 1rem;
 
}


.accordion-button:focus{
  border-color: white;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 0);
  
}


.accordion-button:not(.collapsed) {
  border-color: white;
  color: var(--cor-black);
  background-color:var(--cor-secundaria);
}

.accordion-button{
  font-weight: 700;
  background: linear-gradient(to left, #fafafa 50%, var(--cor-secundaria) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.5s;
  
}

.accordion-button:hover{
  background-position: left bottom;
  
}

.perguntas-frequentes h1{
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.3;
}

.perguntas-frequentes span{
  color: var(--cor-secundaria);
  

}

/*PARALAX FINO*/

.paralax-fino{
  background-image: linear-gradient(rgba(106, 124, 54,0.9), rgba(0,0,0,0.7)), url(../images/home/duvidas.jpg);
  background-position: center;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--cor-branco);
}

.bonus i{
  color: var(--cor-secundaria);
}

.bonus p{
  font-size: 1.8rem;
}

.botao-bonus i{
  color: var(--cor-branco);
}

.botao-bonus:hover i{
  color: var(--cor-black)!important;
}


/*CONTATO*/

.contato h2{
  font-weight: 700;
  color: var(--cor-primaria);
}


form{
  padding: 1rem;
  border-radius: 8px;
  background-color: #134f92;
}

.btn-contato{
  border: none;
}


.btn-contato:hover{
 background-color: var(--cor-secundaria);
 color: var(--cor-branco);
 border: none;
}

.texto-checked{
  color: var(--cor-branco);
}

.texto-checked:hover{
  color: var(--cor-secundaria);
}

.fale-conosco{
  text-align: center;
}

.fale-conosco a{
  color: var(--cor-primaria);
  font-size: 20px;
  font-weight: bold;

}

.fale-conosco a:hover{
  color: var(--cor-secundaria);
}

/*DEPOIMENTOS*/


.depoimentos span{
  color: var(--cor-secundaria);
}
.icone-aspas{
  font-size: 50px;
  color: #ccc;
  margin-bottom: 0;
}

.icone-estrela{
  color: #F3C623;
}

.depoimento-texto{
  font-size: 18px;
}

.pessoa{
  display: flex;
  flex-direction: row;
}

.nome-pessoa{
  padding-left: 1rem;
  font-size: 16px;
  font-weight: bold;
}


.swiper-button-prev, .swiper-button-next{
  color: var(--cor-secundaria) !important;
}


/*RODAPE*/
.rodape{
  background-color: var(--cor-black);
}

.botao-whatsapp{
  display: none;
  z-index: 999;
  position: fixed;
  right: 20px;
  bottom: 30px;
  transition: 0.2s ease-in-out;
 
}

.botao-whatsapp:hover{
  transform: scale(1.1);
}



.redes-sociais a{
  color: var(--cor-branco)!important;
  font-size: 18px;
  text-decoration: none !important;
}

.redes-sociais a:hover{
  color: var(--cor-secundaria);
  
}

.redes-sociais a:focus{
  color: var(--cor-secundaria);
  
}

.politica-privacidade a{
  color: var(--cor-branco);
}

.politica-privacidade a:hover{
  color: var(--cor-secundaria);
}

/*POLÍTICA DE PRIVACIDADE*/

.banner-politica-privacidade{
  height: 300px;
  background-image: linear-gradient(rgba(8,40,76,0.9), rgba(8,40,76,0.8)), url(../images/home/politica-privacidade.jpg);; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* LGPD */

.box-cook.hide{
  display: none !important;
}

.box-cook{
  z-index: 999;
  position: fixed;
  left: 4px;
  bottom: 30px;
  background-color: var(--cor-branco);
  padding: 2rem;
  border-radius: 20px;
  color: var(--cor-black);
  box-shadow: 0px 0px 5px 0px var(--cor-azul-claro);
}

.box-cook a{
text-decoration: none;
}

.politica-privacidade-lgpd{
  color: var(--cor-preto);
}

.politica-privacidade-corpo{
  background-color: #eee;
}

.politica-privacidade-lgpd:hover{
  color: var(--cor-preto);
  text-decoration: underline;
}

/*ANIMAÇÃO LGPD*/
.box-cook{
  animation: appear 2s;
}

@keyframes appear{

  from{
    opacity: 0;
    translate: 0 100%;
  }

  to{
    opacity: 1;
    translate: 0 0;
  }
}

/*CARREGAMENTO DA PAGINA*/

/* Animação */
@keyframes square-animation {
  0% { left: 0; top: 0; }
  10.5% { left: 0; top: 0; }
  12.5% { left: 32px; top: 0; }
  23% { left: 32px; top: 0; }
  25% { left: 64px; top: 0; }
  35.5% { left: 64px; top: 0; }
  37.5% { left: 64px; top: 32px; }
  48% { left: 64px; top: 32px; }
  50% { left: 32px; top: 32px; }
  60.5% { left: 32px; top: 32px; }
  62.5% { left: 32px; top: 64px; }
  73% { left: 32px; top: 64px; }
  75% { left: 0; top: 64px; }
  85.5% { left: 0; top: 64px; }
  87.5% { left: 0; top: 32px; }
  98% { left: 0; top: 32px; }
  100% { left: 0; top: 0; }
}

/* Fundo branco cobrindo a tela inteira */
.loader-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9998; /* Logo abaixo do loader */
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Loader centralizado */
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 96px;
  height: 96px;
  z-index: 9999; /* Acima do fundo branco */
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 0px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(1) { background: rgb(129, 130, 133); animation-delay: 0s; }
.loader-square:nth-of-type(2) { background: rgb(106, 124, 54); animation-delay: -1.4285714286s; }
.loader-square:nth-of-type(3) { background: rgb(187, 109, 42); animation-delay: -2.8571428571s; }
.loader-square:nth-of-type(4) { background: rgb(79, 108, 129); animation-delay: -4.2857142857s; }
.loader-square:nth-of-type(5) { background: rgb(129, 130, 133); animation-delay: -5.7142857143s; }
.loader-square:nth-of-type(6) { background: rgb(106, 124, 54); animation-delay: -7.1428571429s; }
.loader-square:nth-of-type(7) { background: rgb(187, 109, 42); animation-delay: -8.5714285714s; }

/* Esconder o loader e o fundo branco quando o carregamento terminar */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-out, visibility 0.5s ease-out;
}

/*EFEITO CARREGAMENTO LENTO*/

/* Estilos para carregar lentamente da esquerda */
.load-slow-left {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Estilos para carregar lentamente da direita */
.load-slow-right {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Quando o elemento é visível */
.load-slow-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.load-slow-right.visible {
  opacity: 1;
  transform: translateX(0);
}



/*MODAL NÃO SAIA DA PÁGINA*/

.modal{
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-family: var(--fonte-3);
}

.modal-header,.modal-footer{
  border: none;
}

.modal-content{
  background-color:#333 ;
  border: none;
}

.modal-title{
  color: #FC6736;
  font-weight: bold;
}

/*MODAIS TEMPLATES*/

.modal-template h5{
  color: var(--cor-branco) !important;
}

/* Esconde os botões de rádio */
input[type="radio"] {
  display: none;
}

/* Estiliza o ícone clicável */
.button-group label {
  cursor: pointer;
  padding: 10px;
  font-size: 24px;
  color: var(--cor-branco); /* Cor do ícone */
  transition: color 0.3s ease;
}

.button-group label:hover {
  color: var(--cor-branco); /* Cor ao passar o mouse sobre o ícone */
}


/* Estilo para o ícone quando o botão de rádio está selecionado */
input[type="radio"]:checked + label {
  color: var(--cor-secundaria);
}

/* Cor padrão para o ícone quando o botão não está selecionado */
input[type="radio"]:not(:checked) + label {
  color: var(--cor-branco) !important; /* Volta à cor padrão */
}



.modal-90 {
  width: 95%;
  height: 90%;
  max-width: none;
}
.modal-content {
  height: 100%;
}
.modal-body {
  height: calc(100% - 56px - 56px); /* Altura total menos o header e footer */
  padding: 0; /* Remove espaçamento ao redor */
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* MEDIAS ##########################################################*/

@media (max-width: 576px){
  .banner h1{
    font-size: 40px;
  }

  .destaque2 h2{
    font-size: 2rem;
  }

  .destaque2 p{
    font-size: 25px;
  }

  .arrow i{
    display: none;
  }

  .linha-do-tempo{
    display: none;
  }

   .botao-duvidas-desktop{
    display: none;
   }

   .borda{
    border-bottom:none;
    border-top:solid 3px orange;
  }

   }


/* Medium devices (tablets, 768px and up) */
@media (min-width:577px) and (max-width: 768px) {
  .linha-do-tempo2{
    display: none;
  }

  .botao-duvidas-mobile{
    display: block;
  }

  .botao-duvidas-desktop{
    display: none;
   }

   .borda{
    border-bottom:none;
    border-top:solid 3px orange;
  }

   
  
}


 



/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 992px) {
 
  .linha-do-tempo2{
    display: none;
  }

  .botao-duvidas-desktop{
    display: none;
   }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 993px) and (max-width: 1200px) {
  .linha-do-tempo2{
    display: none;
  }

  .botao-duvidas-mobile{
    display: none;
   }
}
 


/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width:1201px) and (max-width: 1400px) {
  .linha-do-tempo2{
    display: none;
  }
  
  .botao-duvidas-mobile{
    display: none;
   }
}


@media (min-width: 1400px) and (max-width: 1600px){
  .linha-do-tempo2{
    display: none;
  }

  .botao-duvidas-mobile{
    display: none;
   }
 
}

@media (min-width: 1600px){
  .linha-do-tempo2{
    display: none;
  }

  .botao-duvidas-mobile{
    display: none;
   }
}

