:root {
  --helv: freesansbold;
}

:root {
  --joinchat-ico: url();
}

.joinchat__button {
  position: fixed;
  z-index: 10;
  top: 80%;
  right: 8px;
  height: 65px;
  width: 65px;
  background: #25d366;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rem;
}

.joinchat__button__open {
  width: 87PX;
  height: 90px;
  background: url(../imgs/ww.svg) no-repeat;
  background-size: 42px;
  overflow: hidden;
  background-position: 23px;
}

.ab {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

@font-face {
  font-family: "freesansbold";
  src: url("./freesansbold-webfont.woff") format("woff2"), url("./freesansbold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.slick-next,
.slick-prev {
  width: 15px;
  height: 29px;
}
.slick-next:before,
.slick-prev:before {
  display: none;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1rem;
  position: relative;
}
.container-small {
  max-width: 766px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1rem;
  position: relative;
}
.container-litle {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1rem;
  position: relative;
}

@media (min-width: 1100px) {
  .hide_desktop {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .hide_mobile {
    display: none !important;
  }
}

.grid {
  display: grid;
}

ul li {
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Barlow", sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.fixed {
  position: fixed;
  width: 100%;
  z-index: 8;
  top: 0;
}

.hamburger {
  position: absolute;
  right: 1rem;
  z-index: 99;
  top: 7px;
}
@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  width: 22px;
  height: 2px;
  border-radius: 2rem;
  background-color: white;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.is-active .line {
  background-color: white;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

.nav_mobile {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  margin-left: -20rem;
  height: 100vh;
  width: 100%;
  top: 39px;
  background: #f1f1f1;
  position: absolute;
  padding-top: 3rem;
  z-index: 9;
}
.nav_mobile .compre {
  width: 160px;
  height: 40px;
  background-color: #FDCA3F;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.nav_mobile .compre a {
  text-transform: uppercase;
  color: #2E277E;
  font-family: var(--helv);
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  gap: 6px;
}
.nav_mobile .orcamento {
  width: 160px;
  height: 40px;
  background-color: #005695;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}
.nav_mobile .orcamento a {
  text-transform: uppercase;
  color: white;
  font-family: var(--helv);
  font-size: 12px;
  letter-spacing: 1px;
}
@media (min-width: 100px) and (max-width: 1289px) {
  .nav_mobile.active {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
    height: 100vh;
  }
}
.nav_mobile .menu {
  display: block;
  padding-left: 2rem;
}
.nav_mobile .menu li {
  display: block;
  margin-bottom: 1rem;
}
.nav_mobile .menu li a {
  font-size: 14px;
  color: #000000;
}
.nav_mobile .menu li .sub-menu li {
  margin-bottom: 0;
  margin-top: 1rem;
}
.nav_mobile .menu li .sub-menu li a {
  text-transform: none;
}

header {
  background: #160b7d;
}
@media (max-width: 990px) {
  header .search {
    position: absolute;
    top: 15px;
    right: 4rem;
  }
  header .logo {
    width: 110px;
  }
  header .logo img {
    width: 100%;
  }
}
header .form form div span {
  color: white;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
header .form {
  position: absolute;
  width: 100%;
  top: -12rem;
  transition: top 0.4s ease-in;
}
header .form.active {
  top: 0;
}
header .form .close {
  position: absolute;
  right: 0;
  cursor: pointer;
}
header .form form {
  position: absolute;
  background: #18499a;
  top: 0;
  width: 100%;
  height: 165px;
  padding: 11px;
  z-index: 99999;
  display: flex;
  align-items: center;
}
header .form form div {
  width: 47%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 990px) {
  header .form form div {
    width: 100%;
  }
}
header .form form div span {
  color: white;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
header .form form input[type=text] {
  width: 100%;
  border-radius: 80px;
  border: 1px solid var(--vermelho-2);
  padding: 16px 1rem;
}
header .form form input[type=submit] {
  position: absolute;
  right: 0%;
  top: 50px;
  background: transparent url(../imgs/buscar.svg) no-repeat;
  background-size: 26px;
  border: 0;
  width: 40px;
  height: 40px;
}
header .grid {
  grid-template-columns: 208px 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 990px) {
  header .grid {
    display: block;
  }
}
header .menu {
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  header .menu {
    justify-content: end;
  }
}
header .menu ul {
  display: flex;
}
header .menu ul li {
  margin-right: 2rem;
  position: relative;
  display: inline-block;
}
header .menu ul li.menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .menu ul li.menu-item-has-children:after {
  background: url(../imgs/arrow_menu.svg) no-repeat;
  content: "";
  width: 10px;
  height: 5px;
  display: block;
}
header .menu ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}
header .menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  z-index: 4;
  padding: 10px 8px;
  width: 201px;
  display: none;
}
header .menu ul li .sub-menu li {
  line-height: 26px;
}
header .menu ul li .sub-menu li a {
  color: #160E6F;
}
header .menu ul.grid {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1100px) {
  header .menu ul {
    display: none;
  }
}
header .menu .compre {
  width: 160px;
  height: 40px;
  background-color: #FDCA3F;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}

header .menu .compre a {
  text-transform: uppercase;
  color: #2E277E;
  font-family: var(--helv);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  gap: 6px;
}
header .menu .orcamento {
  width: 160px;
  height: 40px;
  background-color: #005695;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
header .menu .orcamento a {
  text-transform: uppercase;
  color: white;
  font-family: var(--helv);
  font-size: 12px;
  letter-spacing: 1px;
}

.slider_home .slick-dots {
  position: absolute;
  bottom: 16px !important;
}

#banner_home {
  height: 480px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 500px) {
  #banner_home {
    height: 290px;
    overflow: hidden;
  }
}
#banner_home a.ab {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
#banner_home .img {
  height: 480px;
  background-size: cover !important;
  background-position: center !important;
}
@media (max-width: 500px) {
  #banner_home .img {
    height: 290px;
  }
}
#banner_home .slick-next {
  background: url(../imgs/arrow_w_r.svg) no-repeat;
  width: 42px;
  height: 42px;
  right: 2%;
}
#banner_home .slick-prev {
  background: url(../imgs/arrow_w_l.svg) no-repeat;
  width: 42px;
  height: 42px;
  left: 2%;
  z-index: 5;
}

#promocao {
  padding-top: 3rem;
}
#promocao h2 {
  color: #286EBF;
  font-weight: 100;
  font-size: 40px;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  #promocao h2 {
    font-size: 30px;
  }
}
#promocao h2 strong {
  color: #160E6F;
  font-weight: 800;
}
#promocao .slider_promo {
  margin-top: 4rem;
}
@media (max-width: 990px) {
  #promocao .slider_promo {
    margin-top: 9rem;
  }
}
#promocao .slider_promo img {
  width: 100%;
}
#promocao .slider_promo .slick-slide {
  margin: 0 10px;
}
#promocao .slider_promo .slick-list {
  margin: 0 -10px;
}
#promocao .slider_promo .slick-next {
  background: url(../imgs/arrow_r.svg) no-repeat;
  width: 42px;
  height: 42px;
  right: -67px;
}
#promocao .slider_promo .slick-prev {
  background: url(../imgs/arrow_l.svg) no-repeat;
  width: 42px;
  height: 42px;
  left: -67px;
  z-index: 5;
}
#promocao .text_final {
  text-align: center;
  color: hsla(232, 26%, 17%, 0.6);
  margin-top: 2rem;
}

