@font-face {
  font-family: "New Order";
  src: url("assets/fonts/NewOrder-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "New Order";
  src: url("assets/fonts/NewOrder-Semibold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
:root {
  --paper: #f7f7f2;
  --ink: #292e2b;
  --muted: #626960;
  --line: #d9dcd3;
  --accent: #59684d;
  --lilac: #c5cfe2;
  --dark: #26302a;
  --width: 1320px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "New Order", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(38px, 4vw, 61px);
}
h2 {
  font-size: clamp(32px, 3.3vw, 48px);
}
h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
}
h1 span,
h2 span {
  color: var(--accent);
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: var(--lilac);
}
:focus-visible {
  outline: 3px solid #7085bb;
  outline-offset: 5px;
}
.container {
  width: min(var(--width), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--accent);
  border-radius: 50%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 23px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  min-height: 52px;
  transition: background 0.2s;
}
.btn:hover {
  background: #454e43;
}
.btn span {
  font-size: 20px;
  font-weight: 400;
}
.btn--small {
  font-size: 12px;
  min-height: 43px;
  padding: 11px 17px;
  gap: 24px;
}
.btn--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--light:hover {
  background: #e1e6d9;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}
.text-link:hover {
  color: var(--accent);
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 20px;
  z-index: 200;
  background: var(--ink);
  color: white;
  padding: 14px;
}
.skip-link:focus {
  top: 10px;
}
.navbar {
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.navbar__logo img {
  width: 122px;
  height: auto;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navbar__nav > a:not(.btn) {
  font-size: 13px;
  text-decoration: none;
}
.navbar__nav > a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.navbar__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 12px;
  min-height: 44px;
  min-width: 44px;
}
.navbar__toggle span {
  width: 23px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  margin: 6px 0;
}
.hero {
  padding-top: 46px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero__copy {
  padding: 25px 0 35px;
}
.hero h1 {
  margin-top: 25px;
}
.hero__lead {
  max-width: 460px;
  margin-top: 27px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 31px;
}
.hero__actions .text-link {
  font-size: 13px;
}
.hero__note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 44px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 19px;
}
.hero__note > span {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.hero__image {
  height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e2ded2;
}
.hero__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero__image:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(21, 27, 21, 0.6));
  pointer-events: none;
}
.image-label {
  position: absolute;
  bottom: 57px;
  left: 32px;
  right: 24px;
  z-index: 1;
  color: white;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.image-label span {
  display: block;
}
.hero__image figcaption {
  position: absolute;
  bottom: 21px;
  left: 32px;
  color: #fff;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.promise-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  font-size: 13px;
}
.promise-strip > span {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.promise-strip i {
  font-style: normal;
  color: #7c8477;
  font-size: 17px;
}
.section-heading {
  max-width: 690px;
}
.section-heading h2 {
  margin-top: 22px;
}
.section-heading > p:last-child {
  font-size: 16px;
  color: var(--muted);
  max-width: 510px;
  margin-top: 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}
.step {
  padding: 26px 34px 0 0;
}
.step + .step {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.step:last-child {
  padding-right: 0;
}
.step__number {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.step__icon {
  margin: 33px 0 24px;
}
.step__icon img {
  opacity: 0.75;
}
.step h3 {
  max-width: 240px;
}
.step > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 325px;
}
.step__detail {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 28px;
  font-size: 11px;
  color: var(--accent);
}
.operations {
  background: var(--dark);
  color: var(--paper);
}
.operations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.operations .eyebrow {
  color: #c6d0bd;
}
.operations h2 {
  margin-top: 26px;
}
.operations h2 span {
  color: #bdcbb3;
}
.operations__intro > p:not(.eyebrow) {
  max-width: 400px;
  font-size: 16px;
  margin-top: 27px;
  color: #ccd3c9;
}
.operations .text-link {
  margin-top: 30px;
  border-color: #596354;
  color: var(--paper);
}
.operations__list article {
  display: flex;
  gap: 25px;
  border-top: 1px solid #505b51;
  padding: 26px 0;
}
.operations__list article:last-child {
  border-bottom: 1px solid #505b51;
}
.list-number {
  font-size: 11px;
  color: #bbc9b1;
  padding-top: 3px;
}
.operations__list h3 {
  font-size: 21px;
}
.operations__list p {
  color: #cbd3c9;
  font-size: 14px;
  margin-top: 11px;
}
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}
.section-heading--split > p:last-child {
  max-width: 390px;
  margin: 0;
}
.product-figure {
  margin-top: 48px;
  padding: 24px;
  background: #e9ece4;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.product-figure > img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 6px 25px #28352b12;
}
.product-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
  font-size: 11px;
  color: var(--muted);
}
.starting {
  padding: 66px 0;
  background: #e8ebdf;
  border-block: 1px solid #d4d9ca;
}
.starting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 100px;
}
.starting__grid > .eyebrow {
  grid-column: 1/-1;
}
.starting h2 {
  font-size: 38px;
}
.starting__grid > div > p {
  font-size: 15px;
  color: #525d4d;
  max-width: 440px;
}
.starting .text-link {
  border-color: #bdc5b3;
  margin-top: 16px;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.faq h2 {
  margin-top: 24px;
}
.faq__items details {
  border-top: 1px solid var(--line);
}
.faq__items details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 25px;
  font-weight: 400;
}
details[open] summary span {
  transform: rotate(45deg);
}
details > p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 28px 24px 0;
}
.contact {
  background: var(--dark);
  color: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact .eyebrow {
  color: #c6d0bd;
}
.contact h2 {
  margin-top: 25px;
  font-size: clamp(38px, 4vw, 58px);
}
.contact h2 span {
  color: #bdcbb3;
}
.contact__copy > p:not(.eyebrow) {
  color: #cbd3c9;
  font-size: 16px;
  max-width: 330px;
  margin-top: 26px;
}
.contact__channels {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 19px;
  margin-top: 45px;
}
.contact__channels > span {
  font-size: 12px;
  color: #cbd3c9;
}
.contact__email {
  font-size: 15px;
  text-underline-offset: 6px;
  display: flex;
  gap: 28px;
}
.form {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 21px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
}
.field__hint {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  background: transparent;
  border: 1px solid #b9c0b1;
  border-radius: 3px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}
.field textarea {
  resize: vertical;
  min-height: 115px;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.field textarea::placeholder {
  color: #71786b;
  font-size: 13px;
}
.form__submit {
  width: 100%;
  justify-content: center;
}
.form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form__legal {
  margin-top: 17px;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  color: var(--muted);
}
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.5;
}
.form__status:empty {
  display: none;
}
.form__status--erro {
  color: #9c3027;
}
.form.is-validated input:invalid {
  border-color: #9c3027;
}
.form__sucesso {
  background: var(--paper);
  color: var(--ink);
  padding: 40px;
  border-radius: 6px;
}
.form__sucesso p {
  margin-top: 15px;
  color: var(--muted);
}
noscript p {
  font-size: 14px;
  margin-top: 20px;
}
.footer {
  background: #202822;
  color: #d1d9cc;
  padding: 34px 0;
  border-top: 1px solid #455041;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer p {
  font-size: 11px;
  line-height: 1.6;
}
.footer nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer nav a {
  text-decoration: none;
}
.footer nav a:hover {
  text-decoration: underline;
}
.footer small {
  font-size: 10px;
  color: #bcc6b7;
}
@media (min-width: 1600px) {
  .hero__image {
    height: 650px;
  }
  .hero__copy {
    padding-block: 40px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero__grid {
    gap: 30px;
  }
  .hero__image {
    height: 565px;
  }
  h1 {
    font-size: 43px;
  }
  .hero__actions {
    gap: 16px;
  }
  .hero__actions .btn {
    gap: 15px;
  }
  .operations__grid,
  .contact__grid,
  .faq__grid,
  .section-heading--split,
  .starting__grid {
    column-gap: 50px;
  }
  .navbar__nav {
    gap: 20px;
  }
  .hero__note {
    font-size: 10px;
  }
  .image-label {
    font-size: 18px;
    left: 24px;
  }
  .hero__image figcaption {
    left: 24px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .navbar {
    height: 72px;
  }
  .navbar__logo img {
    width: 108px;
  }
  .navbar__toggle {
    display: block;
    cursor: pointer;
  }
  .navbar__nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 20px #26302a0d;
  }
  .navbar__nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .navbar__nav > a:not(.btn) {
    padding: 15px 0;
    font-size: 16px;
  }
  .navbar__nav .btn {
    margin-top: 13px;
    justify-content: center;
  }
  .hero {
    padding-top: 25px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__copy {
    padding: 10px 0 0;
  }
  .hero h1 {
    font-size: clamp(36px, 6.3vw, 54px);
    margin-top: 20px;
  }
  .hero__lead {
    max-width: 560px;
    font-size: 16px;
    margin-top: 22px;
  }
  .hero__actions {
    margin-top: 26px;
    gap: 22px;
  }
  .hero__note {
    margin-top: 26px;
    font-size: 11px;
  }
  .hero__image {
    height: 440px;
  }
  .hero__image > img {
    object-position: center 58%;
  }
  .promise-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px 18px;
    padding-block: 25px;
    font-size: 12px;
  }
  .promise-strip > span {
    width: 100%;
    margin-bottom: 6px;
  }
  .promise-strip i {
    font-size: 13px;
  }
  .section {
    padding: 72px 0;
  }
  .steps {
    gap: 0;
    margin-top: 35px;
  }
  .step {
    padding-right: 18px;
  }
  .step + .step {
    padding-left: 18px;
  }
  .step h3 {
    font-size: 21px;
  }
  .step__detail {
    font-size: 10px;
  }
  .operations__grid,
  .contact__grid,
  .faq__grid,
  .section-heading--split,
  .starting__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .operations__intro > p:not(.eyebrow) {
    max-width: 550px;
  }
  .operations .text-link {
    margin-top: 17px;
  }
  .section-heading--split > p:last-child {
    max-width: 550px;
  }
  .product-figure {
    padding: 12px;
    margin-top: 30px;
  }
  .product-figure figcaption {
    flex-direction: column;
    gap: 5px;
    margin-top: 12px;
  }
  .starting {
    padding: 48px 0;
  }
  .starting__grid {
    gap: 20px;
  }
  .starting h2 {
    font-size: 34px;
  }
  .starting__grid > div > p {
    max-width: 550px;
  }
  .faq__grid {
    gap: 30px;
  }
  .contact h2 {
    font-size: 44px;
  }
  .contact__copy > p:not(.eyebrow) {
    max-width: 450px;
  }
  .contact__channels {
    margin-top: 29px;
  }
  .contact__grid {
    gap: 38px;
  }
  .footer__inner {
    flex-wrap: wrap;
  }
  .footer p {
    margin-left: auto;
  }
  .footer nav {
    width: 60%;
  }
}
@media (max-width: 560px) {
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    gap: 7px;
  }
  .hero h1 {
    font-size: 37px;
    letter-spacing: -0.048em;
  }
  .hero__lead {
    font-size: 15px;
  }
  .hero__actions {
    gap: 15px;
  }
  .hero__actions .btn {
    font-size: 13px;
    padding: 14px 16px;
    gap: 15px;
  }
  .hero__actions .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .hero__image {
    height: 360px;
  }
  .image-label {
    font-size: 17px;
    bottom: 48px;
    left: 20px;
  }
  .hero__image figcaption {
    left: 20px;
    bottom: 18px;
  }
  .promise-strip {
    gap: 6px 12px;
    font-size: 10px;
  }
  .promise-strip > span {
    font-size: 9px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step,
  .step + .step {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .step__icon {
    float: right;
    margin: 0 0 0 18px;
  }
  .step h3 {
    max-width: none;
    margin-top: 22px;
    font-size: 24px;
  }
  .step > p {
    max-width: none;
    margin-top: 14px;
  }
  .step__detail {
    margin-top: 18px;
    padding-top: 12px;
    font-size: 11px;
  }
  .operations__list article {
    gap: 18px;
    padding: 23px 0;
  }
  .operations__list h3 {
    font-size: 20px;
  }
  .operations__list p {
    font-size: 14px;
  }
  .product-figure {
    padding: 7px;
  }
  .product-figure figcaption {
    padding: 4px 5px;
    font-size: 10px;
  }
  .form {
    padding: 23px;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact h2 {
    font-size: 40px;
  }
  .footer p {
    font-size: 10px;
  }
  .footer nav {
    gap: 20px;
  }
  .hero__note {
    font-size: 10px;
    gap: 13px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero__note {
    font-size: 9px;
  }
  .promise-strip {
    font-size: 9px;
    gap: 6px 8px;
  }
  .image-label {
    font-size: 15px;
  }
  .form {
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__copy {
    animation: arrive 0.65s ease-out both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
.product-figure {
  max-width: 1060px;
  margin-inline: auto;
}
.product-figure > a {
  display: block;
}
.product-figure > a > img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 6px 25px #28352b12;
}
