.faq__botoes {
  margin-bottom: 3em;
  display: flex;
}
@media (max-width: 768px) {
  .faq__botoes {
    display: none;
  }
}
.faq__botoes button.faq-botao {
  background-color: var(--purple-color);
  color: var(--blue-color);
  font-weight: 800;
  min-height: 50px;
  width: 100%;
}
.faq__botoes button.faq-botao.ativo, .faq__botoes button.faq-botao:hover {
  background-color: var(--pink-color);
  color: var(--white-color);
}
.faq .faq-conteudo .schema-faq-section {
  margin-bottom: 14px;
  border-bottom: 1px solid #BEBFC0;
}
.faq .faq-conteudo .schema-faq-section .schema-faq-question {
  cursor: pointer;
  font-size: var(--text-small);
  text-transform: uppercase;
  color: #002060;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  font-weight: 800;
}
.faq .faq-conteudo .schema-faq-section .schema-faq-question::after {
  transition: all 0.3s linear;
  content: "";
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #FFF;
  width: 20px;
  height: 20px;
  display: inline-block;
  -webkit-mask-image: var(--plus);
  mask-image: var(--plus);
  background: black;
}
@media (max-width: 400px) {
  .faq .faq-conteudo .schema-faq-section .schema-faq-question {
    font-size: 16px;
  }
}
.faq .faq-conteudo .schema-faq-section .schema-faq-answer {
  display: none;
  padding: 12px 0 20px;
  text-wrap: balance;
}
.faq .faq-conteudo .schema-faq-section.active .schema-faq-question strong {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.faq .faq-conteudo .schema-faq-section.active .schema-faq-question::after {
  -webkit-mask-image: var(--minus);
  mask-image: var(--minus);
  transform: rotate(180deg);
  transition: all 0.3s linear;
}
.faq .faq-conteudo .schema-faq-section.active .schema-faq-answer {
  display: block;
}
.faq__select {
  display: none;
  position: relative;
  z-index: 100;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .faq__select {
    display: block;
  }
}
.faq__select::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pink-color);
  border: none;
  transition: background 0.2s linear;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0% 100%);
  z-index: -1;
}
.faq__select .faq-selectBox {
  position: relative;
  cursor: pointer;
  font-size: var(--text-small);
  line-height: 16px;
  font-weight: 800;
  color: var(--white-color);
}
.faq__select .faq-selectBox__value {
  padding: 17px 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  z-index: 1;
  position: relative;
}
.faq__select .faq-selectBox .faq-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.faq__select .faq-selectBox .faq-dropdown-item.ativo, .faq__select .faq-selectBox .faq-dropdown-item:active {
  background-color: var(--blue-color);
}
.faq__select .faq-selectBox:after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.2s ease-in-out;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
  filter: invert(1);
  z-index: 0;
}
.faq__select .faq-selectBox .dropdown-menu {
  transition: all 0.5s ease-in-out;
  opacity: 0;
  display: block;
  top: 100%;
  width: 100%;
  max-height: 250px;
  z-index: -1;
  overflow-y: auto;
  transform: translateY(-15%);
  visibility: hidden;
}
.faq__select .faq-selectBox.ativo:after {
  transform: translateY(-50%) rotate(180deg);
}
.faq__select .faq-selectBox.ativo .dropdown-menu {
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}

.newsletter h2 {
  font-size: 20px !important;
}
.newsletter__bg-white:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  rotate: 270deg;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent var(--purple-color) transparent;
  z-index: 1;
}
.newsletter__bg-white form .wpcf7-response-output {
  position: absolute;
  right: 0;
  left: 0;
  top: -72px;
  color: #FFF;
}
@media (max-width: 991px) {
  .newsletter__bg-white form .wpcf7-response-output {
    top: -50px;
  }
}
.newsletter__bg-white form .wrap-form > p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.newsletter__bg-white form .wrap-form > p input {
  height: 50px;
  padding: 4px 18px 4px;
  color: #888888;
  margin-top: 18px;
  border: 1px solid #D9D9D9;
  width: 100%;
}
.newsletter__bg-white form .wrap-form > p button {
  font-weight: 800;
  min-height: 50px;
  background-color: var(--pink-color);
  color: var(--white-color);
  padding: 0px 48px;
  position: relative;
  bottom: -25px;
  z-index: 1;
  overflow: visible;
}

/*# sourceMappingURL=faq.css.map */