.countdown {
  margin-top: -12px;
  display: grid;
  width: 75%;
  transform: scale(0.4);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: absolute;
  right: -12rem;
  gap: 7rem;
}
.countdown canvas#hours-canvas,
.countdown canvas#days-canvas,
.countdown canvas#minutes-canvas,
.countdown canvas#seconds-canvas {
  position: absolute;
  left: 0;
  z-index: 2;
}
.countdown .content {
  position: relative;
}
.countdown .content svg {
  position: absolute;
  top: 0;
  left: 0;
}
.countdown .content .label {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  top: 40px;
  left: 80%;
  transform: translateX(-50%);
}
.countdown .content .label span {
  display: block;
}
.countdown .content .label span:first-of-type {
  font-size: 65px;
  color: #AFAFAF;
  font-weight: 600;
}
.countdown .content .label span:nth-of-type(2) {
  font-size: 20px;
  text-transform: uppercase;
  color: #AFAFAF;
  font-weight: 600;
}

@media screen and (max-width: 800px) {
  .countdown {
    flex-direction: column;
    align-items: center;
    width: 200%;
    min-width: auto;
    top: 0;
    bottom: initial;
    margin-left: -13rem;
    margin-top: 7rem;
    right: -10rem;
    transform: scale(0.3);
  }
  .countdown .content .label {
    top: 48px;
    left: 100%;
  }
}
#categorias {
  background: #160E6F;
  color: white;
  padding-block: 5rem;
  margin-top: 3rem;
}
#categorias .tab-container .tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-bottom: 2rem;
  font-family: var(--helv);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
}
#categorias .tab-container .tabs li {
  cursor: pointer;
  padding: 10px;
  margin-right: 10px;
  color: hsla(0, 0%, 100%, 0.4);
  position: relative;
  text-transform: uppercase;
}
#categorias .tab-container .tabs li:before {
  content: "";
  height: 2px;
  width: 90%;
  background-color: #FDCA3F;
  display: block;
  margin-bottom: 1rem;
  margin-inline: auto;
  opacity: 0;
  transition: all 0.4s ease;
}
#categorias .tab-container .tabs li.active, #categorias .tab-container .tabs li:hover {
  color: white;
}
#categorias .tab-container .tabs li.active:before, #categorias .tab-container .tabs li:hover:before {
  opacity: 1;
}
#categorias .tab-container .tab-content .tab {
  display: none;
}
#categorias .tab-container .tab-content .tab.active {
  display: block;
}
#categorias .tab-container .tab-content .slick-track {
  display: flex !important;
}
#categorias .tab-container .tab-content .slick-slide {
  border-radius: 12px;
  margin: 0 6px;
  height: inherit !important;
  background: white;
  position: relative;
  transition: all 0.4s ease;
  color: #212438;
}
#categorias .tab-container .tab-content .slick-slide h3 {
  color: #160E6F;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}
