@charset "UTF-8";
/*
 *  FAQ's Page Stylesheet
 */
:root {
  --primary: #00b3be;
  --secondary: #a4ce3c;
  --terciary: #486066;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

.site-content {
  padding: 0;
}

section.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 275px;
}

a {
  text-decoration: none !important;
}

/* SEARCH BAR */
.search-container > div > p {
  font-weight: 900 !important;
}

#searchWrapper .input-container {
  margin: 0 auto;
  background: #E5E5E5;
  border-radius: 30px !important;
  opacity: 1;
  height: 50px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  background: #E5E5E5;
}

input#filter {
  color: #232020;
  background: transparent;
  border: none;
  width: 100%;
}

input#filter::-webkit-input-placeholder {
  font-weight: 900;
}

input#filter:focus-visible {
  outline: none !important;
}

.label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: all 0.2s ease-out;
  font-size: 1em;
  font-family: "Lato";
  font-weight: 900;
  line-height: 1em !important;
  color: #232020;
  text-transform: uppercase;
}

input:not(:placeholder-shown) + label {
  color: #111;
  transform: translate(0, -1.75rem);
}

.fa-search, .fa-times {
  color: #000000;
  font-size: 1.3rem !important;
  margin-right: 15px;
}

#times {
  font-size: 1.6rem !important;
  border: none;
}

#dropWrapper.over {
  z-index: 5;
  position: absolute;
  background: #E5E5E5;
  border-radius: 30px;
  padding: 0 15px;
}

#ul-drop {
  overflow-y: auto;
  max-height: 110px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#ul-drop.bootstrap-select {
  width: 100% !important;
  background: #E5E5E5;
}

#ul-drop::-webkit-scrollbar {
  width: 5px;
  border: 5px solid transparent;
}

/* Track */
#ul-drop::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
#ul-drop::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

/* Handle on hover */
#ul-drop::-webkit-scrollbar-thumb:hover {
  background: black;
}

li.resultados button.value {
  border-bottom: 1px solid #707070;
  border-top: none;
  border-left: none;
  border-right: none;
  color: #232020;
  background: transparent;
  width: 99%;
  text-align: left;
  font-weight: 900;
  padding: 0.7142em 1.2143em 0.7142em 0%;
}

#ul-drop > li > button > sup {
  top: 0.5em;
}

/* TOPIC STYLINGS */
button[id^=topic] {
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  outline: 0;
  display: block;
}

button[id^=topic] h5::after {
  background-image: none;
  content: "\f078";
  font-family: FontAwesome;
  color: #4D5F65;
  font-size: 1.3rem;
  line-height: 1.3rem;
  position: absolute;
  right: 0;
  top: 0;
  margin-right: 15px;
  transform: translateY(50%);
}

.accordion-button:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: none;
  border-color: none;
}

button[id^=topic]:not(.collapsed) {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  outline: 0;
}

button[id^=topic]:not(.collapsed) h5::after {
  color: var(--white);
  transform: translateY(50%) rotate(-180deg);
}

button[id^=topic] h5 {
  color: var(--primary);
  font-weight: 900 !important;
  text-align: center;
}

button[id^=topic]:not(.collapsed) h5 {
  color: var(--white);
}

/* Q&A STYLINGS */
div[class^=topicBody] button {
  margin-top: 20px;
  border-bottom: 1px dashed #707070;
}

div[class^=topicBody] button:hover {
  margin-top: 20px;
  background: none;
}

div[class^=topicBody] button:focus {
  border-color: var(--terciary);
  background-color: var(--white);
}

div[class^=topicBody] button:not(.collapsed) {
  color: var(--terciary);
  background-color: var(--white);
}

div[class^=topicBody] button:not(.collapsed) p::after {
  background-image: none;
  content: "\f056";
  font-family: FontAwesome;
  color: var(--terciary);
  font-size: 1.3rem;
  line-height: 1.3rem;
  transform: none;
}

div[class^=topicBody] button p::after {
  background-image: none;
  content: "\f055";
  font-family: FontAwesome;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.3rem;
  position: absolute;
  top: 5px;
  right: 0;
}

div[class^=topicBody] button > p {
  font-weight: 700 !important;
  font-size: 1.2em;
  color: var(--terciary);
}

div[id^=faqQuestion] p {
  font-size: 1.2em;
  color: #858B8B;
}

