@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

html,
body {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  font-family: "Montserrat" !important;
}

html {
  scroll-behavior: smooth;
}

.modal.fade .modal-dialog {
  transform: translate(20%, 0) !important;
}

.modal.show .modal-dialog {
  transform: translate(0%, 0) !important;
}

/*
a{
	animation-duration: 2s;
	animation-name: slidein;
}
*/

@keyframes slidein {
  from {
    filter: alpha(opacity=0);
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
  }

  to {
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
  }
}

[data-anime] {
  opacity: 0;
  transition: 0.5s;
}
[data-anime="left"] {
  transform: translate3d(-50px, 0, 0);
}
[data-anime="right"] {
  transform: translate3d(50px, 0, 0);
}
[data-anime="top"] {
  transform: translate3d(0, -50px, 0);
}
[data-anime="bottom"] {
  transform: translate3d(0, 50px, 0);
}
[data-anime].animate {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

/* Efeito hover nos links
**/

a.fancy-underline {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  outline: 0;
}

a.fancy-underline span {
  position: relative;
  padding-bottom: 2px;
  display: inline-table;
}

a.fancy-underline span::before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f8e006;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

a.fancy-underline:hover span::before {
  transform: scaleX(1);
  transform-origin: bottom center;
}

a:focus:not(:focus-visible) {
  outline: 0;
}

a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.box-buttons {
  display: table;
  margin: 0 auto;
}
.btnr {
  width: 100%;
  line-height: 40px;
  cursor: pointer;
  display: block;
  text-align: center;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
  float: left;
}
.btnr:hover {
  text-decoration: none;
}
.btn-efeito {
  overflow: hidden;
  position: relative;
}
.btn-efeito span {
  z-index: 20;
}
.btn-efeito:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -85px;
  opacity: 0.4;
  position: absolute;
  top: -60px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: all 850ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 850ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 70px;
  z-index: 1;
}
.btn-efeito:hover:after {
  left: 130%;
  -webkit-transition: all 850ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 850ms cubic-bezier(0.19, 1, 0.22, 1);
}
/*Adicione esta classe se for usar 2 Botões*/
.margin-right {
  margin-right: 10px;
}