#categorias .tab-container .tab-content .slick-slide .text {
  padding: 1rem;
}
#categorias .tab-container .tab-content .box .text {
  position: relative;
  margin-bottom: 4rem;
}
#categorias .tab-container .tab-content .box .text p {
  line-height: 26px;
}
#categorias .tab-container .tab-content .box .links {
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#categorias .tab-container .tab-content .box .links .leia {
  display: flex;
  justify-content: flex-end;
}
#categorias .tab-container .tab-content .box .links .leia a {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 108px;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
#categorias .tab-container .tab-content .box img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 243px;
  -o-object-fit: cover;
     object-fit: cover;
}
#categorias .tab-container .tab-content .slick-slide {
  margin: 0 10px;
}
#categorias .tab-container .tab-content .slick-list {
  margin: 0 -10px;
}
#categorias .tab-container .tab-content .slick-dots {
  bottom: -62px;
}
#categorias .tab-container .tab-content .slick-dots li {
  margin: 0 12px;
}
#categorias .tab-container .tab-content .slick-dots li button:before {
  display: none;
}
#categorias .tab-container .tab-content .slick-dots li.slick-active button:after,
#categorias .tab-container .tab-content .slick-dots li:hover button:after {
  opacity: 1;
}
#categorias .tab-container .tab-content .slick-next {
  background: url(../imgs/arrow_w_r.svg) no-repeat;
  width: 42px;
  height: 42px;
  right: -67px;
}
#categorias .tab-container .tab-content .slick-prev {
  background: url(../imgs/arrow_w_l.svg) no-repeat;
  width: 42px;
  height: 42px;
  left: -67px;
  z-index: 5;
}
#categorias .tab-container .tab-content .slick-dots li button {
  background-color: #286EBF;
  border-radius: 2rem;
  width: 9px;
  height: 9px;
  transition: all 0.4s ease;
}
#categorias .tab-container .tab-content .slick-dots li button:after {
  transition: all 0.4s ease;
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  border: 2px solid white;
  top: -10px;
  left: -10px;
  border-radius: 2rem;
  opacity: 0;
}

#lojas {
  padding-block: 4rem;
}
@media (max-width: 990px) {
  #lojas {
    overflow: hidden;
  }
}
#lojas h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 100;
  color: #286EBF;
  margin-bottom: 2rem;
}
#lojas h2 strong {
  color: #160E6F;
  font-weight: 700;
}
#lojas .select2-container {
  margin-right: 2rem;
}
@media (max-width: 990px) {
  #lojas .select2-container {
    margin-bottom: 1rem;
    width: 100% !important;
  }
}
#lojas .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  border-radius: 10px;
  height: 42px;
}
#lojas .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 700;
  color: hsla(232, 26%, 17%, 0.6);
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 6px;
}
#lojas .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(../imgs/arrow_d.svg) no-repeat;
  width: 9px;
  height: 5px;
  border-width: initial;
  border-style: initial;
  margin-left: -7px;
  margin-top: 5px;
}
#lojas input[type=submit] {
  height: 43px;
  border: 0;
  background-color: #286EBF;
  color: white;
  text-transform: uppercase;
  width: 130px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
#lojas input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#lojas #resultado-lojas {
  border-top: 1px solid hsla(0, 0%, 44%, 0.1);
  margin-top: 3rem;
  margin-bottom: 2rem;
}
#lojas #resultado-lojas .slick-dotted.slick-slider {
  margin-bottom: 0;
}
#lojas #resultado-lojas .grid {
  grid-template-columns: 351px 351px 351px;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 770px) {
  #lojas #resultado-lojas .grid {
    display: block;
  }
}
@media (max-width: 500px) {
  #lojas #resultado-lojas .grid {
    display: block;
  }
}
@media (max-width: 770px) {
  #lojas #resultado-lojas .grid .content {
    margin-bottom: 3rem;
  }
}
#lojas #resultado-lojas .grid .content h3 {
  color: #160E6F;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#lojas #resultado-lojas .grid .content .slider_lojas img {
  width: 100%;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
#lojas #resultado-lojas .grid .content .slider_lojas .slick-dots {
  bottom: 6px;
}
#lojas #resultado-lojas .grid .text {
  border: 1px solid hsla(244.95, 77.6%, 24.51%, 0.21);
  border-radius: 0 0 10px 10px;
  padding: 1rem;
  font-size: 13px;
}
#lojas #resultado-lojas .grid .text p {
  margin-bottom: 0.75rem;
}
#lojas #resultado-lojas .grid .text a.mapa {
  background: #FDCA3F;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 12px;
  width: 152px;
  height: 43px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #2E277E;
  font-weight: 700;
}
#lojas #resultado-lojas .grid .contatos {
  display: flex;
  justify-content: space-between;
  margin-top: -3px;
}
#lojas #resultado-lojas .grid .contatos a {
  color: white;
  display: inline-flex;
  width: 100%;
  text-align: center;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
#lojas #resultado-lojas .grid .contatos a.fixo {
  background-color: #286EBF;
}
#lojas #resultado-lojas .grid .contatos a.whats {
  background-color: #118D37;
}
#lojas #resultado-lojas .grid .contatos a.whats img {
  margin-left: 8px;
}

html :where(img[class*=wp-image-]) {
  max-width: initial;
  width: 723px;
  aspect-ratio: initial;
  height: initial;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: initial;
}
@media (max-width: 720px) {
  html :where(img[class*=wp-image-]) {
    width: 100%;
  }
}