/* CONTACT FORM */
:root {
  --principal: white;
  --secundario: white;
  --terciario: #333;
}

section#contact {
  background-color: var(--primary);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form p {
  width: 49%;
  margin-bottom: 10px;
}

.contact-form > p:nth-child(5), .contact-form > p:nth-child(6), .contact-form > p:nth-child(7), .contact-form > p:nth-child(8) {
  width: 100%;
}

.contact-form > p:last-child {
  text-align: center;
}

.contact-form textarea {
  margin-bottom: 0 !important;
}

.wpcf7 p .wpcf7-form-control.wpcf7-submit {
  float: none;
  margin: 10px auto;
}

#enviar {
  color: var(--principal);
  background: var(--secondary);
  border: 1px solid var(--principal);
  font-weight: 600;
  font-size: 12px;
  padding: 10px 20px;
  display: block;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  transition: all 0.3s ease-out;
  min-width: 200px;
  width: 40%;
}

#enviar:hover {
  color: var(--secondary);
  background: var(--principal);
  border: 1px solid var(--secondary);
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel] {
  width: 100% !important;
}

.contact-form > p > span > input, .contact-form > p > span > textarea, .contact-form > p > span > .intl-tel-input > input {
  background-color: var(--principal);
  border: 1px solid var(--principal);
  border-radius: 8px;
}

.contact-form > p > span > input:focus-visible, .contact-form > p > span > textarea:focus-visible, .wpcf7-form-control-wrap.your-message:focus-visible {
  border: 1px solid var(--principal) !important;
  border-radius: 8px;
}

.contact-form > p > span > input {
  height: 40px;
}

.contact-form > p > span > textarea {
  resize: none;
}

.contact-form > p > span > input::-webkit-input-placeholder, .contact-form > p > span > textarea::-webkit-input-placeholder,
.contact-form > p > span > input, .contact-form > p > span > textarea, .contact-form > p:nth-child(7) > span > span > span > label > span {
  width: 100%;
  font-size: 16px;
  color: var(--terciario);
  font-weight: 600;
  border-radius: 8px;
}

span.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item-label {
  display: inline;
}

.contact-form label {
  text-transform: initial;
}

.contact-form input[type=email], .contact-form input[type=tel], .contact-form input[type=text], .contact-form input[type=url] {
  margin-bottom: 0 !important;
}

body section .containerTit p {
  margin: 0 !important;
}

/* 
 * Contact Form 7 Response Outputs 
 */
/* Default e Spam */
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-bottom: 2em;
  padding: 1.2em 1em;
  border: 0;
  border-left: 12px solid #0A7BED !important;
  border-radius: 15px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1607843137);
  background: white;
  display: flex;
  align-items: center;
}

.wpcf7 form .wpcf7-response-output::before {
  content: "";
  background-image: url("../img/circle-info-solid.svg");
  background-repeat: no-repeat;
  height: 47px;
  width: 47px;
  display: inline-block;
  margin-right: 15px;
}

/* Enviado */
.wpcf7 form.sent .wpcf7-response-output {
  border-left: 12px solid #1C8B20 !important;
}

.wpcf7 form.sent .wpcf7-response-output::before {
  background-image: url("../img/circle-check-solid.svg");
}

/* Falhado ou Abortado */
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-left: 12px solid #C32424 !important;
}

.wpcf7 form.failed .wpcf7-response-output::before,
.wpcf7 form.aborted .wpcf7-response-output::before {
  background-image: url("../img/circle-xmark-solid.svg");
}

/* Inválido */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-left: 12px solid #F4BD06 !important;
}

.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before {
  background-image: url("../img/triangle-exclamation-solid.svg");
}

/* Plugin Indicativo Telefone */
.contact-form > p:nth-child(4) > span > div > input.wpcf7-form-control.wpcf7-text.wpcf7-phonetext.wpcf7-validates-as-required.p-3 {
  width: 100%;
  height: 40px;
  padding-left: 3rem !important;
  font-size: 16px;
  color: var(--terciario);
  font-weight: 600;
}

/* -------- styles only for mobile: medium devices -------- */
@media screen and (max-width: 766.98px) {
  div.col-md-6.mt-5 {
    margin-top: 0 !important;
  }
}
/* -------- styles only for mobile: small devices -------- */
@media screen and (max-width: 575.98px) {
  .contact-form p {
    width: 100%;
  }
  .contact-form {
    padding-left: 2rem;
  }
}