d@import url(https://fonts.googleapis.com/css2?family=Lato:wght@400;

700;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:wght@400;700;800&display=swap);* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

* :focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

p {
  font-size: 18px;
}

p a {
  text-decoration: underline;
  color: #621620;
  transition: filter 0.2s;
}

p a:hover {
  filter: brightness(0.7);
  text-decoration: underline;
}

a {
  color: inherit;
  font-size: inherit;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a:hover {
  color: #4b4b4b;
  text-decoration: unset;
}

i,
strong,
h2 strong {
  font-size: inherit;
  color: inherit;
  font-size: inherit;
}

p img {
  max-width: 100% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
}

ol,
ul {
  list-style: none;
  padding-left: unset;
  margin-bottom: unset;
}

button {
  border: unset;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 16px;
}

h1 {
  font-size: 40px;
  color: #621620;
  font-weight: bold;
}

h1::after {
  content: "";
  display: block;
  background: #00004a;
  max-width: 150px;
  height: 3px;
  margin: 5px auto;
}

h2 {
  font-size: 39px;
}

h3,
h4 {
  font-size: 29px;
}

h5,
h6 {
  font-size: 22px;
}

.container {
  width: 100%;
  max-width: 1140px;
}

.r {
  color: inherit;
  font-size: 14px;
  position: relative;
  top: -10px;
}

.header {
  background: #3c8481;
}

.header__container {
  min-height: 69px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

@media (max-width: 991px) {
  .header__container {
    flex-direction: row-reverse;
  }
}

.header__link {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

@media (min-width: 992px) {
  .header__link {
    position: absolute;
    top: -21px;
    z-index: 99;
  }
}

@media (max-width: 991px) {
  .header__logo {
    max-width: 170px;
  }
}

@media (min-width: 992px) {
  .header {
    position: fixed;
    left: 0;
    top: 25px;
    z-index: 1002;
    width: 100%;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  }

  .header__inicial {
    top: 60px;
    background: rgba(60, 132, 129, 0.62);
  }

  .header__inicial > .header__container {
    min-height: 132px;
  }

  .header__inicial .header__container > .header__link {
    position: static;
  }

  .header__inicial .header__container > .nav {
    width: auto;
    margin-left: unset;
    justify-content: center;
  }
}

.nav {
  width: 100%;
  justify-content: flex-end;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.nav__item {
  text-align: center;
  font-size: 18px;
  color: #3c8481;
  cursor: default;
}

.nav__item:not(:last-of-type) {
  padding-right: 20px;
}

.nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 5px;
  background-color: #ea7227;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.nav__item:hover {
  color: #ea7227;
}

@media (min-width: 992px) {
  .nav {
    margin-left: 300px;
  }

  .nav__content {
    display: block;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }

  .nav__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.nav__link {
  color: white;
  width: 100%;
  height: 100%;
}

.nav__link:hover {
  color: #ea7227;
}

.nav__link--current {
  color: #ea7227;
}

.nav__button {
  background-color: #ea7227;
  min-width: 141px;
  min-height: 28px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  color: white;
  text-transform: uppercase;
  font-size: 14px !important;
}

.nav-mobile__overlay {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(125, 125, 125, 0.35);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.nav-mobile__close {
  text-align: right;
  font-size: 18px;
  margin: 32px 16px 0 0;
  color: white;
}

.nav-mobile__close i {
  cursor: pointer;
}

.nav-mobile__button {
  width: 100%;
}

.nav-mobile__icon {
  cursor: pointer;
  color: #ea7227;
  font-size: 18px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px;
}

@media (max-width: 991px) {
  .nav-mobile {
    position: fixed;
    top: 0;
    left: -45%;
    z-index: 100;
    width: 45%;
    height: 100%;
    overflow-y: scroll;
    background-color: #3c8481;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }

  .nav-mobile > ul {
    overflow-y: scroll;
    height: 100%;
    padding-top: 32px;
  }

  .nav-mobile li {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

@media (max-width: 767px) {
  .nav-mobile {
    left: -65%;
    width: 65%;
  }
}

@media (min-width: 992px) {
  .nav-mobile__button,
  .nav-mobile__close {
    display: none;
  }
}

.nav-mobile__active,
.nav-mobile__active > .nav-mobile__overlay {
  left: 0;
}

@media (max-width: 465px) {
  .nav-mobile .nav__list--drop {
    top: 30px;
  }
}

.menu-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .menu-container {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.nav__list--drop {
  top: 100%;
  left: 0;
  top: 46px;
  z-index: 100;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 1rem;
  position: absolute;
  min-width: 200px;
  background-color: #286a68;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.nav__item {
  position: relative;
  width: unset;
}

.nav__item span {
  color: #fff;
  font-size: 18px;
}

.nav__item a {
  padding: 0.5rem 0;
}

@media (max-width: 991px) {
  .nav__list {
    width: 100%;
    margin-bottom: 30px;
  }

  .nav__item {
    padding: 4px 0 4px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
}

.footer {
  color: white;
  background-color: #3c8481;
}

.footer__item {
  color: white;
  font-size: 18px;
}

.footer__item i {
  margin-right: 5px;
}

.footer__item:not(:last-of-type) {
  margin-bottom: 8px;
}

.footer__button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  min-height: 26px;
  padding: 8px;
  margin-left: auto;
  color: white;
  font-size: 13px;
  background-color: #ea7227;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.footer__button:hover {
  color: white;
  background-color: #ea7227;
}

.footer .information {
  background-color: rgba(0, 70, 67, 0.39);
}

@media (max-width: 767px) {
  .footer__list {
    text-align: center;
  }
}

.social__title {
  color: white;
}

.social__item:not(:last-of-type) {
  margin-right: 8px;
}

.social__link {
  color: white;
  font-size: 26px;
}

.social__link:hover {
  color: #ea7227;
}

@media (max-width: 767px) {
  .social__list {
    justify-content: center !important;
  }
}

.rights {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 0px;
  background-color: #004643;
}

.rodape .rights__text {
  display: flex;
  justify-content: space-between;
  color: #e8e8e8;
  text-align: center;
}

.rodape .rights__text a {
  color: inherit;
  text-decoration: none;
}

.rodape .rights__text a:hover {
  color: #ea7227;
}

.rodape .rights__text p {
  font-size: 14px;
  color: white;
  margin-bottom: 0;
}

@media (max-width: 425px) {
  .rodape .rights__text {
    flex-direction: column;
  }
}

.links h2 {
  font-size: 30px !important;
}

.links a {
  font-size: 18px;
}

.links__title i {
  color: #3c8481;
}

.links__line {
  position: relative;
  display: block;
  width: 250px;
  max-width: 100%;
  height: 2px;
  background-color: #3c8481;
  margin: 16px auto 32px auto;
}

.links__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: #3c8481;
  transform: translateY(-50%) rotate(45deg);
}

.links__item:nth-child(even) {
  margin: 16px 0;
}

.links__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
}

.links__link i {
  margin-right: 5px;
}

@media (min-width: 768px) {
  .links__item {
    margin: unset !important;
  }
}

@media (min-width: 992px) {
  .links__link:hover {
    color: #3c8481;
    padding-left: 5px;
  }
}

@media (min-width: 992px) {
  .links__media:hover {
    color: #3c8481;
    padding-left: 5px;
    cursor: pointer;
  }
}

.privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  width: 100%;
  z-index: 1000000;
}

.privacy.hidde {
  display: none;
}

.privacy .privacy_container {
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy .privacy_container span {
  font-size: 14px;
  color: #585858;
}

.privacy .privacy_container span a {
  font-weight: 600;
  color: #303030;
}

.privacy .privacy_container span button {
  padding: 6px 14px;
  background: #ea7227;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  border: none;
}

.privacy .privacy_container span button:hover {
  filter: opacity(70%);
}

.information {
  background-color: #33726f;
}

.information__unhover {
  color: white;
}

.information__text,
.information__link {
  color: white;
  font-size: 16px;
}

@media (max-width: 768px) {
  .information__text,
  .information__link {
    font-size: 14px;
  }
}

.information__text:hover,
.information__link:hover {
  text-decoration: none;
}

.information__link {
  text-decoration: none;
}

.information__link:hover {
  color: #ea7227;
}

.information__col {
  margin-right: 0px;
  margin-left: 0px;
}

@media (min-width: 768px) {
  .information__col:nth-child(odd) {
    border-right: 1px solid white;
  }
}

@media (max-width: 768px) {
  .information__col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0px !important;
  }

  .information__col:nth-child(odd) {
    border-right: 1px solid white;
  }
}

@media (min-width: 992px) {
  .information__col:not(:last-of-type) {
    border-right: 1px solid white;
  }
}

.floating {
  display: none;
}

@media (min-width: 992px) {
  .floating {
    position: fixed;
    left: 1em;
    bottom: -428px;
    z-index: 100;
    opacity: 0.5;
    display: block;
    width: 377px;
    min-height: 465px;
    padding: 16px 8px;
    padding-top: unset;
    background-color: white;
    border: 2px solid #eeeeee;
    box-shadow: 4px 3px 3px rgba(0, 0, 0, 0.16);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }

  .floating__close {
    padding: 8px;
    text-align: right;
  }

  .floating__close i {
    font-size: 16px;
    color: #ea7227;
    cursor: pointer;
  }

  .floating__image {
    width: 194px;
  }

  .floating__title {
    color: #3c8481;
    font-size: 31px;
    font-weight: 900;
    line-height: 37, 2px;
  }

  .floating__title::after {
    content: "";
    display: block;
    width: 156px;
    height: 2px;
    margin: 16px auto 0 auto;
    background-color: #ea7227;
  }

  .floating__text {
    font-size: 14px;
    color: #3c8481;
  }

  .floating__field {
    background-color: #eee;
    min-height: 36px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding-left: 30px;
  }

  .floating__field::-moz-placeholder {
    color: #999;
    font-size: 12px;
  }

  .floating__field:-ms-input-placeholder {
    color: #999;
    font-size: 12px;
  }

  .floating__field::placeholder {
    color: #999;
    font-size: 12px;
  }

  .floating__group {
    position: relative;
  }

  .floating__group i {
    position: absolute;
    top: 50%;
    left: 5px;
    z-index: 10;
    color: #222;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  .floating__group:last-of-type i {
    left: 9px;
  }

  .floating__button {
    width: 100% !important;
    background-color: #ea7227 !important;
    font-size: 18px !important;
    font-weight: 900;
  }

  .floating--open {
    bottom: 0;
    z-index: 1003;
    opacity: 1;
  }
}

* {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 39px;
}

h3 {
  font-size: 29px;
}

h4 {
  font-size: 23px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

.form-control,
.btn {
  font-size: 16px;
}

.btn-primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 129px;
  max-width: 100%;
  min-height: 39px;
  background-color: #3c8481;
  font-size: 14px;
  color: white;
  border: unset;
  border-color: unset;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.btn-primary:focus {
  border-color: unset;
  background-color: #3c8481;
  box-shadow: 0 0 0 0.2rem rgba(23, 50, 105, 0.5);
}

.btn-primary:hover {
  border: unset;
  border-color: unset;
  color: white;
  background-color: #004643;
}

.btn-secondary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 87px;
  max-width: 100%;
  min-height: 39px;
  background-color: transparent;
  font-size: 14px;
  color: #7d7d7d;
  border-color: unset;
  border: 1px solid #7d7d7d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.btn-secondary:focus {
  color: #ea7227;
  border-color: unset;
  background-color: transparent;
  box-shadow: 0 0 0 0.2rem rgba(23, 50, 105, 0.5);
}

.btn-secondary:hover {
  border: unset;
  border-color: unset;
  color: #e8e8e8;
  background-color: #ea7227;
}

.page-link,
.page-link:hover {
  color: #3c8481;
}

.page-item.active .page-link {
  background-color: #00464363;
  border-color: #00464363;
}

.whats-link {
  position: fixed;
  right: 1em;
  bottom: 12rem;
  z-index: 10;
  width: 64px;
  height: 64px;
}

.modal-title {
  color: #3c8481;
}

.modal .close span {
  font-size: 30px;
}

.modal-body p:last-of-type {
  margin-bottom: unset;
}