footer .newsletter {
  background-color: #160E6F;
  color: white;
  position: relative;
  height: 163px;
  display: flex;
  align-items: center;
}
@media (max-width: 550px) {
  footer .newsletter {
    height: auto;
    padding-block: 2rem;
  }
}
footer .newsletter .wpcf7-list-item {
  display: inline-block;
  margin: 12px 0 0;
}
footer .newsletter .wpcf7-list-item span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
  width: 14px;
  height: 14px;
  border: 2px solid white;
  transition: all 0.4s ease;
  border-radius: 7px;
}
footer .newsletter .grid {
  grid-template-columns: 30% 1fr;
}
@media (max-width: 550px) {
  footer .newsletter .grid {
    grid-template-columns: 1fr;
  }
}
footer .newsletter .boneco {
  position: relative;
}
@media (max-width: 770px) {
  footer .newsletter .boneco {
    display: none;
  }
}
footer .newsletter .boneco img {
  position: absolute;
  top: -70px;
  z-index: 9;
}
footer .newsletter .news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
footer .newsletter .news .wpcf7 form.invalid .wpcf7-response-output,
footer .newsletter .news .wpcf7 form.unaccepted .wpcf7-response-output,
footer .newsletter .news .wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}
footer .newsletter .news .wpcf7 form.failed .wpcf7-response-output,
footer .newsletter .news .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  position: absolute;
  bottom: -33px;
  font-size: 12px;
  background: #dc3232;
  border-radius: 4px;
}
@media (max-width: 550px) {
  footer .newsletter .news {
    grid-template-columns: 1fr;
  }
}
footer .newsletter .text {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
footer .newsletter .form {
  position: relative;
}
footer .newsletter input[type=email] {
  width: 270px;
  height: 44px;
  border-radius: 8px;
  border: 0;
  font-weight: 700;
  padding-left: 1rem;
  font-size: 13px;
}
footer .newsletter input[type=email]::-moz-placeholder {
  color: hsla(0, 0%, 44%, 0.7);
}
footer .newsletter input[type=email]::placeholder {
  color: hsla(0, 0%, 44%, 0.7);
}
footer .newsletter input[type=submit] {
  width: 129px;
  background: #FDCA3F;
  height: 44px;
  border-radius: 8px;
  border: 0;
  color: #2E277E;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
footer .footer2 {
  color: hsla(232, 26%, 17%, 0.6);
  font-weight: 400;
  padding-top: 9rem;
}
@media (max-width: 550px) {
  footer .footer2 {
    margin-top: 2rem;
    padding-top: 0;
  }
}
footer .footer2 a {
  color: hsla(232, 26%, 17%, 0.6);
}
footer .footer2 .horario {
  margin-top: 2rem;
}
footer .footer2 .mt-4 {
  margin-top: 14px;
}
footer .footer2 .atendimento a {
  font-size: 18px;
  font-weight: 700;
}
footer .footer2 h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
}
footer .footer2 .compre {
  width: 160px;
  height: 40px;
  background-color: #FDCA3F;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}
@media (max-width: 550px) {
  footer .footer2 .compre {
    margin-left: 0;
  }
}
footer .footer2 .compre a {
  text-transform: uppercase;
  color: #2E277E;
  font-family: var(--helv);
  font-size: 12px;
  display: flex;
  align-items: end;
  justify-content: center;
  letter-spacing: 1px;
  gap: 6px;
}
footer .footer2 .orcamento {
  margin-top: 1rem;
  width: 160px;
  height: 40px;
  background-color: #005695;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}
@media (max-width: 550px) {
  footer .footer2 .orcamento {
    margin-left: 0;
  }
}
footer .footer2 .orcamento a {
  text-transform: uppercase;
  color: white;
  font-family: var(--helv);
  font-size: 12px;
  letter-spacing: 1px;
}
footer .footer2 .grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 550px) {
  footer .footer2 .grid {
    grid-template-columns: 1fr;
  }
}
footer .footer2 .grid h3 {
  font-size: 18px;
  color: #160E6F;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
footer .social a {
  margin-right: 8px;
}
footer .social a:last-child {
  margin-right: 0;
}
footer .social img {
  margin-top: 2rem;
}
footer .menu_footer ul li {
  margin-bottom: 10px;
}
footer .menu_footer ul li a {
  font-weight: 700;
}

.wpcf7-list-item {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  margin-left: 0;
  margin-top: 1rem;
}
.wpcf7-list-item input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.wpcf7-list-item span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -5px;
  width: 14px;
  height: 14px;
  border: 2px solid white;
  transition: all 0.4s ease;
  border-radius: 7px;
}
.wpcf7-list-item input[type=checkbox]:checked + span:before {
  background: white url(../imgs/dot.svg) no-repeat;
  background-size: 60%;
  background-position: center;
  border: 2px solid white;
}

#banner_interno {
  height: 249px;
  display: flex;
  align-items: center;
}
#banner_interno h2, h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 100;
  color: #286EBF;
  text-transform: uppercase;
}
#banner_interno h2, h1 strong {
  color: #160E6F;
  font-weight: 700;
}

#form {
  margin-bottom: 10rem;
}
#form .step {
  display: none;
}
#form input,
#form select {
  border-radius: 10px;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  height: 42px;
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 1rem;
}
#form input::-moz-placeholder, #form select::-moz-placeholder {
  color: #212438;
}
#form input::placeholder,
#form select::placeholder {
  color: #212438;
}
#form input[type=file] {
  padding-top: 10px;
}
#form button {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 108px;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  border: 0;
  float: right;
}
#form button.ant {
  background-color: #286EBF;
  color: white;
  margin-right: 1rem;
}
#form .grid {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#form .grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
#form .progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 3rem;
}
#form .progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #286EBF;
  margin: 0 5px;
  position: relative;
  transition: all 0.4s ease;
}
#form .progress-dot:after {
  content: "";
  width: 139px;
  background-color: hsla(244, 72%, 22%, 0.3);
  height: 1px;
  position: absolute;
  top: 8px;
  left: 30px;
}
@media (max-width: 770px) {
  #form .progress-dot:after {
    top: 9px;
    left: 24px;
    width: 50px;
  }
}
#form .progress-dot:last-child::after {
  display: none;
}
#form .progress-dot.active {
  background: url(../imgs/active_dot.svg) center no-repeat;
  width: 18px;
  height: 17px;
}
#form .intro {
  color: #212438;
  margin-top: 2rem;
  text-align: center;
}
#form .intro h2 {
  font-size: 30px;
  font-weight: 700;
  color: #286EBF;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
