@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

input[type=checkbox],
input[type=radio] {
  --myactive: #6bab3d;
  --myactive-inner: #FFFFFF;
  --focus: 2px rgba(255, 255, 255, 0.3);
  --border: #b9b9b9;
  --border-hover: #6bab3d;
  --background: #FFFFFF;
  --disabled: #242424;
  --disabled-inner: #7E7E7E;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 21px !important;
  outline: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 5px 0 0;
  cursor: pointer;
  border: 1px solid var(--border) !important;
  background: var(--b, var(--background)) !important;
  -webkit-transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
  transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
  transition: background .3s, border-color .3s, box-shadow .2s;
  transition: background .3s, border-color .3s, box-shadow .2s, -webkit-box-shadow .2s;
}

input[type=checkbox]:after,
input[type=radio]:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  --b: var(--myactive);
  --bc: var(--myactive);
  --d-o: .3s;
  --d-t: .6s;
  --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}

input[type=checkbox]:disabled,
input[type=radio]:disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: .9;
}

input[type=checkbox]:disabled:checked,
input[type=radio]:disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}

input[type=checkbox]:disabled + label,
input[type=radio]:disabled + label {
  cursor: not-allowed;
}

input[type=checkbox]:hover:not(:checked):not(:disabled),
input[type=radio]:hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}

input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 0;
}

input[type=checkbox] {
  width: 38px !important;
  border-radius: 11px;
}

input[type=checkbox]:after {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: var(--ab, var(--border));
  -webkit-transform: translateX(var(--x, 0));
          transform: translateX(var(--x, 0));
}

input[type=checkbox]:checked {
  --ab: var(--myactive-inner);
  --x: 17px;
}

input[type=checkbox]:disabled:not(:checked):after {
  opacity: .6;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:after {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--myactive-inner);
  opacity: 0;
  -webkit-transform: scale(var(--s, 0.7));
          transform: scale(var(--s, 0.7));
}

input[type=radio]:checked {
  --s: .5;
}

input[type=range] {
  width: 100%;
  margin: 6px 0;
  background-color: transparent;
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #d1d1d1;
  border: 0;
  border-radius: 6px;
  width: 100%;
  height: 6px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -6px;
  width: 10px;
  height: 18px;
  background: #6bab3d;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #dedede;
}

input[type=range]::-moz-range-track {
  box-shadow: none !important;
  background: #d1d1d1;
  border: 0;
  border-radius: 6px;
  width: 100%;
  height: 6px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 10px;
  height: 18px;
  background: #6bab3d;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  box-shadow: none !important;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
  width: 100%;
  height: 6px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: #c4c4c4;
  border: 0;
  border-radius: 12px;
}

input[type=range]::-ms-fill-upper {
  background: #d1d1d1;
  border: 0;
  border-radius: 12px;
}

input[type=range]::-ms-thumb {
  width: 10px;
  height: 18px;
  background: #6bab3d;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb cent#dedede*/
}

input[type=range]:focus::-ms-fill-lower {
  background: #d1d1d1;
}

input[type=range]:focus::-ms-fill-upper {
  background: #dedede;
}

/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
  how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align: auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range] {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}

/* ==|== Components ===============================================
    LOADING
   ================================================================ */
#effetivo-loading-overlay, .effetivo-loading-overlay {
  z-index: 10000;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.6s ease !important;
  transition: all 0.6s ease !important;
}

#effetivo-loading-overlay.load, .effetivo-loading-overlay.load {
  visibility: hidden;
  opacity: 0;
}

/* ==|== Components ===============================================
    PROGRESS-BAR
   ================================================================ */
.effetivo-progress-wrapper {
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: #565656;
}

