@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --td: 0; }

[data-anime] {
  opacity: 0;
  transition: 1s;
  transition-delay: calc(0ms + (200ms * var(--td))); }

[data-anime="left"] {
  transform: translate3d(-50px, 0, 0); }

[data-anime="right"] {
  transform: translate3d(50px, 0, 0); }

[data-anime="top"] {
  transform: translate3d(0, -50px, 0); }

[data-anime="bottom"] {
  transform: translate3d(0, 50px, 0); }

[data-anime].is-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

@keyframes shakeArrowLeft {
  0%,
	100% {
    transform: translateX(2.5px); }
  50% {
    transform: translateX(-2.5px); } }
@keyframes shakeArrowRight {
  0%,
	100% {
    transform: translateX(-2.5px); }
  50% {
    transform: translateX(2.5px); } }
@keyframes smallShake {
  80% {
    transform: rotate(0deg); }
  85% {
    transform: rotate(5deg); }
  90% {
    transform: rotate(-5deg); }
  95% {
    transform: rotate(5deg); }
  100% {
    transform: rotate(0deg); } }
@keyframes rotateArrow {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.c-alert {
  top: 1rem;
  right: 1rem;
  color: white;
  padding: 1rem;
  position: fixed;
  opacity: 0;
  transition: all 1s ease; }
  .c-alert--success, .c-alert--fail {
    opacity: 1; }
  .c-alert--success {
    background-color: #59c819; }
  .c-alert--fail {
    background-color: #d60000; }

.c-breadcrumb {
  padding-bottom: 1.5rem; }
  .c-breadcrumb__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem; }
  .c-breadcrumb__item, .c-breadcrumb__link {
    color: #808285; }
  .c-breadcrumb__item--active {
    background-color: #006b59;
    color: #f2f2f2;
    padding: 0.15625rem 0.625rem; }
  .c-breadcrumb__link {
    text-decoration: none;
    transition: all 200ms ease; }
    .c-breadcrumb__link:hover {
      color: #006b59; }

.c-card {
  box-shadow: 0 0 15px -5px rgba(38, 38, 38, 0.5);
  transition: all 250ms ease;
  transform: translateY(0);
  background-color: white; }
  .c-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 20px 0 rgba(38, 38, 38, 0.25); }
  .c-card__link {
    text-decoration: none;
    display: block;
    height: 100%; }
  .c-card__financiavel {
    position: absolute;
    top: 15px;
    left: 15px;
    font-weight: 600;
    color: #009E9B;
    background: #ffffffe0;
    padding: 3px 10px;
    border-radius: 2px; }
  .c-card__background {
    background-position: center;
    background-size: cover;
    height: 300px;
    width: 100%; }
  .c-card__body, .c-card__footer {
    background-color: white;
    padding: 1rem; }
  .c-card__body {
    text-align: center; }
  .c-card__title, .c-card__subtitle, .c-card__price {
    color: black; }
  .c-card__title, .c-card__description {
    letter-spacing: 1px;
    font-size: 0.875rem;
    color: black; }
  .c-card__title {
    margin-bottom: 0.625rem;
    min-height: 17px;
    text-transform: uppercase; }
    .c-card__title-main {
      font-weight: 700;
      margin-bottom: 0.625rem;
      min-height: 17px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #009E9B;
      font-size: 18px; }
  .c-card__title {
    font-weight: 700; }
  .c-card__subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 0;
    min-height: 24px; }
    .c-card__subtitle-bairro {
      color: black;
      font-weight: 300;
      font-size: 1.25rem;
      margin-bottom: 0;
      min-height: 24px; }
  .c-card__description {
    color: black;
    display: block;
    font-style: italic;
    min-height: 21px; }
    .c-card__description-cidade {
      color: #565656;
      display: block;
      font-style: italic;
      min-height: 21px; }
  .c-card__price {
    padding-top: 2rem;
    position: relative; }
    .c-card__price-text, .c-card__price-value {
      margin-bottom: 0; }
    .c-card__price-text {
      font-weight: 500;
      font-size: 0.625rem;
      letter-spacing: 2px;
      text-transform: uppercase; }
    .c-card__price-structure {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 0.625rem; }
    .c-card__price-value {
      font-size: 1.5rem;
      font-weight: 300; }
    .c-card__price::before, .c-card__price::after {
      content: "";
      background-color: #b4b5b7;
      width: 100%;
      height: 2px;
      left: 50%;
      transform: translateX(-50%);
      position: absolute;
      opacity: 0.5; }
    .c-card__price::before {
      top: 1rem; }
    .c-card__price::after {
      bottom: -1rem; }
  .c-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: fit-content;
    margin: 0 auto;
    min-height: 126px; }
  .c-card__item {
    color: black;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 300; }
    .c-card__item:not(:last-child) {
      margin-bottom: 0.625rem; }
    .c-card__item i {
      min-width: 1.75rem;
      font-size: 1.25rem;
      color: #009e9b;
      text-align: center; }
    .c-card__item strong {
      color: #262626;
      font-weight: 900 !important; }

.c-button {
  background: none;
  border: none;
  background-color: #006b59;
  color: #f2f2f2;
  padding: 0.625rem 1rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }

.c-copyright {
  background-color: #003837;
  color: #f2f2f2;
  padding: 0.625em 0; }
  .c-copyright__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625em; }
  .c-copyright__text {
    font-weight: 300;
    margin: 0;
    text-align: center; }
  .c-copyright__link {
    color: currentColor;
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms ease; }
    .c-copyright__link:hover {
      color: #f9a23e; }
  .c-copyright__background {
    background-image: url("/view/assets/images/svg/arco.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 2.5rem;
    width: 2.5rem; }

.c-form__label {
  color: #006b59;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  margin-bottom: 1rem; }
  .c-form__label--row {
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 1rem; }
  .c-form__label--bigger {
    font-size: 1rem; }
.c-form__input {
  border-width: 1px;
  border-style: solid;
  border-color: #808285;
  font-size: 1rem;
  margin-top: 0.3125rem;
  padding: 0.625rem; }
  .c-form__input--arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: linear-gradient(45deg, transparent 50%, #f2f2f2 50%), linear-gradient(135deg, #f2f2f2 50%, transparent 50%), linear-gradient(to right, #006b59, #006b59);
    background-position: calc(100% - 21px) calc(1.2rem + 2px), calc(100% - 16px) calc(1.2rem + 2px), 100% 0;
    background-size: 5px 5px, 5px 5px, 2.75rem 2.75em;
    background-repeat: no-repeat; }
.c-form__button {
  background: none;
  border: none;
  background-color: #006b59;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 0.625rem 1.25rem;
  text-transform: uppercase;
  width: fit-content;
  transition: all 200ms ease; }
  .c-form__button:hover {
    background-color: #009e9b; }
.c-form__content {
  display: flex;
  gap: 2rem; }
  .c-form__content > * {
    width: fit-content; }
.c-form__fieldset {
  border-color: #006b59;
  border-style: solid;
  border-width: 1px;
  padding: 1rem;
  margin-bottom: 1rem; }
.c-form__legend {
  color: #006b59;
  font-size: 1rem;
  font-weight: 400;
  float: initial;
  padding: 0 0.625rem;
  margin-bottom: 0;
  text-transform: uppercase;
  width: fit-content; }
.c-form input[type="checkbox"] {
  width: 1rem; }
.c-form--modal {
  background-color: #f2f2f2;
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  min-height: 100vh;
  padding: 1rem;
  z-index: 10000000000000000;
  transition: all 200ms ease; }
  .c-form--modal.is-active {
    left: 0; }
  @media screen and (min-width: 992px) {
    .c-form--modal {
      display: block;
      position: initial;
      min-height: fit-content; } }

.c-title {
  color: #006b59;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem; }
  .c-title hr {
    flex: 1;
    height: 2px;
    opacity: 1; }

.c-wpp {
  bottom: 1.5rem;
  right: 1rem;
  flex-direction: column;
  align-items: end;
  max-width: 288px;
  position: fixed;
  z-index: 10; }
  @media screen and (min-width: 768px) {
    .c-wpp {
      max-width: 400px; } }
  .c-wpp, .c-wpp__content, .c-wpp__header {
    display: flex; }
  .c-wpp__modal {
    border-radius: 0.3125rem;
    display: none;
    margin-bottom: 1rem;
    transition: all 200ms ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden; }
    .c-wpp__modal.is-active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible; }
    .c-wpp__modal:hover {
      box-shadow: 0 10px 20px rgba(38, 38, 38, 0.25); }
  .c-wpp__header, .c-wpp__body {
    padding: 0.625rem; }
    @media screen and (min-width: 992px) {
      .c-wpp__header, .c-wpp__body {
        padding: 1rem; } }
  .c-wpp__header {
    background-color: #25d466;
    color: white;
    border-radius: 0.625rem 0.625rem 0 0; }
    .c-wpp__header ion-icon {
      margin-right: 1rem;
      font-size: 2rem; }
      @media screen and (min-width: 992px) {
        .c-wpp__header ion-icon {
          font-size: 3rem; } }
  .c-wpp__body {
    background-color: white;
    border-radius: 0 0 0.625rem 0.625rem; }
  .c-wpp__title {
    font-size: 1rem;
    font-weight: bold; }
    @media screen and (min-width: 768px) {
      .c-wpp__title {
        font-size: 1.25rem; } }
  .c-wpp__description--opacity {
    opacity: 0.75; }
  .c-wpp__description, .c-wpp__text {
    font-size: 0.75rem; }
    @media screen and (min-width: 992px) {
      .c-wpp__description, .c-wpp__text {
        font-size: 0.875rem; } }
  .c-wpp__content, .c-wpp__header {
    align-items: center; }
  .c-wpp__list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 0.625rem; }
  .c-wpp__item:not(:last-child) {
    margin-bottom: 0.625rem; }
  .c-wpp__link {
    background-color: #f2f2f2;
    border-radius: 0.3125rem;
    border-left: 3px solid #25d466;
    display: block;
    color: currentColor;
    text-decoration: none;
    padding: 0.625rem 1rem;
    transition: all 200ms ease; }
    .c-wpp__link:hover {
      box-shadow: 0 5px 10px rgba(38, 38, 38, 0.15);
      background-color: white;
      color: currentColor; }
  .c-wpp__icon {
    color: #25d466;
    font-size: 1.5rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .c-wpp__photo {
    background-color: white;
    border-radius: 100%;
    margin-right: 1rem;
    padding: 0.625rem; }
    .c-wpp__photo img {
      height: 1.5rem;
      width: 1.5rem; }
  .c-wpp__name {
    margin: 0; }
  .c-wpp__text {
    background-color: white;
    border-radius: 0.3125rem;
    color: #1a1a1a;
    margin-right: 1rem;
    padding: 0.625rem;
    visibility: visible;
    transition: all 500ms ease;
    transform: translateY(0);
    opacity: 1; }
    .c-wpp__text.is-active {
      visibility: hidden;
      transform: translateY(20px);
      opacity: 0; }
  .c-wpp__button {
    background: none;
    border: none;
    box-shadow: 0 5px 10px rgba(38, 38, 38, 0.5);
    background-color: #25d466;
    border-radius: 100%;
    color: white;
    font-size: 2rem;
    height: 3.5rem;
    width: 3.5rem;
    position: relative;
    transition: all 500ms ease; }
    @media screen and (min-width: 992px) {
      .c-wpp__button {
        font-size: 2.5rem;
        height: 4rem;
        width: 4rem; } }
    .c-wpp__button ion-icon {
      position: absolute;
      left: 50%;
      top: 50%;
      transition: all 500ms ease; }
      .c-wpp__button ion-icon:first-child {
        transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1); }
      .c-wpp__button ion-icon:last-child {
        transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(0); }
    .c-wpp__button.is-active ion-icon:first-child {
      transform: translate3d(-50%, -50%, 0) rotate(360deg) scale(0); }
    .c-wpp__button.is-active ion-icon:last-child {
      transform: translate3d(-50%, -50%, 0) rotate(360deg) scale(1); }

.l-navbar {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
  position: relative; }
  .l-navbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .l-navbar__brand {
    margin-right: 1rem;
    z-index: 11; }
    @media screen and (min-width: 576px) {
      .l-navbar__brand {
        max-width: 300px; } }
    @media screen and (min-width: 992px) {
      .l-navbar__brand {
        max-width: 275px; } }
  .l-navbar__button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #006b59;
    height: 50px;
    max-width: 50px;
    width: 100%;
    position: relative;
    z-index: 11; }
    @media screen and (min-width: 992px) {
      .l-navbar__button {
        display: none; } }
    .l-navbar__button.is-active ion-icon {
      transform: translate3d(-50%, -50%, 0) rotate(180deg); }
    .l-navbar__button > ion-icon {
      position: absolute;
      left: 50%;
      top: 50%;
      transition: all 200ms ease;
      transform: translate3d(-50%, -50%, 0) rotate(0); }
  .l-navbar__hamburger {
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh);
    width: 100%;
    z-index: 10;
    left: -100%;
    top: 0;
    position: absolute;
    transition: all 200ms ease; }
    @media screen and (min-width: 992px) {
      .l-navbar__hamburger {
        position: initial;
        height: auto;
        width: auto; } }
    .l-navbar__hamburger.is-active {
      left: 0; }
  .l-navbar__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media screen and (min-width: 992px) {
      .l-navbar__list {
        flex-direction: row; } }
  .l-navbar__item {
    width: 100%;
    text-transform: uppercase; }
    @media screen and (min-width: 992px) {
      .l-navbar__item {
        width: fit-content; } }
  .l-navbar__link {
    color: #006b59;
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    padding: 0.625rem;
    text-decoration: none;
    transition: all 200ms ease;
    width: 100%; }
    @media screen and (min-width: 992px) {
      .l-navbar__link {
        font-size: 1rem; } }
    .l-navbar__link:hover {
      color: #009e9b; }

.l-about {
  background-image: url("/view/assets/images/index-about-pattern.png");
  background-size: cover;
  background-color: white; }
  .l-about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: justify; }
    @media screen and (min-width: 992px) {
      .l-about__content {
        flex-direction: row; } }
    .l-about__content > * {
      flex: 1; }
  .l-about__line {
    color: #006b59;
    height: 2px !important;
    opacity: 1; }
  .l-about__title {
    color: #006b59;
    font-weight: bold;
    text-transform: uppercase;
    position: relative; }
    .l-about__title--line {
      display: flex;
      align-items: center;
      gap: 1rem; }
      .l-about__title--line hr {
        flex: 1; }

.l-property__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem; }
  @media screen and (min-width: 768px) {
    .l-property__content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem; } }
  @media screen and (min-width: 1200px) {
    .l-property__content {
      grid-template-columns: repeat(4, 1fr); } }