#form .cv a {
  text-transform: uppercase;
  color: #286EBF;
  font-family: var(--helv);
  font-size: 12px;
  width: 190px;
  height: 44px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border: 2px solid #286EBF;
  border-radius: 8px;
  transition: all 0.4s ease;
}
#form .cv a:hover {
  background-color: #286EBF;
  color: white;
}
#form .cv a:hover svg path {
  fill: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal input,
.modal select {
  border-radius: 10px;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  height: 42px;
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 1rem;
}
.modal input::-moz-placeholder, .modal select::-moz-placeholder {
  color: #212438;
}
.modal input::placeholder,
.modal select::placeholder {
  color: #212438;
}
.modal input[type=file] {
  padding-top: 10px;
}
.modal input[type=submit] {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 100%;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  border: 0;
  cursor: pointer;
}
.modal .modal-content {
  background-color: #fff;
  max-width: 500px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
.modal .modal-content h2 {
  margin-top: 0;
  color: #286EBF;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.modal .modal-content .close-modal {
  margin-top: 20px;
  position: absolute;
  top: 0;
  right: 1rem;
  border: 0;
  color: #000000;
  background-color: transparent;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.modal-open {
  display: block;
}

.wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  transition: all 0.4s ease;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

#quem {
  padding-block: 3rem;
}
#quem .grid {
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
}
@media (max-width: 990px) {
  #quem .grid {
    grid-template-columns: 1fr;
  }
}
#quem .img {
  position: relative;
}
#quem .img img {
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  #quem .img img {
    width: 100%;
  }
}
#quem .img img.boneco2 {
  position: absolute;
  right: -30px;
  bottom: -25px;
}
@media (max-width: 990px) {
  #quem .img img.boneco2 {
    display: none;
  }
}
#quem .img:after, #quem .img:before {
  position: absolute;
  content: "";
}
#quem .img:after {
  width: 300px;
  height: 300px;
  background: #160E6F;
  bottom: -16px;
  left: -16px;
}
#quem .img:before {
  width: 146px;
  height: 146px;
  background: #286EBF;
  top: -16px;
  right: -16px;
}
#quem .text {
  color: #212438;
  font-size: 1rem;
}
#quem .text p {
  line-height: 26px;
}
#quem .text h2 {
  font-size: 30px;
  color: #286EBF;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 1rem;
}
#quem .text h3 {
  color: #160E6F;
  font-size: 18px;
  font-weight: 700;
  margin-block: 0.7rem;
}
#quem .text ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  padding-left: 1rem;
}
@media (max-width: 990px) {
  #quem .text ul {
    grid-template-columns: 1fr;
  }
}
#quem .text ul li {
  margin-bottom: 0.7rem;
  list-style: disc;
}

#second {
  background: #160E6F;
  color: white;
  font-size: 1rem;
  padding-block: 2.75rem;
  margin-top: 3rem;
}
#second .grid {
  grid-template-columns: 60% 1fr;
  gap: 3rem;
}
@media (max-width: 990px) {
  #second .grid {
    grid-template-columns: 1fr;
  }
}
#second .img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 990px) {
  #second .img img {
    width: 100%;
  }
}
#second .text {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 40px;
       column-gap: 40px;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 990px) {
  #second .text {
    -moz-column-count: 1;
         column-count: 1;
  }
}
#second .text p {
  line-height: 26px;
  margin-bottom: 0.7rem;
}

#linhatempo {
  padding-block: 4rem;
}
#linhatempo h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 100;
  color: #286EBF;
  text-transform: uppercase;
}
#linhatempo h2 strong {
  color: #160E6F;
  font-weight: 700;
}
#linhatempo .events-content .grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 990px) {
  #linhatempo .events-content .grid {
    grid-template-columns: 1fr;
  }
}
#linhatempo .events-content .grid .text {
  font-size: 1rem;
  color: #212438;
  font-weight: normal;
}
#linhatempo .events-content .grid .text h3 {
  font-size: 30px;
  color: #286EBF;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
