/* Importação das fontes */
@font-face {
  font-family: "Taz-ExtraBold";
  src: url("../fonts/Taz/Taz-ExtraBold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Taz-Bold";
  src: url("../fonts/Taz/Taz-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Taz-Light";
  src: url("../fonts/Taz/Taz-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Taz-SemiBold";
  src: url("../fonts/Taz/Taz-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Taz-Regular";
  src: url("../fonts/Taz/Taz-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu-light";
  src: url("../fonts/ubuntu/Ubuntu-Light.ttf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu-light-italic";
  src: url("../fonts/ubuntu/Ubuntu-Italic.ttf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu-regular";
  src: url("../fonts/ubuntu/Ubuntu-Regular.ttf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu-medium";
  src: url("../fonts/ubuntu/Ubuntu-Medium.ttf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu-medium-italic";
  src: url("../fonts/ubuntu/Ubuntu-MediumItalic.ttf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu-bold";
  src: url("../fonts/ubuntu/Ubuntu-Bold.ttf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu-bold-italic";
  src: url("../fonts/ubuntu/Ubuntu-BoldItalic.ttf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "NimbusSans-Regular";
  src: url("../fonts/Nimbus/NimbusSanL-Reg.otf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "NimbusSans-Bold";
  src: url("../fonts/Nimbus/NimbusSanL-Bol.otf");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "NimbusSans-RegularItalic";
  src: url("../fonts/Nimbus/NimbusSanL-RegIta.otf");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "NimbusSans-BoldItalic";
  src: url("../fonts/Nimbus/NimbusSanL-BolIta.otf");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  vertical-align: baseline;
  list-style: none;
  line-height: 1;
  outline: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.bgColor-noImg {
  background: transparent linear-gradient(180deg, #e9e5e56e 10%, #c8c8c8 90%) 0%
    0% no-repeat padding-box;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
  height: 1px;
}

*::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  height: 1px;
  background-color: transparent;
}

*::-webkit-scrollbar-track-piece:start {
  background: transparent url("") repeat-y !important;
}

*::-webkit-scrollbar-track-piece:end {
  background: transparent url("") repeat-y !important;
}

:root {
  --bg-color: #fcfcfc;
  --color-01: #007cb0;
  --color-02: #ffe12e;
  --color-03: #004998;
  --color-04: #727577;
  --color-05: #1c1c1b;
  --color-06: #1364ae;
}

html,
body {
  background-color: var(--bg-color);
  font-family: "NimbusSans-Regular";
  font-size: 16px;
}

hr {
  height: 1px;
  background: #9f9f9f;
  margin: 0 0 45px 0;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-out {
  opacity: 0;
  animation: fadeOut 1s ease-in 1 forwards;
  -webkit-animation: fadeOut 1s ease-in 1 forwards;
  -moz-animation: fadeOut 1s ease-in 1 forwards;
  -o-animation: fadeOut 1s ease-in 1 forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.mw-container {
  position: relative;
  width: min(100% - 15px, 1280px);
  margin-inline: auto;
}
.mw-container-gapColumn{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mw-navigator {
  color: #727577;
  font-size: 14px;
  line-height: 16px;
  font-family: "NimbusSans-Regular";
}
.hidden{
  display: none !important;
}
@media (max-width: 1300px) {
  .mw-container {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 0 20px;
  }
}
@media(max-width: 768px){
  .mw-container-mobile-full{
    padding: 0 !important;
    overflow: hidden;
  }
  .mw-container-gapColumn{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .share-popup-resultado{
    right: unset;
    left: 0;
  }
}

@media (max-width: 580px) {
  .mw-menu .mw-menu-social {
    display: none !important;
  }

  .mw-menu .mw-menu-left .mw-menu-logo {
    margin: 0 auto;
    justify-content: end;
  }
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 45px 0;
}

.title-container h1 {
  position: relative;
  color: var(--color-03);
  font-size: 34px;
  font-family: "Taz-ExtraBold";
  line-height: 48px;
  text-align: center;
  z-index: 1;
}

.title-container h1::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 0;
  left: -10px;
  background: #023368;
  height: 35px;
  /* width: 100%; */
  z-index: -1;
  padding: 0 10px;
}

/* The Modal (background) */
.modal_slider {
  position: fixed;
  z-index: 111;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000ba;
}

/* Modal Content */
.modal-slider-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 1200px;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev {
  right: 16px !important;
  left: unset !important;
}

.next {
  right: unset !important;
  left: 16px !important;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 125px auto;
  padding: 25px;
  background: #fff;
  border-radius: 5px;
  width: 35%;
  position: relative;
  transition: all 5s ease-in-out;
}
.share-popup-wrapper{
  position: relative;
}
.share-popup {
  position: absolute !important;
  display: none !important;
  flex-direction: row !important;
  gap: 5px !important;
  top: -4rem !important;
  left: 0 !important;
  background-color: #fefefe !important;
  box-shadow: 10px 10px 10px 10px #1818191a !important;
  padding: 10px !important;
  border-radius: 10px !important;
  z-index: 1;
}
.share-popup-wrapper-resultado{
  position: relative;
}
.share-popup-resultado {
  position: absolute !important;
  display: none !important;
  flex-direction: row !important;
  gap: 5px !important;
  top: -4rem !important;
  right: 0 !important;
  background-color: #fefefe !important;
  box-shadow: 10px 10px 10px 10px #1818191a !important;
  padding: 10px !important;
  border-radius: 10px !important;
  z-index: 1;
}
.showShare{
  display: flex !important;
  white-space: nowrap;
}
.img-whatsapp,
.img-facebook,
.img-twitter,
.img-email {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: scale-down;
  cursor: pointer;
}
.img-whatsapp {
  background-color: #28a745;
}
.img-facebook {
  background-color: #4165af;
}
.img-twitter {
  background-color: #000000;
}
.img-email {
  background-color: #5e5e5e;
}
.share-contact-wrapper{
  position: relative;
}
.share-contact-popup{
  position: absolute !important;
  display: none !important;
  flex-direction: column !important;
  gap: 5px !important;
  top: -2rem !important;
  left: 0 !important;
  background-color: #fefefe !important;
  box-shadow: 10px 10px 10px 10px #1818191a !important;
  padding: 10px !important;
  border-radius: 10px !important;
}
.popup .desc {
  margin-bottom: 5%;
}
.showShare{
  display: flex !important;
}
.popup h2 {
  margin-top: 35px;
  color: #333;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.popup h2 span {
  color: #ff3e3e;
}

.popup .close {
  position: absolute;
  top: 0;
  right: 35px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .close:hover {
  color: #06d85f;
}

.close {
  float: right;
  font-size: 40px;
  color: #fff;
}

.close_slider {
  font-size: 40px;
  position: absolute;
  right: 16px;
  top: 16px;
  color: #fff;
}

.close,
.close_slider:hover,
.close,
.close_slider:focus {
  color: #ff4343;
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
}

/*MENSAGEM DE ERRO DO FORMULÁRIO*/
.form-error {
  background: linear-gradient(45deg, #e30e27, #c00017);
  color: white;
  font-family: "Lato-Regular";
  font-weight: 400;
  border-radius: 36px;
  border: 1px dotted var(--red);
  transition: all 0.3s;
  height: 0px;
  display: none;
  padding: 0 !important;
}
.new-form-error {
  background: linear-gradient(45deg, #e30e27, #c00017);
  color: white;
  font-family: "Lato-Regular";
  font-weight: 400;
  border-radius: 36px;
  border: 1px dotted var(--red);
  transition: all 0.3s;
  display: none;
  padding: 18px 25px !important;
  height: auto;
  margin-bottom: 20px;
}

.form-error.visible {
  padding: 18px 25px !important;
  display: block;
  height: auto;
  margin-bottom: 20px;
}

/*ICONE DE LOADING DOS FORMULÁRIOS*/
.loader {
  width: 20px;
  height: 15px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-left: 10px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-success {
  background-color: white;
  box-shadow: rgb(0 124 176) 0px 0px 11px -6px;
  color: rgb(73, 73, 73);
  font-family: Lato-Regular;
  font-weight: 400;
  border-radius: 6px;
  font-size: 1.2rem;
  border: 2px solid rgb(0 124 176);
  line-height: 1.3;
  margin-top: 10px;
  transition: all 0.3s ease 0s;
  padding: 28px 30px !important;
}

.form-success > p {
  font-size: 0.8rem;
  margin-top: 8px;
  color: gray;
}

button:disabled > div {
  background-color: #494949 !important;
  color: white !important;
  pointer-events: none;
}

.form-input.select option {
  font-family: sans-serif;
  /*text-transform: capitalize !important;*/
}

.input-check {
  font-size: 12px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.input-check label {
  flex: auto;
  cursor: pointer;
}
.input-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  background-color: red;
  position: relative;
}
.ad-populares{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 280px;
  background-color: #F2F1F1;
  margin: 24px 0;
}
.ad-section-300x600{
  width: 100%;
  max-width: 300px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: gray;
  margin-top: 40px;
}
@media(max-width: 768px){
  .share-popup-resultado{
    right: unset !important;
    left: 0;
  }
}