/* --- Serviços Circular --- */
.servicos-circular {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 60px auto 60px auto;
  max-width: 100vw;
}
.servico-bloco {
  position: absolute;
  width: 180px;
  height: 100px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  padding: 12px;
  transition: box-shadow 0.2s;
}
.servico-bloco.centro {
  left: 50%;
  top: 50%;
  width: 220px;
  height: 120px;
  background: #ffdd00;
  color: #58585b;
  font-size: 1.4em;
  font-weight: bold;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
/* Distribuição circular dos blocos */
.servico-bloco.bloco1 {
  left: 50%;
  top: 0%;
  transform: translate(-50%, 0);
}
.servico-bloco.bloco2 {
  left: 85%;
  top: 18%;
  transform: translate(-50%, -50%);
}
.servico-bloco.bloco3 {
  left: 100%;
  top: 50%;
  transform: translate(-100%, -50%);
}
.servico-bloco.bloco4 {
  left: 85%;
  top: 82%;
  transform: translate(-50%, -50%);
}
.servico-bloco.bloco5 {
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
}
.servico-bloco.bloco6 {
  left: 15%;
  top: 82%;
  transform: translate(-50%, -50%);
}
.servico-bloco.bloco7 {
  left: 0%;
  top: 50%;
  transform: translate(0, -50%);
}
.servico-bloco.bloco8 {
  left: 15%;
  top: 18%;
  transform: translate(-50%, -50%);
}

.servico-bloco:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

@media (max-width: 900px) {
  .servicos-circular {
    width: 98vw;
    height: 98vw;
    min-width: 320px;
    min-height: 320px;
    max-width: 98vw;
    max-height: 98vw;
  }
  .servico-bloco,
  .servico-bloco.centro {
    width: 120px;
    height: 70px;
    font-size: 0.95em;
    padding: 6px;
  }
  .servico-bloco.centro {
    width: 150px;
    height: 80px;
    font-size: 1.1em;
  }
}

@media (max-width: 600px) {
  .servicos-circular {
    width: 100vw;
    height: 100vw;
    min-width: 220px;
    min-height: 220px;
  }
  .servico-bloco,
  .servico-bloco.centro {
    width: 90px;
    height: 50px;
    font-size: 0.8em;
    padding: 2px;
  }
  .servico-bloco.centro {
    width: 100px;
    height: 60px;
    font-size: 1em;
  }
}
/* --- Fim Serviços Circular --- */

/* --- Serviços Circular Balões --- */
.servicos-circular {
  position: relative;
  width: 900px;
  height: 700px;
  margin: 60px auto 60px auto;
  max-width: 100vw;
  min-height: 500px;
}
.servicos-circular-nav{
  margin: 0 auto;
}
.servicos-circular-nav a{
  color: #ffc107;
  text-decoration: none;
}
.servicos-circular-nav a:hover{
  color: #58585b;
}
.servico-centro {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  background: #f3f3f3;
  border-radius: 50%;
  border: 4px dashed #bdbdbd;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}
.icone-centro {
  margin-bottom: 18px;
}
.icone-centro img{
  width: 80px;
  height: 80px;
}
.texto-centro {
  font-size: 1.08em;
  color: #222;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
}

.servico-balao {
  cursor: pointer;
  position: absolute;
  min-width: 320px;
  max-width: 370px;
  min-height: 90px;
  background: #fff;
  border-radius: 50px 50px 50px 50px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 22px 28px 22px 22px;
  z-index: 1;
  font-size: 1.08em;
  transition: box-shadow 0.2s;
}
.servico-balao .icone-balao {
  font-size: 2.2em;
  margin-right: 18px;
  width: 80px;
  height: 80px;
  color: #58585b;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico-balao .texto-balao {
  flex: 1;
  color: #222;
  font-weight: 500;
  line-height: 1.3;
  font-size: 14px;
}
.servico-balao.cinza .texto-balao {
  color: #fff;
}
.servico-balao .descricao {
  font-size: 0.95em;
  color: #444;
  font-weight: 400;
}
.servico-balao.cinza {
  background: #58585b;
  color: #fff;
}

.servico-balao.amarelo {
  background: #ffe44c;
  color: #222;
}

.servico-balao.amarelo .texto-balao {
  color: #222;
}
.servico-balao:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

/* Bicos dos balões */
.servico-balao::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.servico-balao.cinza::after {
  border-width: 24px 24px 0 0;
  border-color: #58585b transparent transparent transparent;
}
.servico-balao.amarelo::after {
  border-width: 24px 24px 0 0;
  border-color: #ffe44c transparent transparent transparent;
}

/* Posições dos balões (ajustar conforme necessário) */
.balao1 {
  left: -63px;
  top: 135px;
}
.balao1::after {
  right: -2px;
  top: 66%;
  transform: rotate(-190deg);
}
.balao2 {
  left: -100px;
  bottom: 201px;
}
.balao2::after {
  right: -9px;
  top: 26%;
  transform: rotate(-223deg);
}
.balao3 {
  right: -56px;
    top: 120px;
}
.balao3::after {
  left: -2px;
  top: 68%;
  transform: rotate(-79deg);
}
.balao4 {
  right: -101px;
  bottom: 250px;
}
.balao4::after {
  left: -8px;
  top: 38%;
  transform: rotate(-44deg);
}
.balao5 {
  left: 75%;
  bottom: 49px;
  transform: translateX(-50%);
}
.balao5::after {
  left: 6%;
  top: 2%;
  transform: translateX(-50%) rotate(4deg);
}

/* Modal */

.modal-title,
.modal-body{
 display: none;
}
.modal-title.show,
.modal-body.show{
  display: block;
}


@media (max-width: 1100px) {
  .servicos-circular {
    width: 98vw;
    height: 98vw;
    min-width: 320px;
    min-height: 320px;
  }
  .servico-centro {
    width: 220px;
    height: 220px;
    font-size: 0.95em;
  }
  .servico-balao {
    min-width: 180px;
    max-width: 220px;
    font-size: 0.95em;
    padding: 12px 12px 12px 12px;
  }
  .icone-centro {
    font-size: 2em;
  }
  .servico-balao .icone-balao {
    font-size: 1.3em;
    margin-right: 8px;
  }
}
@media (max-width: 700px) {
  .servicos-circular {
    width: 100vw;
    height: 100vw;
    min-width: 180px;
    min-height: 180px;
  }
  .servico-centro {
    width: 120px;
    height: 120px;
    font-size: 0.8em;
  }
  .servico-balao {
    min-width: 90px;
    max-width: 120px;
    font-size: 0.8em;
    padding: 4px 4px 4px 4px;
  }
  .icone-centro {
    font-size: 1.1em;
  }
  .servico-balao .icone-balao {
    font-size: 0.8em;
    margin-right: 4px;
  }
}
/* --- Fim Serviços Circular Balões --- */