#linhatempo .events-content .grid .img {
  width: 352px;
  -o-object-fit: cover;
     object-fit: cover;
}
#linhatempo .cd-horizontal-timeline a {
  text-decoration: none;
}
#linhatempo .cd-horizontal-timeline {
  opacity: 0;
  margin: 2em auto;
  transition: opacity 0.2s;
}
#linhatempo .cd-horizontal-timeline::before {
  content: "mobile";
  display: none;
}
#linhatempo .cd-horizontal-timeline.loaded {
  opacity: 1;
}
#linhatempo .cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
#linhatempo .cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}
#linhatempo .cd-horizontal-timeline .events-wrapper::before {
  left: 0;
  background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
}
#linhatempo .cd-horizontal-timeline .events-wrapper::after {
  right: 0;
  background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
}
#linhatempo .cd-horizontal-timeline .events {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  background: #dfdfdf;
  transition: transform 0.4s;
}
#linhatempo .cd-horizontal-timeline .filling-line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #286EBF;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}
#linhatempo .cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  padding-bottom: 15px;
  font-weight: 700;
  color: #160E6F;
  transform: translateZ(0);
  letter-spacing: 1px;
}
#linhatempo .cd-horizontal-timeline .events a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: -8px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #286EBF;
  transition: background-color 0.3s, border-color 0.3s;
}
#linhatempo .no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #085796;
  border-color: #085796;
}
#linhatempo .cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}
#linhatempo .cd-horizontal-timeline .events a.selected::after {
  background: #fff url(../imgs/dot_time.svg);
}
@media only screen and (min-width: 1100px) {
  #linhatempo .cd-horizontal-timeline {
    margin: 6em auto;
  }
  #linhatempo .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: "desktop";
  }
}
#linhatempo .cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  height: 42px;
  width: 42px;
  overflow: hidden;
  transition: border-color 0.3s;
}
#linhatempo .cd-timeline-navigation a.inactive {
  opacity: 0.7;
}
#linhatempo .cd-timeline-navigation a.prev::before {
  content: "";
  background: url(../imgs/arrow_l.svg);
  position: absolute;
  z-index: 10000;
  height: 42px;
  width: 42px;
  text-align: center;
}
#linhatempo .cd-timeline-navigation a.next::before {
  content: "";
  background: url(../imgs/arrow_r.svg);
  position: absolute;
  z-index: 10000;
  height: 42px;
  width: 42px;
}
#linhatempo .cd-timeline-navigation a:hover:before {
  color: #005695;
}
#linhatempo .cd-timeline-navigation a.next {
  right: 0;
}
#linhatempo .no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f;
}
#linhatempo .cd-timeline-navigation a.inactive {
  cursor: not-allowed;
}
#linhatempo .cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}
#linhatempo .no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}
#linhatempo .cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 2em 0;
  overflow: hidden;
  transition: height 0.4s;
}
#linhatempo .cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
#linhatempo .cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}
#linhatempo .cd-horizontal-timeline .events-content li.enter-right,
#linhatempo .cd-horizontal-timeline .events-content li.leave-right {
  animation-name: cd-enter-right;
}
#linhatempo .cd-horizontal-timeline .events-content li.enter-left,
#linhatempo .cd-horizontal-timeline .events-content li.leave-left {
  animation-name: cd-enter-left;
}
#linhatempo .cd-horizontal-timeline .events-content li.leave-right,
#linhatempo .cd-horizontal-timeline .events-content li.leave-left {
  animation-direction: reverse;
}
#linhatempo .cd-horizontal-timeline .events-content li > * {
  max-width: 660px;
  margin: 0 auto;
}
#linhatempo .cd-horizontal-timeline .events-content h2 {
  color: #005695;
  font-weight: bold;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
#linhatempo .cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}
#linhatempo .cd-horizontal-timeline .events-content em::before {
  content: "- ";
}
#linhatempo .cd-horizontal-timeline .events-content em,
#linhatempo .cd-horizontal-timeline .events-content p {
  line-height: 1.6;
}
#linhatempo .cd-horizontal-timeline .events-content p {
  display: block;
  margin-bottom: 15px;
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

#banner_blog.interna {
  margin-bottom: 3rem;
}
@media (max-width: 770px) {
  #banner_blog.interna .container {
    padding-inline: 0;
  }
}
#banner_blog.interna .cc {
  height: initial;
}
#banner_blog.interna .img {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
}
#banner_blog .slick-dots li button:before {
  display: none;
}
#banner_blog .slick-dots li.slick-active button:after,
#banner_blog .slick-dots li:hover button:after {
  opacity: 1;
}
#banner_blog .slick-next {
  background: url(../imgs/arrow_w_r.svg) no-repeat;
  width: 42px;
  height: 42px;
  right: -67px;
}
#banner_blog .slick-prev {
  background: url(../imgs/arrow_w_l.svg) no-repeat;
  width: 42px;
  height: 42px;
  left: -67px;
  z-index: 5;
}
#banner_blog .slick-dots li button {
  background-color: #160E6F;
  border-radius: 2rem;
  width: 9px;
  height: 9px;
  transition: all 0.4s ease;
}
#banner_blog .slick-dots li button:after {
  transition: all 0.4s ease;
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  border: 2px solid #160E6F;
  top: -10px;
  left: -10px;
  border-radius: 2rem;
  opacity: 0;
}
#banner_blog .dots_nav {
  position: absolute;
  bottom: 66px;
}
#banner_blog .dots_nav .slick-dots {
  bottom: 0;
  display: flex;
}
#banner_blog .dots_nav .slick-dots li {
  margin-right: 24px;
}
#banner_blog .cc {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
}
#banner_blog .cc .box {
  border-radius: 10px 0px;
  background: hsla(0, 0%, 100%, 0.9);
  width: 400px;
  padding: 24px;
  box-shadow: 0px 16px 18px -18px rgba(0, 0, 0, 0.08);
}
@media (max-width: 770px) {
  #banner_blog .cc .box {
    width: 100%;
  }
}
#banner_blog .cc .box p {
  margin-bottom: 1rem;
}
#banner_blog .cc .box h2 {
  color: #160E6F;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#banner_blog .cc .box a {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 108px;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  align-items: center;
}
#banner_blog img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner_artigos {
  margin-block: 3rem;
}
.banner_artigos h2 {
  color: #160b7d;
  font-size: 40px;
}