.effetivo-progress-bar {
  height: 5px;
  width: 0%;
  background: #50F7A5;
  background: linear-gradient(60deg, #50F7A5 20%, #06CFF7 100%);
  -webkit-transition: all 0.6s ease !important;
  transition: all 0.6s ease !important;
}

@media (min-width: 576px) {
  body.admin-bar .effetivo-progress-wrapper {
    top: 32px;
  }
}

@media (max-width: 767.98px) {
  body.admin-bar .effetivo-progress-wrapper {
    top: 45px;
  }
}

@media (max-width: 575.98px) {
  body.admin-bar .effetivo-progress-wrapper {
    top: 0px;
  }
}

/* ==|== Components ===============================================
    SCROLL-TO-TOP-BUTTON
   ================================================================ */
#effetivo-scroll-to-top-button {
  z-index: 9999;
  position: fixed;
  bottom: 100px;
  right: 20px;
  visibility: hidden;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0;
  width: 40px;
  height: 40px;
  border-top-left-radius: 10px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 3px;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.6s ease !important;
  transition: all 0.6s ease !important;
}

#effetivo-scroll-to-top-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

#effetivo-scroll-to-top-button::after {
  padding: 10px 14px;
  color: #FFFFFF;
  content: "";
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

#effetivo-scroll-to-top-button.show {
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.effetivo-post-thumbnail-header {
  margin-top: 97px;
  position: relative;
  height: 400px;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

body.ast-theme-transparent-header .effetivo-post-thumbnail-header {
  margin-top: 0px;
}

.effetivo-post-thumbnail-header .content {
  z-index: 3;
  margin-bottom: 80px;
}

.effetivo-post-thumbnail-header .content h1 {
  color: rgba(255, 255, 255, 0.8);
}

.effetivo-post-thumbnail-header .shape-bottom {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.effetivo-post-thumbnail-header .shape-bottom svg {
  width: calc(160% + 1.3px);
  height: 60px;
}

.effetivo-post-thumbnail-header .shape-bottom svg .shape-fill {
  fill: #FFFFFF;
}

.effetivo-post-thumbnail-header .overlay {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  -webkit-transition: background 1s, opacity 1s;
  transition: background 1s, opacity 1s;
}

.effetivo-post-thumbnail-header:hover .overlay {
  opacity: 0;
}

.effetivo-pop-up-exit {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateY(60%) scale(0);
          transform: translateY(60%) scale(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.effetivo-pop-up-exit.show {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.effetivo-pop-up-exit .content {
  position: absolute;
  z-index: 1;
  max-width: 1200px;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.effetivo-pop-up-exit .content > .close {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: 6px;
  right: 24px;
}

.effetivo-pop-up-exit .content > .close::after {
  content: "";
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.effetivo-pop-up-exit .close {
  cursor: pointer;
}

.ast-builder-grid-row {
  overflow-wrap: normal;
}

.ast-builder-html-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wt-cli-ckyes-footer-section {
  display: none;
}

.cli-privacy-overview a.cli-privacy-readmore:before {
  content: 'Exibir mais';
}

.cli-privacy-overview.cli-collapsed a.cli-privacy-readmore:before {
  content: 'Exibir menos';
}

.wpcf7-form p {
  -webkit-transition: all 0.6s ease !important;
  transition: all 0.6s ease !important;
}

.wpcf7-form.sent p {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  width: 0px;
  height: 0px;
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 4px;
  padding: 4px 8px 4px 8px;
  margin: 4px;
}

/*
div.wpcf7 .ajax-loader {
    background-color: unset;    
    background-image: url('assets/img/ajax-loader.gif');
    width: 24px;
    height: 24px;
    margin-left: 10px;
}
*/
input.wpcf7-not-valid {
  border: 1px solid #F00000 !important;
}

.wpcf7-not-valid-tip {
  margin: 0 0 20px 0;
  font-style: italic;
}

p.c4wp-display-captcha-form, p.c4wp-display-captcha-form label {
  text-transform: unset !important;
}

p.c4wp-display-captcha-form strong {
  display: none !important;
}

.wpcf7-form-control-wrap.wpcaptcha .wpcf7-not-valid-tip {
  margin: 20px 0 0 0 !important;
}

.c4wp_user_input_captcha {
  width: 200px !important;
}
/*# sourceMappingURL=style.css.map */