*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink, #0b1220);
  background: var(--color-white, #ffffff);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.screen-reader-response {
  display: none;
}

.lead-form__fields {
  margin-bottom: 1rem;
}

.container {
  position: relative;
  width: 1216px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 1;
  background: var(--color-white, #ffffff);
  isolation: isolate;
}
.hero .container {
  min-height: 1076px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-ellipse {
  position: absolute;
  top: -895px;
  left: 50%;
  width: 3322px;
  height: 1798px;
  max-width: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hero__bg-texture {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 1180px;
  height: 620px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.12;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 45%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 40%, #000 45%, transparent 100%);
}

.hero__glow {
  position: absolute;
  width: 433px;
  height: 433px;
  border-radius: 50%;
  background: var(--color-green, #00423e);
  opacity: 0.8;
  -webkit-filter: blur(80px);
  filter: blur(80px);
}
.hero__glow--right {
  top: -44px;
  right: -140px;
}
.hero__glow--left {
  top: 661px;
  left: -475px;
}

.hero__glow-mint {
  position: absolute;
  left: -220px;
  bottom: -300px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 225, 199, 0.3), rgba(192, 239, 233, 0.18) 45%, transparent 72%);
  pointer-events: none;
}

.nav {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
}
.nav__logo {
  display: block;
  width: 112px;
  height: 112px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.nav__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.nav__menu {
  position: absolute;
  left: calc(50% - 71px);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}
.nav__menu a {
  font-size: 14.7px;
  font-weight: 600;
  color: var(--color-white, #ffffff);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.nav__menu a:hover {
  opacity: 0.7;
}
.nav__cta {
  margin-left: auto;
  padding: 12px 24px;
}
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white, #ffffff);
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.28s ease;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transition: transform 0.28s ease, opacity 0.2s ease, -webkit-transform 0.28s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.nav.is-open .nav__toggle {
  background: rgba(217, 131, 13, 0.18);
  border-color: rgba(217, 131, 13, 0.55);
}
.nav.is-open .nav__toggle span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.nav.is-open .nav__toggle span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.btn--orange {
  background: var(--color-orange, #d9830d);
  color: var(--color-green-alt, #00413e);
  -webkit-box-shadow: 0 16px 19px rgba(0, 69, 63, 0.28);
  box-shadow: 0 16px 19px rgba(0, 69, 63, 0.28);
}
.btn--orange:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 20px 26px rgba(0, 69, 63, 0.34);
  box-shadow: 0 20px 26px rgba(0, 69, 63, 0.34);
}
.btn--ghost {
  background: var(--color-white, #ffffff);
  color: var(--color-green, #00423e);
  border-color: rgba(0, 66, 62, 0.16);
}
.btn--ghost:hover {
  border-color: rgba(0, 66, 62, 0.4);
}
.btn--dark {
  background: var(--color-green, #00423e);
  color: var(--color-white, #ffffff);
  -webkit-box-shadow: 0 16px 19px rgba(0, 69, 63, 0.28);
  box-shadow: 0 16px 19px rgba(0, 69, 63, 0.28);
}
.btn--dark:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 20px 26px rgba(0, 69, 63, 0.34);
  box-shadow: 0 20px 26px rgba(0, 69, 63, 0.34);
}

.hero__grid {
  position: absolute;
  top: 216px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 74px;
  z-index: 2;
}

.hero__content {
  width: 592px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 592px;
  flex: 0 0 592px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}

.eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 19.97px;
  text-transform: uppercase;
}
.eyebrow__line {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow--orange {
  color: var(--color-orange, #d9830d);
}

.hero__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 53.8px;
  line-height: 1.1;
  color: var(--color-white, #ffffff);
}
.hero__title span {
  color: var(--color-orange, #d9830d);
}
.hero__title p {
  margin: 0;
  font: inherit;
  color: inherit;
}

.hero__desc {
  margin: -19px 0 0;
  max-width: 592px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white, #ffffff);
}
.hero__desc strong {
  font-weight: 600;
}

.proof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(0, 123, 108, 0.12);
  border-radius: 8px;
  -webkit-box-shadow: 0 18px 21px rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 21px rgba(15, 23, 42, 0.08);
}
.proof__avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.proof__avatars span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-green, #00423e);
  border: 3px solid var(--color-white, #ffffff);
  color: var(--color-white, #ffffff);
  font-size: 12.5px;
  font-weight: 900;
}
.proof__avatars span + span {
  margin-left: -10px;
}
.proof__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.proof__text strong {
  color: var(--color-ink, #0b1220);
  font-weight: 600;
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.lead-form {
  position: relative;
  width: 550px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 550px;
  flex: 0 0 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(var(--color-green-line, #007b6c), 0.2);
  border-radius: 8px;
  -webkit-box-shadow: 0 18px 21px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 21px rgba(0, 0, 0, 0.08);
}
.lead-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}
.lead-form__title {
  margin: 0;
  font-size: 23.2px;
  font-weight: 700;
  letter-spacing: -0.812px;
  line-height: 26.91px;
  color: var(--color-ink, #0b1220);
}
.lead-form__subtitle {
  margin: -6px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.lead-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.lead-form__submit {
  width: 100%;
}
.lead-form__note {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.lead-form .wpcf7-form {
  display: contents;
}
.lead-form fieldset.hidden-fields-container {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lead-form .wpcf7-form > p {
  margin: 0;
  width: 100%;
}
.lead-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.lead-form .wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.lead-form select.wpcf7-select.field__control--select {
  background-color: rgba(0, 66, 62, 0.02);
  background-image: url("../img/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px 18px;
}
.lead-form .wpcf7-spinner {
  display: none !important;
}
.lead-form .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid rgba(var(--color-green-line, #007b6c), 0.2);
  width: 100%;
}
.lead-form .wpcf7-response-output:empty, .lead-form .wpcf7-response-output[aria-hidden=true] {
  display: none;
}
.lead-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: var(--color-orange, #d9830d);
  margin-top: 4px;
}
.lead-form .wpcf7-not-valid {
  border-color: var(--color-orange, #d9830d) !important;
}
.lead-form input[type=submit].lead-form__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-green, #00423e);
  color: var(--color-white, #ffffff);
  -webkit-box-shadow: 0 16px 19px rgba(0, 69, 63, 0.28);
  box-shadow: 0 16px 19px rgba(0, 69, 63, 0.28);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.lead-form input[type=submit].lead-form__submit:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 20px 26px rgba(0, 69, 63, 0.34);
  box-shadow: 0 20px 26px rgba(0, 69, 63, 0.34);
}
.lead-form input[type=submit].lead-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
}

.pill {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(0, 66, 62, 0.1);
  color: var(--color-green, #00423e);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
}

.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
}
.field--sm {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
}
.field__label {
  font-size: 14.1px;
  font-weight: 700;
  color: var(--color-green, #00423e);
}
.field__control {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  background: rgba(0, 66, 62, 0.02);
  border: 1px solid rgba(0, 66, 62, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.1px;
  font-weight: 500;
  color: var(--color-ink, #0b1220);
  outline: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.field__control::-webkit-input-placeholder {
  color: #757575;
  font-weight: 500;
}
.field__control::-moz-placeholder {
  color: #757575;
  font-weight: 500;
}
.field__control:-ms-input-placeholder {
  color: #757575;
  font-weight: 500;
}
.field__control::-ms-input-placeholder {
  color: #757575;
  font-weight: 500;
}
.field__control::placeholder {
  color: #757575;
  font-weight: 500;
}
.field__control:focus {
  border-color: var(--color-green, #00423e);
  -webkit-box-shadow: 0 0 0 3px rgba(0, 66, 62, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 66, 62, 0.12);
}
.field__control--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  color: #757575;
  background-image: url("../img/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px 18px;
  cursor: pointer;
}
.field__control--select.is-filled {
  color: var(--color-ink, #0b1220);
}

.field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
}
.field-row .field {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
}
.field-row .field--sm {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
}

.hero__photos {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 592px;
  height: 331px;
  z-index: 2;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  border-radius: 8px;
}
.hero__photo--back {
  left: 0;
  bottom: 0;
  width: 592px;
  height: 281px;
  overflow: hidden;
  -webkit-box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}
.hero__photo--back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 30%;
  object-position: center 30%;
}
.hero__photo--front {
  left: 126px;
  bottom: 0;
  width: 378px;
  height: 331px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  -webkit-filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}

.expansao {
  position: relative;
  padding-top: 80px;
  background: var(--color-white, #ffffff);
  isolation: isolate;
  overflow: hidden;
}
.expansao__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  background: var(--color-green, #00423e);
  z-index: 0;
}
.expansao__glow {
  position: absolute;
  top: -260px;
  left: -220px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 225, 199, 0.3), rgba(192, 239, 233, 0.18) 45%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.expansao .container {
  z-index: 1;
  min-height: 0;
}
.expansao__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 82px 50px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(var(--color-green-line, #007b6c), 0.2);
  border-radius: 8px;
  -webkit-box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}
.expansao__intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 444px;
  flex: 0 0 444px;
  width: 444px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}
.expansao__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-green, #00423e);
}
.expansao__title .is-orange {
  color: var(--color-orange, #d9830d);
}
.expansao__desc {
  margin: -19px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.expansao__intro .btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.expansao__stack {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 310px;
  flex: 0 0 310px;
  width: 310px;
  margin-left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 36px;
  border-radius: 24px;
  -webkit-box-shadow: 0 18px 21px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 21px rgba(0, 0, 0, 0.08);
}
.info-card__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 19.97px;
  text-transform: uppercase;
  color: var(--color-green, #00423e);
}
.info-card__eyebrow--ink {
  color: var(--color-ink, #0b1220);
}
.info-card--mint {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 310px;
  flex: 0 0 310px;
  width: 310px;
  height: 480px;
  margin-left: 34px;
  border: 1px solid rgba(var(--color-green-line, #007b6c), 0.2);
  background: radial-gradient(135% 135% at 100% -8%, rgba(65, 206, 189, 0.38) 0%, rgba(128, 222, 211, 0.45) 32%, rgba(192, 239, 233, 0.5) 62%, #ffffff 100%);
  color: var(--color-green, #00423e);
}
.info-card__headline {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 29.8px;
  line-height: 1.2;
  color: var(--color-green, #00423e);
}
.info-card__headline .is-orange {
  color: var(--color-orange, #d9830d);
}
.info-card--dark {
  height: 213px;
  border: 1px solid var(--color-teal, #00e1c7);
  background: radial-gradient(150% 150% at 100% -18%, #00ab9c 0%, #00786e 50%, #005f56 75%, #00453f 100%);
}
.info-card__stat {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-teal, #00e1c7);
}
.info-card__statdesc {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-white, #ffffff);
}
.info-card__statdesc span {
  color: var(--color-teal, #00e1c7);
  font-weight: 600;
}
.info-card--tags {
  height: 249px;
  border: 1px solid rgba(var(--color-green-line, #007b6c), 0.2);
  background: var(--color-white, #ffffff);
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  gap: 6px;
  width: 100%;
}

.tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(0, 66, 62, 0.1);
  color: var(--color-green, #00423e);
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.eyebrow--green {
  color: var(--color-green, #00423e);
}

.eyebrow--white {
  color: var(--color-white, #ffffff);
}

.eyebrow--ink {
  color: var(--color-ink, #0b1220);
}

.mercado {
  position: relative;
  padding: 70px 0 46px;
  background: var(--color-green, #00423e);
  isolation: isolate;
  overflow: hidden;
}
.mercado__glow {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 740px;
  height: 740px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 225, 199, 0.22), rgba(0, 225, 199, 0.06) 45%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.mercado__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  z-index: 1;
  min-height: 0;
}
.mercado__intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 488px;
  flex: 0 0 488px;
  width: 488px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}
.mercado__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-teal, #00e1c7);
}
.mercado__desc {
  margin: -19px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white, #ffffff);
}
.mercado__intro .btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.mercado__grid {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 696px;
  flex: 0 0 696px;
  width: 696px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.mkt-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  -webkit-box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
}
.mkt-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 66, 62, 0.1);
}
.mkt-card__icon img {
  width: 22px;
  height: 22px;
}
.mkt-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.mkt-card__title {
  margin: 0;
  font-size: 19.5px;
  font-weight: 700;
  line-height: 24.99px;
  color: var(--color-green, #00423e);
}
.mkt-card__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}

.leva {
  position: relative;
  padding: 70px 0 79px;
  background: var(--color-white, #ffffff);
}
.leva__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  max-width: 825px;
  margin: 0 auto;
  text-align: center;
}
.leva__head .eyebrow {
  white-space: nowrap;
}
.leva__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-green, #00423e);
}
.leva__title .is-orange {
  color: var(--color-orange, #d9830d);
}
.leva__desc {
  margin: -8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.leva__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 52px;
}

.leva-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  -webkit-box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
}
.leva-card + .leva-card {
  margin-left: -1px;
}
.leva-card:first-child {
  border-radius: 24px 0 0 24px;
}
.leva-card:last-child {
  border-radius: 0 24px 24px 0;
}
.leva-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(217, 131, 13, 0.1);
}
.leva-card__icon img {
  width: 22px;
  height: 22px;
}
.leva-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.leva-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.99px;
  color: var(--color-green, #00423e);
}
.leva-card__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}

.como {
  background: var(--color-white, #ffffff);
  padding: 0 0 79px;
}
.como__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 41px;
  min-height: 541px;
  padding: 50px;
  background: var(--color-orange, #d9830d);
  border-radius: 24px;
}
.como__intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 366px;
  flex: 0 0 366px;
  width: 366px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.como__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 34.8px;
  line-height: 1.1;
  color: #ffcf8d;
}
.como__desc {
  margin: -8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white, #ffffff);
}
.como__steps {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px;
  background: #c87400;
  border: 1px solid rgba(255, 202, 130, 0.08);
  border-radius: 24px;
  -webkit-box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
}
.step__num {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white, #ffffff);
  font-size: 18px;
  font-weight: 700;
  line-height: 24.99px;
}
.step__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.step__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.99px;
  color: var(--color-white, #ffffff);
}
.step__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white, #ffffff);
}
.step__text span {
  color: #ffcf8d;
  font-weight: 600;
}
.step--wide {
  position: relative;
  grid-column: span 2;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: radial-gradient(130% 130% at 100% 100%, #df880f 0%, #c87400 100%);
}
.step--wide .step__body {
  position: relative;
  z-index: 1;
  gap: 12px;
  max-width: 266px;
}
.step--wide .step__num {
  margin-bottom: 4px;
}
.step__img {
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 307px;
  height: 228px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  border-radius: 24px 24px 24px 0;
  pointer-events: none;
}

.suporte {
  background: var(--color-green, #00423e);
}
.suporte__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  min-height: 535px;
}
.suporte__intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 332px;
  flex: 0 0 332px;
  width: 332px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.suporte__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-orange, #d9830d);
}
.suporte__desc {
  margin: -8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white, #ffffff);
}
.suporte__pills {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 844px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}

.support-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(0, 66, 62, 0.16);
  color: var(--color-green, #00423e);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

.unidades {
  background: var(--color-white, #ffffff);
  padding: 80px 0;
}
.unidades__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.unidades__head .eyebrow {
  margin-bottom: 8px;
}
.unidades__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-green, #00423e);
}
.unidades__title .is-orange {
  color: var(--color-orange, #d9830d);
}
.unidades__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.gallery__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #007b6c;
  border-radius: 8px;
  -webkit-box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.gallery__tile img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(33, 23, 18, 0)), to(rgba(33, 23, 18, 0.68)));
  background: linear-gradient(to bottom, rgba(33, 23, 18, 0) 20%, rgba(33, 23, 18, 0.68));
  pointer-events: none;
  z-index: 1;
}
.gallery__tile figcaption {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 2;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.6px;
  color: #f8fbff;
  pointer-events: none;
}
.gallery__tile--main {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 624px;
  flex: 0 0 624px;
  width: 624px;
  height: 491px;
}
.gallery__tile--main::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(33, 23, 18, 0)), to(rgba(33, 23, 18, 0.68)));
  background: linear-gradient(to bottom, rgba(33, 23, 18, 0) 40%, rgba(33, 23, 18, 0.68));
}
.gallery__col {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 13px;
}
.gallery__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.gallery__row .gallery__tile {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  height: 239px;
}
.gallery__tile--wide {
  height: 239px;
}
.gallery__tile--wide::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(33, 23, 18, 0)), to(rgba(33, 23, 18, 0.72)));
  background: linear-gradient(to bottom, rgba(33, 23, 18, 0) 20%, rgba(33, 23, 18, 0.72));
}
.gallery__link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  color: inherit;
  text-decoration: none;
}
.gallery__link--hidden {
  display: none;
}
.gallery__link:focus-visible {
  outline: 2px solid var(--color-orange, #d9830d);
  outline-offset: -2px;
}
.gallery__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 66, 62, 0.75) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24' stroke='%23f8fbff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5v-4m0 4h-4m4 0l-5-5'/%3E%3C/svg%3E") center/18px no-repeat;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  pointer-events: none;
}
.gallery__tile:hover .gallery__expand, .gallery__tile:focus-within .gallery__expand {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modelos {
  background: var(--color-green, #00423e);
  padding: 80px 0;
  overflow: hidden;
}
.modelos__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.modelos__intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 396px;
  flex: 0 0 396px;
  width: 396px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.modelos__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-white, #ffffff);
}
.modelos__title .is-orange {
  color: var(--color-orange, #d9830d);
}
.modelos__desc {
  margin: -8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white, #ffffff);
}
.modelos__track {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  padding: 20px 4px 24px;
  margin: -20px -4px -24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
.modelos__track::-webkit-scrollbar {
  height: 6px;
}
.modelos__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}
.modelos__track::-webkit-scrollbar-track {
  background: transparent;
}

.price-card {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 384px;
  flex: 0 0 384px;
  width: 384px;
  scroll-snap-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  -webkit-box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
}
.price-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.price-card__tag {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(0, 66, 62, 0.1);
  color: var(--color-green, #00423e);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
.price-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.price-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.99px;
  color: var(--color-green, #00423e);
}
.price-card__price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.price-card__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91px;
  flex: 0 0 91px;
  width: 91px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-muted, #475467);
}
.price-card__price {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-orange, #d9830d);
  white-space: nowrap;
}
.price-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.price-card__list li {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-ink, #0b1220);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.price-card__list li:first-child {
  padding-top: 0;
  border-top: 0;
}
.price-card__cta {
  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;
  height: 60px;
  margin-top: auto;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--color-green, #00423e);
  -webkit-box-shadow: 0 16px 19px rgba(0, 123, 108, 0.28);
  box-shadow: 0 16px 19px rgba(0, 123, 108, 0.28);
  color: var(--color-white, #ffffff);
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.price-card__cta:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 20px 26px rgba(0, 123, 108, 0.34);
  box-shadow: 0 20px 26px rgba(0, 123, 108, 0.34);
}
.price-card--featured {
  background: var(--color-orange, #d9830d);
  border-color: rgba(15, 23, 42, 0.08);
}
.price-card--featured .price-card__name {
  color: var(--color-green, #00423e);
}
.price-card--featured .price-card__label {
  color: var(--color-ink, #0b1220);
}
.price-card--featured .price-card__price {
  color: var(--color-green, #00423e);
}
.price-card--featured .price-card__list li {
  color: var(--color-ink, #0b1220);
  border-top-color: rgba(0, 66, 62, 0.18);
}
.price-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 8px 24px;
  border-radius: 999px;
  background: #ffc13c;
  color: var(--color-green, #00423e);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq {
  position: relative;
  background: var(--color-white, #ffffff);
  padding: 40px 0 80px;
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: var(--color-green, #00423e);
}
.faq__card {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 70px 50px;
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(var(--color-green-line, #007b6c), 0.2);
  border-radius: 8px;
  -webkit-box-shadow: 0 18px 21px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 21px rgba(0, 0, 0, 0.08);
}
.faq__intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 357px;
  flex: 0 0 357px;
  width: 357px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.faq__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.faq__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 47.8px;
  line-height: 1.1;
  color: var(--color-green, #00423e);
}
.faq__title .is-orange {
  color: var(--color-orange, #d9830d);
}
.faq__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.faq__desc strong {
  color: var(--color-green, #00423e);
  font-weight: 700;
}
.faq__cta {
  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;
  height: 60px;
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--color-green, #00423e);
  -webkit-box-shadow: 0 16px 19px rgba(0, 123, 108, 0.28);
  box-shadow: 0 16px 19px rgba(0, 123, 108, 0.28);
  color: var(--color-white, #ffffff);
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.faq__cta:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 20px 26px rgba(0, 123, 108, 0.34);
  box-shadow: 0 20px 26px rgba(0, 123, 108, 0.34);
}
.faq__list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  -webkit-box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 25px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.faq-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.faq-item__q {
  font-size: 18px;
  font-weight: 600;
  line-height: 24.99px;
  color: var(--color-green, #00423e);
}
.faq-item__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
}
.faq-item__body > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted, #475467);
}
.faq-item.is-open .faq-item__icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-item__body > p {
  padding-bottom: 22px;
}

.footer {
  background: var(--color-white, #ffffff);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 92px 0 40px;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  width: 493px;
}
.footer__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__brand-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.footer__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 24.99px;
  color: var(--color-muted, #475467);
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer__social a {
  display: block;
  width: 36px;
  height: 36px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.footer__social a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.footer__social img {
  width: 36px;
  height: 36px;
}
.footer__totop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer__totop span:first-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 24.99px;
  color: var(--color-green, #00423e);
  text-transform: uppercase;
}
.footer__totop-btn {
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 69, 63, 0.05);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.footer__totop-btn img {
  width: 18px;
  height: 18px;
}
.footer__totop:hover .footer__totop-btn {
  background: rgba(0, 69, 63, 0.1);
}
.footer__divider {
  height: 0;
  margin: 115px 0 63px;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.footer__copy {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 24.99px;
  color: var(--color-muted, #475467);
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer__links a {
  font-size: 14px;
  font-weight: 600;
  line-height: 24.99px;
  color: var(--color-green, #00423e);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--color-orange, #d9830d);
}
.footer__seal {
  width: 72px;
  height: 72px;
}

@media (max-width: 1280px) {
  .container {
    width: 100%;
    padding: 0 32px;
    min-height: 0;
  }
  .nav {
    position: static;
    height: auto;
    padding: 24px 0 20px;
  }
  .nav__menu {
    position: static;
    -webkit-transform: none;
    transform: none;
    left: auto;
  }
  .hero__grid {
    position: static;
    gap: 40px;
    padding: 8px 0 60px;
  }
  .hero__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 520px;
    flex: 1 1 520px;
  }
  .lead-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 420px;
    flex: 1 1 420px;
  }
  .hero__photos {
    position: static;
    margin: 40px auto 0;
  }
  .expansao__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
  }
  .expansao__intro,
  .expansao__stack {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
  }
  .info-card--mint {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    height: auto;
    margin-left: 0;
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .info-card--mint .info-card__headline {
    margin-left: auto;
    max-width: 60%;
  }
  .info-card--dark,
  .info-card--tags {
    height: auto;
  }
  .info-card--dark {
    gap: 16px;
  }
  .mercado__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 40px;
  }
  .mercado__intro,
  .mercado__grid {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .leva__cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }
  .leva-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 8px);
    flex: 1 1 calc(50% - 8px);
    margin-left: 0 !important;
    border-radius: 16px !important;
  }
  .leva__title {
    font-size: 38px;
  }
  .como__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: auto;
    gap: 32px;
    padding: 40px;
  }
  .como__intro {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .como__steps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .suporte__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 40px;
    min-height: 0;
    padding: 70px 0;
  }
  .suporte__intro {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .suporte__pills {
    margin-left: 0;
    max-width: none;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gallery__tile--main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    height: 420px;
  }
  .unidades__title {
    font-size: 38px;
  }
  .modelos__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 40px;
  }
  .modelos__intro {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .modelos__track {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .modelos__title {
    font-size: 38px;
  }
  .faq__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    padding: 48px 40px;
  }
  .faq__intro {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .faq__list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .faq__title {
    font-size: 38px;
  }
  .footer {
    padding-top: 64px;
  }
  .footer__divider {
    margin: 48px 0 40px;
  }
}
@media (max-width: 980px) {
  .hero .container {
    min-height: 0;
  }
  .hero__bg-ellipse,
  .hero__bg-texture {
    top: -400px;
  }
  .nav__menu,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav {
    position: relative;
  }
  .nav.is-open .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(0, 38, 35, 0.97);
    border: 1.5px solid rgba(0, 225, 199, 0.35);
    border-radius: 16px;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 44px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 44px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 5;
    white-space: normal;
  }
  .nav.is-open .nav__menu a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white, #ffffff);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav.is-open .nav__menu a:hover, .nav.is-open .nav__menu a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-orange, #d9830d);
    opacity: 1;
  }
  .hero__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 16px;
    gap: 32px;
  }
  .hero__content,
  .lead-form {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__desc {
    margin-top: 0;
  }
  .expansao__card {
    padding: 32px 22px;
  }
  .expansao__title {
    font-size: 32px;
  }
  .info-card {
    padding: 28px;
  }
  .info-card--mint {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 60px;
  }
  .info-card--mint .info-card__headline {
    margin-left: 0;
    max-width: none;
  }
  .info-card__headline {
    font-size: 26px;
  }
  .info-card--tags {
    gap: 16px;
  }
  .mercado__title {
    font-size: 34px;
  }
  .mercado__grid {
    grid-template-columns: 1fr;
  }
  .mkt-card {
    padding: 28px;
  }
  .leva__title {
    font-size: 30px;
  }
  .leva-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .como__card {
    padding: 28px;
  }
  .como__steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .step--wide {
    grid-column: span 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
  }
  .step--wide .step__body {
    max-width: none;
  }
  .step__img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 280px;
    margin-top: 16px;
    border-radius: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center top;
    object-position: center top;
    background: rgba(0, 0, 0, 0.06);
  }
  .suporte__inner {
    padding: 48px 0 64px;
  }
  .suporte__title {
    font-size: 34px;
  }
  .suporte__pills {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
  }
  .support-tag {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .unidades__title {
    font-size: 30px;
  }
  .gallery__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gallery__row .gallery__tile {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 220px;
  }
  .gallery__tile--main {
    height: 300px;
  }
  .modelos__title {
    font-size: 30px;
  }
  .price-card {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    width: 300px;
  }
  .price-card__price-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4px;
  }
  .price-card__label {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: auto;
  }
  .faq__card {
    padding: 32px 22px;
  }
  .faq__title {
    font-size: 30px;
  }
  .faq-item__q {
    font-size: 16px;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 32px;
  }
  .footer__brand {
    width: 100%;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
  .footer__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .footer__seal {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .hero .container {
    min-height: 0;
  }
  .nav {
    padding: 12px 0 16px;
  }
  .nav__logo {
    width: 72px;
    height: 72px;
  }
  .hero__grid {
    padding-top: 50px;
    gap: 28px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .hero__photos {
    width: 100%;
    height: auto;
  }
  .hero__photo--back {
    position: relative;
    width: 100%;
    height: 220px;
  }
  .hero__photo--front {
    display: none;
  }
  .lead-form {
    padding: 24px;
  }
  .como__title {
    font-size: 28px;
  }
  .step__img {
    height: 260px;
  }
  .suporte__inner {
    padding: 40px 15px 72px;
  }
  .suporte__title {
    font-size: 30px;
  }
  .suporte__pills {
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .suporte__intro {
    text-align: center;
  }
  .suporte__intro .eyebrow {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.mercado__grid .mkt-card,
.leva__cards .leva-card,
.expansao__card .info-card,
.como__steps .step,
.modelos__track .price-card {
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.mercado__grid .mkt-card:hover,
.leva__cards .leva-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.expansao__card .info-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 22px 38px rgba(0, 66, 62, 0.16);
  box-shadow: 0 22px 38px rgba(0, 66, 62, 0.16);
}

.como__steps .step:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 20px 32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.2);
}

.modelos__track .price-card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 28px 46px rgba(0, 66, 62, 0.2);
  box-shadow: 0 28px 46px rgba(0, 66, 62, 0.2);
}

.mkt-card__icon,
.leva-card__icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mercado__grid .mkt-card:hover .mkt-card__icon,
.leva__cards .leva-card:hover .leva-card__icon {
  -webkit-transform: scale(1.1) rotate(-4deg);
  transform: scale(1.1) rotate(-4deg);
}

.gallery__tile img {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery__tile:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.lg-backdrop {
  background-color: rgba(0, 66, 62, 0.92);
}

.lg-outer .lg-thumb-outer {
  background-color: rgba(0, 0, 0, 0.55);
}

.lg-outer .lg-thumb-item {
  width: 80px !important;
  height: 60px !important;
  max-width: 80px !important;
  max-height: 60px !important;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.lg-outer .lg-thumb-item img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--color-orange, #d9830d);
}

.lg-outer .lg-prev,
.lg-outer .lg-next {
  color: #f8fbff;
}
.lg-outer .lg-prev:hover:not(.disabled),
.lg-outer .lg-next:hover:not(.disabled) {
  color: var(--color-orange, #d9830d);
}

.lg-outer .lg-toolbar .lg-icon {
  color: #f8fbff;
}
.lg-outer .lg-toolbar .lg-icon:hover {
  color: var(--color-orange, #d9830d);
}

.lg-sub-html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.lg-toolbar .lg-close:after {
  content: "" !important;
  font-family: sans-serif !important;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.lg-next:before {
  content: "" !important;
  font-family: sans-serif !important;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.lg-prev:after {
  content: "" !important;
  font-family: sans-serif !important;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

@media (max-width: 768px) {
  .lg-outer .lg-thumb-item {
    width: 60px !important;
    height: 45px !important;
    max-width: 60px !important;
    max-height: 45px !important;
    margin-bottom: 4px !important;
  }
  .lg-outer .lg-thumb-outer {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}
.support-tag {
  -webkit-transition: color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.support-tag:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  color: var(--color-orange, #d9830d);
  border-color: rgba(217, 131, 13, 0.5);
  -webkit-box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.tag {
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}

.tag:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background: rgba(0, 66, 62, 0.12);
}

.faq-item__q {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.faq-item__head:hover .faq-item__q {
  color: var(--color-orange, #d9830d);
}

.footer__seal {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.footer__seal:hover {
  -webkit-transform: rotate(8deg) scale(1.05);
  transform: rotate(8deg) scale(1.05);
}

.field__control--select.is-highlight {
  border-color: var(--color-orange, #d9830d);
  -webkit-box-shadow: 0 0 0 3px rgba(217, 131, 13, 0.2);
  box-shadow: 0 0 0 3px rgba(217, 131, 13, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    -webkit-transition-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}