#post_bar {
  margin-bottom: 5rem;
}
@media (max-width: 770px) {
  #post_bar.interna .grid {
    display: block;
  }
  #post_bar.interna .grid img {
    width: 100%;
  }
}
#post_bar.interna .l_post img.aligncenter {
  clear: both;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-block: 2rem;
}
#post_bar.interna .l_post {
  display: block;
  width: 723px;
}
@media (max-width: 820px) {
  #post_bar.interna .l_post {
    width: 100%;
  }
}
#post_bar.interna .l_post h1 {
  margin-top: 0;
  font-size: 40px;
  font-weight: 700;
  color: #160b7d;
}
#post_bar.interna .l_post h2,
#post_bar.interna .l_post h3,
#post_bar.interna .l_post h4,
#post_bar.interna .l_post h5 {
  color: #005695;
}
#post_bar.interna .l_post h2 {
  margin: 1.75rem 0;
  font-size: 30px;
  font-weight: 500;
}
#post_bar.interna .l_post h3 {
  margin: 1.75rem 0;
  font-size: 26px;
  font-weight: 500;
}
#post_bar.interna .l_post h4 {
  margin: 1.75rem 0;
  font-size: 22px;
  font-weight: 500;
}
#post_bar.interna .l_post p {
  margin-bottom: 1rem;
  line-height: 24px;
}
#post_bar.interna .l_post p a {
  text-decoration: underline;
  color: black;
}
#post_bar.interna .l_post .share {
  border-top: 1px solid hsla(0, 0%, 44%, 0.26);
  padding: 10px 0 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}
#post_bar.interna .l_post .share span {
  font-weight: 500;
  font-size: 14px;
}
#post_bar.interna .l_post .share .addtoany_list a:not(.addtoany_special_service) > span {
  background: #D60812 !important;
}
#post_bar.interna .l_post .share .links a {
  margin-right: 1rem;
}
#post_bar .grid {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 880px) {
  #post_bar .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#post_bar .l_post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 990px) {
  #post_bar .l_post {
    grid-template-columns: 1fr;
  }
}
#post_bar .l_post .post_box {
  position: relative;
  border: 1px solid hsla(0, 0%, 44%, 0.2);
  border-radius: 12px;
  color: #212438;
}
#post_bar .l_post .post_box img {
  border-radius: 12px 12px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#post_bar .l_post .post_box h2 {
  color: #160b7d;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
#post_bar .l_post .post_box .ct {
  padding: 1rem;
}
#post_bar .l_post .post_box .l {
  display: flex;
  justify-content: end;
  margin-top: 0.7rem;
}
#post_bar .l_post .post_box .l a {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 108px;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  align-items: center;
}
#post_bar .post_box {
  position: relative;
}
#post_bar .r_post h3 {
  font-size: 28px;
  color: #286EBF;
  font-weight: 700;
}
#post_bar .r_post .categoria h3 {
  margin-bottom: 1rem;
}
#post_bar .r_post .categoria .select2-container {
  width: 160px !important;
}
#post_bar .r_post .categoria ul li {
  border-top: 1px solid hsla(0, 0%, 20%, 0.196);
}
#post_bar .r_post .categoria ul li:last-child {
  border-bottom: 1px solid hsla(0, 0%, 20%, 0.196);
}
#post_bar .r_post .categoria ul li a {
  color: #160E6F;
  font-size: 18px;
  padding-block: 1rem;
  display: block;
}
#post_bar .r_post .you {
  margin-block: 2rem;
}
#post_bar .r_post .you h3 {
  margin-bottom: 1.7rem;
}

.ver-todos {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 170px;
  border: 1px solid transparent;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: 0;
  font-size: 12px;
  letter-spacing: 2px;
  align-items: center;
  margin-top: 2rem;
  cursor: pointer;
}
.ver-todos:hover {
  background-color: transparent;
  border-color: #005695;
}

.lsta_post {
  margin-top: 3rem;
}
.lsta_post .post_box {
  position: relative;
  transition: all 0.4s ease;
  padding-bottom: 1rem;
}
.lsta_post .post_box a.ab {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.lsta_post .post_box:hover {
  transform: scale(1.02);
}
.lsta_post .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.lsta_post .grid h3 {
  color: #160b7d;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .lsta_post .grid h3 {
    line-height: 32px;
  }
}
.lsta_post .grid .ct {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  padding: 1rem;
}
.lsta_post .grid .cc {
  display: block;
  min-height: 146px;
}
.lsta_post .grid .img img {
  border-radius: 12px 12px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.lsta_post .grid .l {
  display: flex;
  justify-content: end;
  margin-top: 0.7rem;
}
.lsta_post .grid .l a {
  background-color: #FDCA3F;
  color: #2E277E;
  font-family: var(--helv);
  width: 108px;
  height: 43px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  align-items: center;
}

.veja h2 {
  font-size: 40px;
  font-size: 700;
  color: #160E6F;
  text-transform: uppercase;
  border-top: 1px solid hsla(0, 0%, 44%, 0.2);
  padding-top: 3rem;
}
.veja h2 strong {
  color: #3F72BF;
  font-weight: 100;
}

#form_or {
  padding-block-start: 3rem;
  padding-block-end: 5rem;
}
#form_or input,
#form_or select,
#form_or textarea {
  border-radius: 10px;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  height: 42px;
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 1rem;
}
#form_or input::-moz-placeholder, #form_or select::-moz-placeholder, #form_or textarea::-moz-placeholder {
  color: #212438;
}
#form_or input::placeholder,
#form_or select::placeholder,
#form_or textarea::placeholder {
  color: #212438;
}
#form_or input[type=submit] {
  height: 43px;
  border: 0;
  background-color: #FDCA3F;
  color: #160E6F;
  text-transform: uppercase;
  width: 114px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
