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

:root {
  --navy: #071923;
  --navy-soft: #0d2b36;
  --ink: #10232b;
  --ink-muted: #53656b;
  --cream: #f4f0e8;
  --cream-deep: #e7e0d5;
  --paper: #fffdf9;
  --mint: #bfe8dc;
  --mint-bright: #d8f4eb;
  --teal: #0f6d68;
  --coral: #e16f58;
  --line-dark: rgb(255 255 255 / 18%);
  --line-light: rgb(16 35 43 / 16%);
  --page: min(100% - 2rem, 90rem);
  --content: min(100% - 2rem, 76rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  background: var(--cream);
}

body {
  min-width: 20rem;
  margin: 0;
  padding-bottom: 4.5rem;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: inherit;
  font-weight: 600;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.65rem, 7vw, 5rem);
}

h3 {
  line-height: 1.16;
}

em {
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
}

::selection {
  background: var(--mint);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--mint);
  color: var(--navy);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--content);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-mint {
  color: var(--mint);
}

.eyebrow-coral {
  color: var(--coral);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 4.75rem;
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgb(244 240 232 / 96%);
  color: var(--navy);
  border-color: var(--line-light);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: var(--page);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-logo {
  display: block;
  width: clamp(9.5rem, 20vw, 12rem);
  height: auto;
  transition: filter 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  filter: invert(1);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.89rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 0.3rem;
  opacity: 0.65;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-content: center;
  gap: 0.42rem;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(0.24rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: translateY(-0.24rem) rotate(-45deg);
}

.primary-navigation {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background: var(--cream);
  color: var(--navy);
  opacity: 0;
  transition: max-height 300ms ease, opacity 180ms ease, visibility 180ms ease;
}

.primary-navigation.is-open {
  max-height: 25rem;
  visibility: visible;
  opacity: 1;
}

.primary-navigation a {
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header .header-cta {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button span {
  flex: 0 0 auto;
  font-size: 1rem;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.68rem 0.95rem;
}

.button-mint {
  background: var(--mint);
  color: var(--navy);
}

.button-mint:hover {
  background: var(--mint-bright);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  min-height: auto;
  padding: 7.25rem max(1rem, calc((100vw - 90rem) / 2)) 2rem;
  gap: 0;
  background:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    var(--navy);
  background-size: 5rem 5rem;
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 10vw, 6.4rem);
}

.hero h1 em {
  display: block;
  margin-top: 0.05em;
  color: var(--mint);
}

.hero-lead {
  max-width: 41rem;
  margin: 1.75rem 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  margin-top: 2rem;
  gap: 1.15rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-note {
  display: none;
  max-width: 36rem;
  grid-template-columns: auto 1fr;
  margin-top: 2rem;
  padding-top: 1.5rem;
  gap: 0.8rem;
  border-top: 1px solid var(--line-dark);
}

.hero-note > span {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border: 1px solid var(--mint);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.7rem;
}

.hero-note p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.75rem;
  line-height: 1.7;
}

.hero-note strong {
  color: #fff;
}

.hero-media {
  position: relative;
  z-index: 0;
  height: clamp(21rem, 60svh, 42rem);
  min-height: 21rem;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgb(7 25 35 / 76%) 100%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media-caption {
  position: absolute;
  z-index: 1;
  bottom: 1.5rem;
  left: 1.35rem;
  display: grid;
  max-width: 24rem;
  gap: 0.3rem;
}

.hero-media-caption span {
  color: var(--mint);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media-caption strong {
  max-width: 24rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-photo-index {
  position: absolute;
  display: none;
  z-index: 2;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.75rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  padding: 1rem;
  background: var(--mint);
}

.proof-item {
  display: grid;
  grid-template-columns: minmax(5.4rem, auto) 1fr;
  align-items: center;
  padding: 1.6rem 0.6rem;
  gap: 1rem;
  border-bottom: 1px solid rgb(7 25 35 / 19%);
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.3rem, 14vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.proof-item sup {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 0.27em;
  vertical-align: top;
}

.proof-item span {
  max-width: 14rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.fit-section {
  padding-block: 6rem;
}

.fit-heading {
  max-width: 61rem;
}

.fit-heading h2 em {
  display: block;
}

.fit-grid {
  display: grid;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line-light);
}

.fit-grid article {
  padding: 1.75rem 0 1.6rem;
  border-bottom: 1px solid var(--line-light);
}

.fit-grid article > span {
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 700;
}

.fit-grid h3 {
  margin-top: 2rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.fit-grid p {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.91rem;
}

.offer-section {
  padding-block: 6rem;
  background: var(--paper);
}

.offer-intro {
  display: grid;
}

.offer-intro h2 {
  max-width: 62rem;
}

.offer-intro h2 em {
  color: var(--coral);
}

.offer-intro > p:last-child {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
}

.offer-grid {
  display: grid;
  margin-top: 3.5rem;
  gap: 1rem;
}

.offer-card {
  display: flex;
  min-width: 0;
  min-height: 35rem;
  flex-direction: column;
  padding: 1.6rem;
}

.offer-card-dark {
  background: var(--navy);
  color: #fff;
}

.offer-card-light {
  background: var(--mint);
  color: var(--navy);
}

.offer-card-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card-top small {
  font: inherit;
  opacity: 0.65;
}

.offer-card h3 {
  margin-top: 2.2rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.offer-lead {
  max-width: 31rem;
  margin: 1rem 0 0;
  opacity: 0.74;
  font-size: 0.9rem;
}

.offer-card ul {
  display: grid;
  margin: 2rem 0;
  padding: 0;
  gap: 0.8rem;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.84rem;
}

.offer-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.offer-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.requirement {
  display: grid;
  margin-top: 1rem;
  padding: 1.6rem;
  gap: 1.25rem;
  border: 1px solid var(--line-light);
  background: var(--cream);
}

.requirement-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 700;
}

.requirement .eyebrow {
  margin-bottom: 0.55rem;
}

.requirement h3 {
  max-width: 47rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.85rem, 6vw, 3rem);
  font-weight: 500;
}

.requirement > div:last-child > p:last-child {
  max-width: 45rem;
  margin: 0.8rem 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.process-section {
  display: grid;
  padding-block: 6rem;
  gap: 3.5rem;
}

.process-heading h2 {
  max-width: 9ch;
}

.process-heading > p:last-child {
  max-width: 31rem;
  margin: 1.3rem 0 0;
  color: var(--ink-muted);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  padding: 1.5rem 0;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 700;
}

.process-list h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.process-list p {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.authority-section {
  display: grid;
  background: var(--navy);
  color: #fff;
}

.authority-media {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
}

.authority-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgb(7 25 35 / 75%));
  content: "";
}

.authority-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authority-media > span {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1rem;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.9;
}

.authority-copy {
  padding: 4.5rem 1rem;
}

.authority-copy h2 {
  color: var(--mint);
}

.authority-lead {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  line-height: 1.2;
}

.authority-copy > p:not(.eyebrow, .authority-lead) {
  max-width: 39rem;
  margin: 1.2rem 0 0;
  color: rgb(255 255 255 / 65%);
  font-size: 0.9rem;
}

.authority-principle {
  display: grid;
  max-width: 41rem;
  margin: 2.3rem 0 0;
  padding: 1.5rem 0 0;
  gap: 0.5rem;
  border-top: 1px solid var(--line-dark);
}

.authority-principle span {
  color: rgb(255 255 255 / 48%);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.authority-principle strong {
  color: var(--mint);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 5vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
}

.authority-feedback {
  display: grid;
  max-width: 41rem;
  margin-top: 2.3rem;
  padding: 1.5rem 0 0;
  gap: 0.55rem;
  border-top: 1px solid var(--line-dark);
}

.authority-feedback span {
  color: rgb(255 255 255 / 52%);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.authority-feedback strong {
  color: var(--mint);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 5vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
}

.authority-feedback p {
  max-width: 39rem;
  margin: 0.35rem 0 0;
  color: rgb(255 255 255 / 65%);
  font-size: 0.9rem;
}

.field-section {
  padding-block: 6rem;
  background: var(--paper);
}

.field-heading {
  margin-bottom: 3rem;
}

.field-heading h2 {
  max-width: 59rem;
}

.field-gallery-shell {
  position: relative;
  width: var(--page);
  margin-inline: auto;
}

.field-gallery {
  display: flex;
  width: 100%;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.1rem 0.1rem 1.1rem;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--navy) transparent;
  scrollbar-width: thin;
}

.field-gallery:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 0.35rem;
}

.field-shot {
  flex: 0 0 min(78vw, 20rem);
  position: relative;
  margin: 0;
  min-height: 31rem;
  overflow: hidden;
  scroll-snap-align: start;
}

.field-shot-wide {
  flex-basis: min(82vw, 34rem);
}

.field-gallery-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  background: rgb(7 25 35 / 88%);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.field-gallery-control:hover:not(:disabled) {
  background: var(--teal);
  transform: translateY(-50%) scale(1.05);
}

.field-gallery-control:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 0.2rem;
}

.field-gallery-control:disabled {
  cursor: default;
  opacity: 0.28;
}

.field-gallery-control-prev {
  left: 0.65rem;
}

.field-gallery-control-next {
  right: 0.65rem;
}

.field-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgb(7 25 35 / 82%) 100%);
  content: "";
}

.field-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-shot-wide img {
  object-position: 45% center;
}

.field-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  color: #fff;
}

.field-shot figcaption span {
  color: var(--mint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field-shot figcaption strong {
  margin-top: 0.35rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.map-section {
  display: grid;
  padding: 6rem max(1rem, calc((100vw - 76rem) / 2));
  gap: 3rem;
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    var(--navy-soft);
  background-size: 4.5rem 4.5rem;
  color: #fff;
}

.map-copy h2 {
  max-width: 11ch;
}

.map-copy h2 em {
  color: var(--mint);
}

.map-copy > p:last-of-type {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 63%);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.55rem;
}

.city-list button,
.city-list span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-list button {
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.city-list button:hover,
.city-list button[aria-pressed="true"] {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--navy);
}

.city-list button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.city-list .city-list-more {
  border-color: var(--mint);
  color: var(--mint);
}

.brazil-map {
  align-self: center;
}

.brazil-map svg {
  width: 100%;
  max-height: 35rem;
  overflow: visible;
}

.map-outline {
  fill: rgb(191 232 220 / 8%);
  stroke: var(--mint);
  stroke-width: 2;
}

.map-route {
  fill: none;
  stroke: var(--coral);
  stroke-dasharray: 6 8;
  stroke-width: 1.5;
}

.map-point circle {
  fill: var(--coral);
  stroke: var(--navy-soft);
  stroke-width: 4;
}

.map-point {
  transform-box: fill-box;
  transform-origin: center;
}

.map-point.is-selected circle {
  fill: var(--mint);
  stroke: #fff;
}

.map-point.is-pulsing {
  animation: map-point-pulse 900ms ease;
}

@keyframes map-point-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.7);
  }
}

.map-point text {
  fill: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.map-point-secondary circle {
  fill: var(--mint);
  stroke: var(--navy-soft);
}

.map-point-secondary text {
  font-size: 10px;
}

.map-national-label {
  font-family: "Manrope", sans-serif;
  margin: 0.35rem 0 0.9rem;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.brazil-map > p:not(.map-national-label) {
  margin: -0.5rem 0 0;
  color: rgb(255 255 255 / 45%);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  width: var(--content);
  margin-inline: auto;
  padding-block: 6rem;
  gap: 3rem;
}

.faq-heading h2 {
  max-width: 8ch;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--coral);
  content: "+";
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 39rem;
  margin: -0.25rem 0 1.75rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.contact-section {
  display: grid;
  padding: 6rem max(1rem, calc((100vw - 76rem) / 2));
  gap: 2.5rem;
  background: var(--navy);
  color: #fff;
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-copy h2 em {
  color: var(--mint);
}

.contact-copy > p:last-child {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 65%);
}

.contact-card {
  display: flex;
  align-self: end;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  background: rgb(255 255 255 / 6%);
}

.contact-card > p {
  margin-bottom: 1.2rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card .button {
  width: 100%;
}

.contact-secondary {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.contact-card small {
  margin-top: 1.3rem;
  color: rgb(255 255 255 / 50%);
  font-size: 0.65rem;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  padding-block: 4rem 1.25rem;
  background: var(--navy);
  color: #fff;
}

.footer-inner {
  display: grid;
  gap: 2.75rem;
}

.footer-brand > p {
  max-width: 19rem;
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 54%);
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-links p {
  margin-bottom: 0.25rem;
  color: var(--mint);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgb(255 255 255 / 68%);
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  gap: 0.5rem 2rem;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 58%);
  font-size: 0.62rem;
}

.mobile-contact {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 -12px 30px rgb(7 25 35 / 16%);
}

.js [data-reveal] {
  transform: translateY(1.2rem);
  opacity: 0;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 500ms ease;
}

.js [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 48rem) {
  :root {
    --page: min(100% - 3rem, 90rem);
    --content: min(100% - 3rem, 76rem);
  }

  .hero {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .hero-actions {
    display: flex;
    align-items: center;
  }

  .hero-actions .button {
    max-width: 23rem;
  }

  .hero-note {
    display: grid;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 max(1.5rem, calc((100vw - 90rem) / 2));
  }

  .proof-item {
    min-width: 0;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 2.25rem 1.3rem;
    border-right: 1px solid rgb(7 25 35 / 19%);
    border-bottom: 0;
  }

  .proof-item:last-child {
    border-right: 0;
  }

  .proof-item span {
    min-height: 3.3rem;
  }

  .fit-section,
  .offer-section,
  .process-section,
  .field-section,
  .faq-section {
    padding-block: 8rem;
  }

  .fit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fit-grid article {
    padding: 1.75rem 1.5rem 0 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .fit-grid article + article {
    padding-left: 1.5rem;
  }

  .fit-grid article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card {
    padding: 2.1rem;
  }

  .requirement {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 2rem;
  }

  .process-section {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 6rem;
  }

  .authority-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .authority-copy {
    display: flex;
    min-height: 48rem;
    flex-direction: column;
    justify-content: center;
    padding: 6rem clamp(3rem, 6vw, 7rem);
  }

  .field-gallery {
    gap: 1rem;
    padding-bottom: 1.35rem;
  }

  .field-shot {
    flex-basis: min(30vw, 24rem);
    min-height: 40rem;
  }

  .field-shot-wide {
    flex-basis: min(42vw, 36rem);
    min-height: 40rem;
  }

  .map-section,
  .contact-section {
    padding-block: 8rem;
  }

  .faq-section {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 6rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1.5fr 0.8fr 1fr;
  }
}

@media (min-width: 64rem) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    height: 5.25rem;
  }

  .menu-toggle,
  .mobile-contact {
    display: none;
  }

  .primary-navigation {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    margin-left: auto;
    overflow: visible;
    visibility: visible;
    background: transparent;
    color: inherit;
    opacity: 1;
  }

  .primary-navigation a {
    min-height: 2.75rem;
    padding-inline: 0.7rem;
    border: 0;
    font-size: 0.66rem;
  }

  .primary-navigation a:hover {
    color: var(--mint);
  }

  .site-header.is-scrolled .primary-navigation a:hover {
    color: var(--teal);
  }

  .primary-navigation .nav-contact {
    display: none;
  }

  .site-header .header-cta {
    display: inline-flex;
    margin-left: 1rem;
  }

  .site-header:not(.is-scrolled) .header-cta {
    border-color: rgb(255 255 255 / 45%);
    background: transparent;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 8.5rem max(2rem, calc((100vw - 90rem) / 2)) 3rem;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 6vw, 5.4rem);
  }

  .hero-media {
    height: clamp(30rem, 62svh, 46rem);
    min-height: 30rem;
    align-self: stretch;
  }

  .hero-media-caption {
    bottom: 2rem;
    left: 2rem;
  }

  .proof-item {
    grid-template-columns: minmax(8rem, auto) 1fr;
    padding: 2.6rem 2rem;
  }

  .proof-item span {
    min-height: auto;
  }

  .offer-intro {
    grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.5fr);
    align-items: end;
    gap: 4rem;
  }

  .offer-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .offer-intro > p:last-child {
    margin: 0 0 0.25rem;
  }

  .offer-card {
    min-height: 38rem;
    padding: 2.5rem;
  }

  .requirement {
    padding: 2.5rem;
  }

  .authority-media {
    min-height: 48rem;
  }

  .map-section {
    grid-template-columns: minmax(0, 0.94fr) minmax(28rem, 1.06fr);
    align-items: center;
    gap: 5rem;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1.25fr) minmax(21rem, 0.75fr);
    gap: 6rem;
  }
}

@media (min-width: 90rem) {
  .hero {
    gap: 6rem;
  }

  .hero h1 {
    font-size: 5.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