.l-property__link {
  color: #808285;
  border: 1px solid #808285;
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: all 200ms ease;
  width: fit-content; }
  .l-property__link:hover {
    background-color: white;
    border-color: #262626;
    color: #262626; }

.l-hero {
  background-image: url("/view/assets/images/index-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 108px);
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .l-hero {
      height: calc(100vh - 131px); } }
  @media screen and (min-width: 992px) {
    .l-hero {
      height: calc(100vh - 123px); } }
  .l-hero::before {
    background-color: #006b59;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.75;
    z-index: -1; }
  .l-hero .container, .l-hero__content {
    height: 100%; }
  .l-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem; }
    @media screen and (min-width: 992px) {
      .l-hero__content {
        flex-direction: row; }
        .l-hero__content > * {
          flex: 1; } }
  .l-hero__title {
    color: #f2f2f2;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    text-shadow: 5px 5px 10px #262626; }
    @media screen and (min-width: 768px) {
      .l-hero__title {
        font-size: 2.5rem; } }
    @media screen and (min-width: 992px) {
      .l-hero__title {
        font-size: 3rem; } }
    @media screen and (min-width: 1200px) {
      .l-hero__title {
        font-size: 4rem; } }
  .l-hero__form {
    background-color: #f2f2f2;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .l-hero__form {
        box-shadow: 10px 10px 10px rgba(38, 38, 38, 0.5); } }
  .l-hero__label {
    color: #006b59;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: all 200ms ease; }
    .l-hero__label--highlight {
      font-weight: 700;
      text-transform: uppercase; }
    .l-hero__label .is-hidden {
      opacity: 0;
      height: 0; }
    .l-hero__label .is-active {
      opacity: 1;
      height: 100%; }
  .l-hero__input {
    border-width: 1px;
    border-style: solid;
    border-color: #b4b5b7;
    font-size: 1rem;
    margin-top: 0.3125rem;
    padding: 0.625rem; }
    .l-hero__input--arrow {
      -webkit-appearance: none;
      -moz-appearance: none;
      background-color: white;
      background-image: linear-gradient(45deg, transparent 50%, #f2f2f2 50%), linear-gradient(135deg, #f2f2f2 50%, transparent 50%), linear-gradient(to right, #006b59, #006b59);
      background-position: calc(100% - 21px) calc(1.2rem + 2px), calc(100% - 16px) calc(1.2rem + 2px), 100% 0;
      background-size: 5px 5px, 5px 5px, 2.75rem 2.75em;
      background-repeat: no-repeat; }
      .l-hero__input--arrow:focus {
        background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), linear-gradient(to right, #009e9b, #009e9b);
        background-position: calc(100% - 16px) 1.2rem, calc(100% - 21px) 1.2rem, 100% 0;
        background-size: 5px 5px, 5px 5px, 2.75rem 2.75rem;
        background-repeat: no-repeat;
        border-color: #009e9b;
        outline: 0; }
  .l-hero__button {
    background: none;
    border: none;
    background-color: #006b59;
    color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 300;
    padding-bottom: 0.625rem;
    padding-top: 0.625rem;
    text-transform: uppercase; }

.l-page__title {
  color: #006b59;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  text-transform: uppercase; }
  .l-page__title hr {
    flex: 1;
    height: 3px;
    opacity: 1; }
  .l-page__title--small {
    font-size: 1.5rem; }
  .l-page__title--secondary {
    color: #cccccc;
    font-style: italic;
    font-weight: 300; }
    .l-page__title--secondary hr {
      height: 1px; }
.l-page__list {
  margin: 0;
  padding: 0;
  list-style: none; }
.l-page__item, .l-page__item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem; }
.l-page__item i {
  font-size: 1.5rem;
  color: #009e9b; }
.l-page__item:not(:last-child) {
  margin-bottom: 1rem; }
.l-page__link {
  text-decoration: none;
  color: currentColor; }
.l-page .page-link {
  color: #006b59; }
.l-page .page-link:hover {
  color: #009e9b; }
.l-page .page-item.active .page-link {
  background-color: #006b59;
  border-color: #006b59;
  color: #f2f2f2; }
.l-page .glide__slide span {
  background-size: cover;
  background-position: center;
  display: block;
  height: 500px; }
.l-page .glide__arrow {
  background: none;
  border: none;
  background-color: #006b59;
  color: #f2f2f2;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  padding: 0.625rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 200ms ease; }
  .l-page .glide__arrow:hover {
    background-color: #009e9b; }
  .l-page .glide__arrow--left {
    left: 0; }
  .l-page .glide__arrow--right {
    right: 0; }

.l-info__title {
  color: #006b59;
  text-transform: uppercase;
  margin-bottom: 0; }
.l-info__info {
  color: #808285;
  font-style: italic;
  font-weight: 300; }
  .l-info__info--bigger {
    font-size: 1.5rem; }
.l-info__subtitle {
  color: #009e9b;
  font-size: 1.5rem; }
.l-info__list--reset {
  margin: 0;
  padding: 0;
  list-style: none; }
.l-info__list--square {
  list-style-type: square; }
  .l-info__list--square li::marker {
    color: #006b59; }
.l-info__list--row {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly; }
  @media screen and (min-width: 992px) {
    .l-info__list--row {
      align-items: flex-start;
      flex-direction: row; } }
.l-info__list--highlight {
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(204, 204, 204, 0.75);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem; }
  .l-info__list--highlight li {
    background-color: #006b59;
    color: #f2f2f2;
    padding: 0.625rem 1rem;
    text-align: center; }
    .l-info__list--highlight li strong {
      color: currentColor; }
.l-info__list--badged {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem; }
  .l-info__list--badged > li {
    background-color: #009e9b;
    color: #f2f2f2;
    padding: 0.3125rem 0.625rem; }
.l-info__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding-left: 1rem; }
.l-info__item {
  color: #262626; }
  .l-info__item strong {
    color: #808285; }
  .l-info__item--bigger {
    font-size: 1.15rem; }
  .l-info__item--column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; }
  .l-info__item--color-gray {
    color: #808285; }
  .l-info__item i {
    color: #009e9b;
    font-size: 2rem;
    margin-bottom: 1rem; }
.l-info__texts > * {
  color: #808285; }
.l-info__text {
  text-align: justify;
  color: gray;
  font-weight: 300;
  font-size: 1.25rem; }
.l-info__content {
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(204, 204, 204, 0.75);
  height: fit-content;
  padding: 1.25rem; }
.l-info__value {
  color: #009e9b;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .l-info__value {
      font-size: 2.75rem; } }
  @media screen and (min-width: 992px) {
    .l-info__value {
      font-size: 1.75rem; } }
  @media screen and (min-width: 1200px) {
    .l-info__value {
      font-size: 2.75rem; } }
  .l-info__value span:first-child {
    margin-right: 1rem; }
.l-info__label, .l-info__input {
  display: block;
  width: 100%; }
.l-info__label {
  color: #006b59;
  margin-bottom: 1rem; }

.l-footer {
  background-color: #006b59; }
  .l-footer__content {
    color: #f2f2f2;
    font-weight: 300;
    padding-bottom: 2rem;
    padding-top: 2rem; }
    .l-footer__content .row > div:not(:last-child) {
      margin-bottom: 2rem; }
      @media screen and (min-width: 992px) {
        .l-footer__content .row > div:not(:last-child) {
          margin-bottom: 0; } }
  .l-footer__title {
    font-style: italic; }
  .l-footer__list {
    margin: 0;
    padding: 0;
    list-style: none; }
  .l-footer__item--centered, .l-footer__link--centered {
    display: inline-flex;
    align-items: center; }
  .l-footer__item:not(:last-child) {
    margin-bottom: 1rem; }
  .l-footer__item ion-icon {
    font-size: 1.75rem;
    margin-right: 1rem; }
  .l-footer__link {
    color: currentColor;
    text-decoration: none;
    position: relative;
    transition: all 200ms ease; }
    .l-footer__link:hover {
      color: #b4b5b7; }

html,
body {
  color: #262626;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden; }

body {
  background: #f2f2f2;
  position: relative; }

section {
  padding: 2rem 0; }

address,
figure,
ul {
  margin-bottom: 0; }

img {
  height: auto;
  max-width: 100%; }

.u-block {
  display: block; }

.u-none {
  display: none; }

.pesquisa-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: white;
  font-size: 1rem;
  position: absolute;
  width: 100%;
  transition: background 250ms ease;
  max-height: 300px;
  overflow-y: scroll; }
.pesquisa-item {
  padding: 1rem; }
  .pesquisa-item:hover {
    background-color: #f2f2f2; }

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