#form_or textarea {
  height: 120px;
  padding-top: 1rem;
}
#form_or .flex.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
#form_or .wpcf7-list-item {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  margin-left: 0;
  margin-right: 3rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
#form_or .wpcf7-list-item label {
  text-transform: uppercase;
  color: #212438;
}
#form_or .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#form_or .wpcf7-list-item span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  width: 16px;
  height: 16px;
  border: 1px solid hsla(0, 0%, 47%, 0.2);
  transition: all 0.4s ease;
  border-radius: 6px;
}
#form_or .wpcf7-list-item input[type=checkbox]:checked + span:before {
  background: white url(../imgs/dot.svg) no-repeat;
  background-size: 60%;
  background-position: center;
  border: 1px solid hsla(0, 0%, 47%, 0.2);
}

.banner_resultado {
  height: 200px;
  display: flex;
  align-items: center;
  background: #085796;
}
.banner_resultado h2 {
  color: white;
  font-size: 40px;
}

#resultado {
  margin-block: 4rem;
}
#resultado .search-results .post {
  margin-block-start: 2rem;
}
#resultado .search-results .post p {
  margin-block: 10px;
}
#resultado .search-results .post a {
  color: #333;
  font-size: 18px;
}/*# sourceMappingURL=main.css.map */

#linhatempo {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#linhatempo h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #160b7d;
    margin-bottom: 50px;
    font-weight: 300;
}

#linhatempo h2 strong {
    font-weight: 700;
    color: #085796;
}

#linhatempo .mvv-container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
}

#linhatempo .mvv-item {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(22, 11, 125, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#linhatempo .mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 11, 125, 0.15);
}

#linhatempo .mvv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #160b7d, #085796, #005695);
}

#linhatempo .mvv-item h3 {
    font-size: 1.8rem;
    color: #160b7d;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

#linhatempo .mvv-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #085796;
}

#linhatempo .mvv-item p,
#linhatempo .mvv-item li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-top: 25px;
}

#linhatempo .mvv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #160b7d, #085796);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

#linhatempo .missao .mvv-icon {
    background: linear-gradient(135deg, #160b7d, #085796);
}

#linhatempo .visao .mvv-icon {
    background: linear-gradient(135deg, #085796, #005695);
}

#linhatempo .valores .mvv-icon {
    background: linear-gradient(135deg, #005695, #160b7d);
}

#linhatempo .mvv-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    #linhatempo .mvv-container {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

    #linhatempo h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    #linhatempo .mvv-item {
        padding: 30px 25px;
    }

    #linhatempo .mvv-item h3 {
        font-size: 1.5rem;
    }

    #linhatempo .mvv-item p {
        font-size: 1rem;
    }

    #linhatempo .mvv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #linhatempo .container {
        padding: 30px 15px;
    }

    #linhatempo {
        padding: 40px 0;
    }

    #linhatempo .mvv-item {
        padding: 25px 20px;
    }

    #linhatempo h2 {
        font-size: 1.8rem;
    }
}

.add-more{
  text-align: center;
  padding: 20px;
  margin-top: 18px;
  position: relative;
}

.add-more::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: gray;
}

.form-info{
  padding-bottom: 8px;
}

.step .wpcf7-textarea {
    width: 100% !important;
}

#form .cv-upload {
  text-transform: uppercase;
  color: #286EBF;
  font-family: var(--helv);
  font-size: 12px;
  width: 190px;
  height: 44px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border: 2px solid #286EBF;
  border-radius: 8px;
  transition: all 0.4s ease;
}

#form .cv-input {
    display: none !important;
}

#form .cv a {
    cursor: pointer;
}

.wpcf7-not-valid {
    border-color: #dc3232 !important;
    background-color: #ffebe8 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-weight: normal;
    display: block;
    margin-bottom: 10px;
    display: flex !important;
}

.wpcf7-not-valid:focus {
    outline: none;
    border-color: #dc3232 !important;
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.2);
}


.bairro-input{
  width: 230px;
}


/* Botão Comrpe Agora */
.compre.compre-agora-btn {
    width: 160px;
    height: 40px;
    background-color: #FDCA3F;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative;
    overflow: hidden; 
    transition: transform 0.3s ease;
}

footer .compreC {
  display: flex;
  width: 100%;
  background-color: #160b7d;
  justify-content: center;
  padding-block: 1rem;
  z-index: 9;
}

.compreC.is-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
}

.compreC.is-static {
  position: relative;
}

.compre.compre-agora-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none; 
}

.compre.compre-agora-btn:hover {
    transform: scale(1.03);
}

.compre.compre-agora-btn:hover::before {
    width: 250px;
    height: 250px;
}

.compre-agora-anchor {
    cursor: pointer;
    text-transform: uppercase;
    color: #2E277E;
    font-family: var(--helv);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    gap: 6px;
    text-decoration: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2; 
}

.compre-agora-anchor svg {
    transition: transform 0.3s ease;
}

.compre-agora-anchor:hover svg {
    transform: translateX(3px);
}