:root {
  --ink: #123d3b;
  --ink-deep: #082d2d;
  --teal: #087d75;
  --teal-bright: #13a79b;
  --mint: #a8d9c7;
  --sea: #70beb1;
  --cream: #f5efdf;
  --paper: #fbf8ef;
  --coral: #e5785e;
  --sun: #e8b95f;
  --line: rgba(18, 61, 59, 0.16);
  --shadow: 0 24px 70px rgba(19, 58, 53, 0.12);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 4%, rgba(232, 185, 95, 0.12), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink-deep);
  color: white;
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.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;
}

.page-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 88px;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 10;
  background: rgba(251, 248, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  width: fit-content;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-deep);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  border: 5px solid var(--teal);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.brand-mark span {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 6px;
  background: var(--sun);
  border-radius: 50%;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  gap: 34px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding: 33px 0 29px;
  text-decoration: none;
  color: rgba(18, 61, 59, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--teal-bright);
  border-radius: 3px 3px 0 0;
}

.hero {
  min-height: 680px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(88px, 11vw, 150px) clamp(24px, 6vw, 88px) 70px;
  isolation: isolate;
}

.hero-art,
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-art {
  background-image:
    linear-gradient(90deg, rgba(245, 239, 223, 0.97) 2%, rgba(245, 239, 223, 0.84) 42%, rgba(245, 239, 223, 0.1) 75%),
    url("tropicanacailin_Editorial_hero_illustration_for_a_mobile_web__296bdcac-7938-4d0f-98d9-ad4459bd932f_0.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.94);
  transform: scale(1.015);
  animation: settle 1.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(251, 248, 239, 0) 65%, var(--paper) 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1), transparent 30%);
}

.eyebrow,
.mini-label,
.card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 700;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 20px;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.96;
  color: var(--ink-deep);
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: rgba(18, 61, 59, 0.76);
}

.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.city-picker {
  position: relative;
  z-index: 80;
  width: fit-content;
  min-width: 270px;
  padding: 12px 16px 11px;
  background: rgba(251, 248, 239, 0.82);
  border: 1px solid rgba(18, 61, 59, 0.17);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 61, 59, 0.08);
  backdrop-filter: blur(14px);
}

.picker-label {
  display: block;
  margin-bottom: 2px;
  color: rgba(18, 61, 59, 0.6);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.custom-select {
  position: relative;
}

.select-trigger {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 0 2px;
  background: transparent;
  color: var(--ink-deep);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  outline: 0;
}

.select-trigger:focus-visible {
  border-radius: 5px;
  box-shadow: 0 0 0 3px rgba(19, 167, 155, 0.25);
}

.select-chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.select-trigger[aria-expanded="true"] .select-chevron {
  transform: translateY(3px) rotate(225deg);
}

.select-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 13px);
  left: -17px;
  width: calc(100% + 34px);
  padding: 8px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(18, 61, 59, 0.16);
  border-radius: 15px;
  box-shadow: 0 22px 55px rgba(8, 45, 45, 0.2);
  transform-origin: top center;
  animation: menu-in 160ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.select-menu[hidden] {
  display: none;
}

.select-option {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

.select-option:hover,
.select-option:focus-visible {
  outline: 0;
  background: rgba(8, 125, 117, 0.08);
}

.select-option.selected {
  background: var(--ink);
  color: white;
}

.option-check {
  opacity: 0;
  color: var(--mint);
}

.select-option.selected .option-check {
  opacity: 1;
}

.arrival-card {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 26px;
  background: rgba(251, 248, 239, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: float-card 7s ease-in-out 1.1s infinite;
}

.arrival-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(18, 61, 59, 0.62);
}

.progress-number {
  font-size: 12px;
  font-weight: 700;
}

.progress-track {
  height: 5px;
  margin: 11px 0 22px;
  overflow: hidden;
  background: rgba(18, 61, 59, 0.1);
  border-radius: 99px;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transition: width 450ms ease;
  animation: progress-glow 4s ease-in-out infinite;
}

.arrival-card h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.arrival-list {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.arrival-list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  border-radius: 8px;
}

.arrival-list button:hover {
  background: rgba(8, 125, 117, 0.06);
}

.arrival-list button span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(18, 61, 59, 0.35);
  border-radius: 50%;
}

.arrival-list .done button {
  color: rgba(18, 61, 59, 0.58);
  text-decoration: line-through;
}

.arrival-list .done button span {
  background: var(--teal);
  border-color: var(--teal);
}

.arrival-list .done button span::after {
  content: "✓";
  color: white;
  font-size: 11px;
  text-decoration: none;
}

.pulse,
.offer-section,
.plural-section,
.regions-section,
.wage-section,
.mobility-section,
.mercosur-section,
.signals-section,
.work-section,
.resolver-section,
.guide-section,
.phrase-section,
.contact-section,
.source-note {
  padding-left: clamp(28px, 7vw, 116px);
  padding-right: clamp(28px, 7vw, 116px);
}

.hero {
  order: 1;
}

.offer-section {
  order: 2;
}

.pulse {
  order: 3;
}

.guide-section {
  order: 4;
}

.work-section {
  order: 5;
}

.resolver-section {
  order: 6;
}

.mercosur-section {
  order: 7;
}

.phrase-section {
  order: 8;
}

.plural-section {
  order: 9;
}

.regions-section {
  order: 10;
}

.wage-section {
  order: 11;
}

.mobility-section {
  order: 12;
}

.signals-section {
  order: 13;
}

.source-note {
  order: 14;
}

.contact-section {
  order: 15;
}

.offer-section {
  padding-top: 84px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 185, 95, 0.14), transparent 17rem),
    var(--paper);
}

.offer-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

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

.offer-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 0.98;
}

.offer-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.68);
  line-height: 1.65;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-grid article {
  padding: 28px 0 8px;
  border-top: 1px solid rgba(18, 61, 59, 0.16);
}

.offer-grid span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 24px;
}

.offer-grid h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-grid p {
  max-width: 330px;
  margin: 0;
  color: rgba(18, 61, 59, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.plural-section {
  padding-top: 112px;
  padding-bottom: 126px;
  background:
    radial-gradient(circle at 86% 8%, rgba(232, 185, 95, 0.16), transparent 18rem),
    var(--paper);
}

.plural-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.plural-heading .eyebrow {
  grid-column: 1 / -1;
}

.plural-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.96;
}

.plural-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.76);
  line-height: 1.65;
}

.plural-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.plural-stats article {
  padding: 28px 0;
  background: transparent;
  border-top: 1px solid rgba(18, 61, 59, 0.14);
  border-radius: 0;
}

.plural-stats span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.plural-stats p {
  margin: 0;
  color: rgba(18, 61, 59, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.plural-board {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 28px;
}

.rank-card {
  min-height: 390px;
  padding: 34px;
  background: rgba(251, 248, 239, 0.72);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 28px;
  box-shadow: none;
}

.heritage-rank {
  color: white;
  background:
    radial-gradient(circle at 90% 12%, rgba(232, 185, 95, 0.2), transparent 10rem),
    var(--ink-deep);
}

.migration-rank {
  background: #f4eadb;
}

.rank-card h3 {
  margin: 10px 0 20px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(18, 61, 59, 0.12);
}

.rank-list div::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(var(--value) * 1%);
  height: 3px;
  background: var(--teal-bright);
  border-radius: 999px;
}

.rank-list span,
.heritage-list span {
  font-weight: 700;
}

.rank-list strong,
.heritage-list strong {
  font-family: var(--serif);
  font-size: 24px;
}

.rank-note,
.plural-caveat {
  margin: 18px 0 0;
  color: rgba(18, 61, 59, 0.62);
  font-size: 11px;
  line-height: 1.55;
}

.heritage-rank .mini-label,
.heritage-rank .rank-note,
.heritage-rank p {
  color: rgba(255, 255, 255, 0.82);
}

.heritage-list {
  display: grid;
  gap: 15px;
}

.heritage-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.heritage-list p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.migration-rank > p:not(.mini-label) {
  color: rgba(18, 61, 59, 0.72);
  font-size: 13px;
  line-height: 1.62;
}

.flow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.flow-chips span {
  padding: 8px 10px;
  background: rgba(8, 125, 117, 0.1);
  border: 1px solid rgba(8, 125, 117, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.signals-section {
  padding-top: 112px;
  padding-bottom: 126px;
  background: #f4eadb;
}

.signals-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.signals-heading .eyebrow {
  grid-column: 1 / -1;
}

.signals-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
}

.signals-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.68);
  line-height: 1.65;
}

.signal-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.signal-card {
  padding: 34px;
  background: rgba(251, 248, 239, 0.72);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 28px;
  box-shadow: none;
}

.signal-card.x-card {
  color: white;
  background: var(--ink-deep);
}

.signal-card.x-card .mini-label {
  color: rgba(255, 255, 255, 0.82);
}

.signal-card h3 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.signal-card p:not(.mini-label) {
  margin-bottom: 18px;
  color: rgba(18, 61, 59, 0.68);
  font-size: 13px;
  line-height: 1.62;
}

.signal-card.x-card p:not(.mini-label) {
  color: rgba(255, 255, 255, 0.88);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-cloud span {
  padding: 8px 10px;
  background: rgba(8, 125, 117, 0.1);
  border: 1px solid rgba(8, 125, 117, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.x-card .keyword-cloud span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.work-section {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 126px;
  background:
    linear-gradient(180deg, rgba(251, 248, 239, 0) 0%, rgba(237, 241, 232, 0.78) 100%),
    var(--paper);
}

.work-section::before {
  content: "";
  position: absolute;
  width: min(760px, 68vw);
  height: 300px;
  right: -110px;
  top: 116px;
  pointer-events: none;
  opacity: 0.52;
  background:
    radial-gradient(circle at 18% 52%, rgba(8, 125, 117, 0.36) 0 17px, transparent 18px),
    radial-gradient(circle at 52% 34%, rgba(112, 190, 177, 0.34) 0 22px, transparent 23px),
    radial-gradient(circle at 78% 54%, rgba(229, 120, 94, 0.34) 0 19px, transparent 20px),
    radial-gradient(circle at 64% 18%, rgba(232, 185, 95, 0.32), transparent 7rem),
    radial-gradient(circle at 22% 78%, rgba(168, 217, 199, 0.3), transparent 8rem);
  filter: blur(0.1px);
  transform: rotate(-5deg);
}

.work-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 210px;
  right: 8%;
  top: 238px;
  pointer-events: none;
  opacity: 0.36;
  border-top: 3px dashed rgba(8, 125, 117, 0.42);
  border-radius: 50%;
  transform: rotate(-8deg);
  animation: route-drift 18s ease-in-out infinite alternate;
}

.work-section > * {
  position: relative;
  z-index: 1;
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.work-heading .eyebrow {
  grid-column: 1 / -1;
}

.work-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.work-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.68);
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  background: rgba(251, 248, 239, 0.72);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 30px;
  box-shadow: none;
}

.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.work-card > * {
  position: relative;
  z-index: 1;
}

.nomad-card {
  background:
    radial-gradient(circle at 85% 12%, rgba(232, 185, 95, 0.22), transparent 9rem),
    var(--paper);
}

.nomad-card::before {
  width: 180px;
  height: 130px;
  right: -42px;
  top: 22px;
  opacity: 0.42;
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(8, 125, 117, 0.28) 45% 52%, transparent 53%),
    linear-gradient(32deg, rgba(232, 185, 95, 0.55) 0 48%, transparent 49%);
  clip-path: polygon(0 44%, 100% 0, 62% 90%, 44% 58%);
  transform: rotate(-8deg);
}

.nomad-card::after {
  width: 210px;
  height: 120px;
  left: -54px;
  bottom: 58px;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 20% 80%, var(--teal) 0 24%, transparent 25%),
    radial-gradient(ellipse at 50% 68%, var(--teal) 0 22%, transparent 23%),
    radial-gradient(ellipse at 80% 62%, var(--teal) 0 21%, transparent 22%);
  transform: rotate(-18deg);
}

.employee-card {
  color: white;
  background:
    radial-gradient(circle at 88% 16%, rgba(19, 167, 155, 0.2), transparent 10rem),
    var(--ink-deep);
}

.employee-card::before {
  width: 150px;
  height: 190px;
  right: -28px;
  bottom: 34px;
  opacity: 0.18;
  background:
    linear-gradient(rgba(168, 217, 199, 0.9) 0 0) 32px 34px / 76px 9px no-repeat,
    linear-gradient(rgba(168, 217, 199, 0.8) 0 0) 32px 58px / 96px 9px no-repeat,
    linear-gradient(rgba(168, 217, 199, 0.7) 0 0) 32px 82px / 58px 9px no-repeat,
    rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  transform: rotate(7deg);
}

.coast-card {
  background:
    linear-gradient(145deg, rgba(168, 217, 199, 0.45), rgba(251, 248, 239, 0.92)),
    var(--paper);
}

.coast-card::before {
  width: 220px;
  height: 140px;
  right: -68px;
  top: 34px;
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 10% 100%, var(--teal) 0 24%, transparent 25%),
    radial-gradient(ellipse at 38% 92%, var(--teal) 0 22%, transparent 23%),
    radial-gradient(ellipse at 66% 84%, var(--teal) 0 20%, transparent 21%),
    radial-gradient(ellipse at 92% 76%, var(--teal) 0 18%, transparent 19%);
  transform: rotate(16deg);
}

.coast-card::after {
  width: 150px;
  height: 150px;
  right: 26px;
  bottom: 26px;
  opacity: 0.24;
  border: 18px solid var(--sun);
  border-radius: 50%;
}

.work-card h3 {
  margin: 42px 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.work-card p:not(.mini-label),
.work-card li {
  color: rgba(18, 61, 59, 0.68);
  font-size: 13px;
  line-height: 1.58;
}

.work-card a {
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 4px;
}

.employee-card .mini-label,
.employee-card h3,
.employee-card p:not(.mini-label),
.employee-card li {
  color: rgba(255, 255, 255, 0.9);
}

.employee-card a {
  color: var(--mint);
}

.work-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: auto 0 0;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.work-tags span {
  padding: 8px 10px;
  background: rgba(8, 125, 117, 0.1);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.resolver-section {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 132px;
  background:
    radial-gradient(circle at 8% 14%, rgba(232, 185, 95, 0.14), transparent 16rem),
    #edf1e8;
}

.resolver-section::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 190px;
  left: max(24px, 7vw);
  bottom: 58px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(8deg, rgba(251, 248, 239, 0.9), rgba(251, 248, 239, 0.6)) 10px 24px / 150px 108px no-repeat,
    linear-gradient(-7deg, rgba(244, 234, 219, 0.95), rgba(251, 248, 239, 0.68)) 44px 52px / 154px 112px no-repeat,
    radial-gradient(circle at 64% 48%, rgba(8, 125, 117, 0.44) 0 18px, transparent 19px),
    radial-gradient(circle at 70% 54%, transparent 0 25px, rgba(8, 125, 117, 0.34) 26px 28px, transparent 29px);
  border-radius: 28px;
  transform: rotate(-4deg);
}

.resolver-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.resolver-heading .eyebrow {
  grid-column: 1 / -1;
}

.resolver-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.resolver-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.76);
  line-height: 1.65;
}

.resolver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resolver-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: rgba(251, 248, 239, 0.7);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 30px;
  box-shadow: none;
}

.resolver-card.primary-resolver {
  background:
    radial-gradient(circle at 92% 10%, rgba(19, 167, 155, 0.14), transparent 8rem),
    var(--paper);
}

.resolver-card.dark-resolver {
  color: white;
  background: var(--ink-deep);
}

.resolver-card h3 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.resolver-card p:not(.mini-label) {
  margin: 0 0 18px;
  color: rgba(18, 61, 59, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.resolver-card .source-link {
  width: fit-content;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.resolver-card .source-link span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 180ms ease;
}

.resolver-card .source-link:hover span {
  transform: translateX(3px);
}

.dark-resolver .mini-label,
.dark-resolver p:not(.mini-label) {
  color: rgba(255, 255, 255, 0.9);
}

.dark-resolver .source-link {
  color: var(--mint);
}

.page-pill {
  width: fit-content;
  margin-top: auto;
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(8, 125, 117, 0.09);
  border: 1px solid rgba(8, 125, 117, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.dark-resolver .page-pill {
  color: var(--mint);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-section {
  padding-top: 104px;
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 167, 155, 0.12), transparent 18rem),
    var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  padding: clamp(34px, 6vw, 74px);
  background: rgba(237, 241, 232, 0.64);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 36px;
  box-shadow: none;
}

.contact-card h2 {
  max-width: 720px;
  margin: 10px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
}

.contact-card p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(18, 61, 59, 0.68);
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-button {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  color: var(--ink-deep);
  background: rgba(251, 248, 239, 0.72);
  border: 1px solid rgba(18, 61, 59, 0.13);
  border-radius: 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-button::after {
  content: "→";
  color: var(--teal);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.primary-contact {
  color: white;
  background: var(--ink-deep);
}

.primary-contact::after {
  color: var(--mint);
}

.regions-section {
  padding-top: 112px;
  padding-bottom: 126px;
  background: var(--paper);
}

.regions-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.regions-heading h2,
.mercosur-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
}

.regions-heading > p {
  max-width: 530px;
  margin: 0;
  color: rgba(18, 61, 59, 0.67);
  line-height: 1.65;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

.region-card {
  min-height: 270px;
  position: relative;
  grid-column: span 4;
  padding: 34px;
  overflow: hidden;
  background: rgba(237, 241, 232, 0.66);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 30px;
}

.region-card:nth-child(4),
.region-card:nth-child(5) {
  grid-column: span 6;
}

.region-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -95px;
  border: 24px solid rgba(8, 125, 117, 0.08);
  border-radius: 50%;
}

.region-card.south,
.region-card.center {
  background: #f4eadb;
}

.region-card.north {
  color: white;
  background: var(--teal);
}

.region-card.north .mini-label {
  color: rgba(255, 255, 255, 0.9);
}

.region-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(8, 125, 117, 0.2);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.region-card.north .region-index {
  color: rgba(255, 255, 255, 0.2);
}

.region-card h3 {
  max-width: 270px;
  margin: 38px 0 13px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.region-card p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(18, 61, 59, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.region-card.north h3,
.region-card.north p:last-child {
  color: rgba(255, 255, 255, 0.94);
}

.context-caveat {
  margin: 20px 0 0;
  color: rgba(18, 61, 59, 0.58);
  font-size: 11px;
}

.wage-section {
  padding-top: 112px;
  padding-bottom: 126px;
  background:
    radial-gradient(circle at 14% 18%, rgba(229, 120, 94, 0.12), transparent 20rem),
    radial-gradient(circle at 88% 62%, rgba(232, 185, 95, 0.18), transparent 22rem),
    #f4eadb;
}

.wage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.wage-heading .eyebrow {
  grid-column: 1 / -1;
}

.wage-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.wage-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.7);
  line-height: 1.65;
}

.wage-board {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(220px, 0.75fr));
  gap: 18px;
  margin-bottom: 24px;
}

.wage-hero-card,
.wage-metric,
.wage-visual,
.wage-card {
  border: 1px solid rgba(18, 61, 59, 0.1);
  border-radius: 30px;
}

.wage-hero-card {
  min-height: 240px;
  padding: 34px;
  color: white;
  background:
    radial-gradient(circle at 86% 16%, rgba(168, 217, 199, 0.2), transparent 10rem),
    var(--ink-deep);
}

.wage-hero-card .mini-label {
  color: rgba(255, 255, 255, 0.78);
}

.wage-hero-card strong {
  display: block;
  margin: 34px 0 8px;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.wage-hero-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.wage-metric {
  min-height: 240px;
  padding: 30px;
  background: rgba(251, 248, 239, 0.72);
}

.metric-value {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.wage-metric p,
.wage-card p {
  margin: 0;
  color: rgba(18, 61, 59, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.wage-visual {
  padding: 28px;
  margin-bottom: 28px;
  background: rgba(251, 248, 239, 0.66);
}

.wage-bar-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.wage-bar-label {
  display: grid;
  gap: 4px;
}

.wage-bar-label strong {
  font-size: 13px;
}

.wage-bar-label span {
  color: rgba(18, 61, 59, 0.62);
  font-size: 12px;
}

.wage-bar-track {
  height: 18px;
  overflow: hidden;
  background: rgba(18, 61, 59, 0.08);
  border-radius: 999px;
}

.wage-bar-track span {
  width: var(--bar-width);
  height: 100%;
  display: block;
  background: var(--teal);
  border-radius: inherit;
}

.wage-bar-track.necessary span {
  background: linear-gradient(90deg, var(--sun), var(--coral));
}

.wage-visual p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(18, 61, 59, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.wage-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.wage-card {
  min-height: 280px;
  padding: 32px;
  background: rgba(251, 248, 239, 0.72);
}

.wage-card h3 {
  margin: 42px 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.dark-wage-card {
  color: white;
  background:
    radial-gradient(circle at 80% 16%, rgba(112, 190, 177, 0.18), transparent 10rem),
    var(--teal);
}

.dark-wage-card .mini-label,
.dark-wage-card h3,
.dark-wage-card p {
  color: rgba(255, 255, 255, 0.9);
}

.mobility-section {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 126px;
  background:
    radial-gradient(circle at 80% 18%, rgba(112, 190, 177, 0.16), transparent 18rem),
    #edf1e8;
}

.mobility-section::before {
  content: "";
  position: absolute;
  width: 62vw;
  min-width: 430px;
  height: 220px;
  left: -12vw;
  bottom: 92px;
  pointer-events: none;
  opacity: 0.32;
  border-top: 3px dashed rgba(8, 125, 117, 0.42);
  border-radius: 50%;
  transform: rotate(8deg);
}

.mobility-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 170px;
  left: 7%;
  bottom: 118px;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 16% 54%, rgba(8, 125, 117, 0.42) 0 15px, transparent 16px),
    radial-gradient(circle at 54% 32%, rgba(232, 185, 95, 0.46) 0 20px, transparent 21px),
    radial-gradient(circle at 84% 58%, rgba(229, 120, 94, 0.4) 0 17px, transparent 18px);
}

.mobility-section > * {
  position: relative;
  z-index: 1;
}

.mobility-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.mobility-heading .eyebrow {
  grid-column: 1 / -1;
}

.mobility-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.mobility-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(18, 61, 59, 0.7);
  line-height: 1.65;
}

.mobility-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 28px;
}

.mobility-card {
  min-height: 330px;
  padding: 34px;
  background: rgba(251, 248, 239, 0.74);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 30px;
}

.flight-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(232, 185, 95, 0.24), transparent 9rem),
    rgba(251, 248, 239, 0.78);
}

.rail-card {
  background: rgba(244, 234, 219, 0.8);
}

.city-card {
  color: white;
  background:
    radial-gradient(circle at 84% 12%, rgba(19, 167, 155, 0.22), transparent 10rem),
    var(--ink-deep);
}

.city-card .mini-label,
.city-card h3,
.city-card p {
  color: rgba(255, 255, 255, 0.9);
}

.mobility-card h3 {
  margin: 42px 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.mobility-card p:not(.mini-label) {
  color: rgba(18, 61, 59, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.mobility-card.city-card p:not(.mini-label) {
  color: rgba(255, 255, 255, 0.82);
}

.mobility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mobility-tags span {
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(8, 125, 117, 0.1);
  border: 1px solid rgba(8, 125, 117, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.mercosur-section {
  min-height: 590px;
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 9vw, 120px);
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.mercosur-orbit {
  position: absolute;
  width: 460px;
  height: 460px;
  left: -210px;
  top: 60px;
  border: 1px dashed rgba(168, 217, 199, 0.2);
  border-radius: 50%;
}

.mercosur-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--sun);
  border-radius: 50%;
}

.mercosur-orbit span:nth-child(1) { top: 40px; right: 72px; }
.mercosur-orbit span:nth-child(2) { top: 150px; right: 8px; background: var(--coral); }
.mercosur-orbit span:nth-child(3) { bottom: 85px; right: 32px; background: var(--teal-bright); }
.mercosur-orbit span:nth-child(4) { bottom: 12px; right: 145px; background: var(--mint); }

.mercosur-copy,
.mercosur-steps {
  position: relative;
  z-index: 1;
}

.mercosur-copy[hidden],
.mercosur-steps[hidden] {
  display: none;
}

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

.mercosur-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.language-tabs {
  width: fit-content;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.language-tab {
  padding: 8px 13px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.language-tab.active {
  background: var(--mint);
  color: var(--ink-deep);
}

.mercosur-steps {
  display: grid;
  gap: 5px;
}

.mercosur-steps article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mercosur-steps article > span {
  color: var(--mint);
  font-family: var(--serif);
  font-size: 21px;
}

.mercosur-steps h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 21px;
}

.mercosur-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.55;
}

.mercosur-link {
  width: fit-content;
  margin-top: 16px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.pulse {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 0.65fr 1.75fr;
  gap: 60px;
  align-items: start;
}

.pulse h2,
.section-heading h2,
.phrase-intro h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.pulse-grid article {
  display: flex;
  gap: 14px;
  padding: 24px 24px 8px;
  border-right: 1px solid var(--line);
}

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

.pulse-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 125, 117, 0.25);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 600;
}

.pulse-grid strong {
  display: block;
  margin: 6px 0 6px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
}

.pulse-grid p:last-child {
  margin: 0;
  color: rgba(18, 61, 59, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.guide-section {
  padding-top: 120px;
  padding-bottom: 134px;
  background: #edf1e8;
  position: relative;
}

.guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 3%;
  width: 320px;
  height: 160px;
  opacity: 0.28;
  background:
    radial-gradient(circle at 50% 100%, transparent 30%, var(--mint) 31% 42%, transparent 43%),
    radial-gradient(circle at 50% 100%, transparent 48%, var(--sea) 49% 58%, transparent 59%);
}

.guide-section::after,
.resolver-section::after {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  right: -14vw;
  bottom: 8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 35% 35%, rgba(19, 167, 155, 0.42), transparent 28%),
    radial-gradient(circle at 66% 52%, rgba(232, 185, 95, 0.36), transparent 28%),
    radial-gradient(circle at 48% 72%, rgba(229, 120, 94, 0.28), transparent 30%);
  filter: blur(36px);
  animation: mesh-breathe 14s ease-in-out infinite;
}

.guide-section > *,
.resolver-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.search-field {
  width: min(310px, 100%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(18, 61, 59, 0.13);
  border-radius: 12px;
}

.search-field span {
  color: var(--teal);
  font-size: 22px;
}

.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-field:focus-within {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin: 36px 0 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(18, 61, 59, 0.18);
  border-radius: 99px;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guide-card {
  min-height: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  background: rgba(251, 248, 239, 0.74);
  border: 1px solid rgba(18, 61, 59, 0.08);
  border-radius: 30px;
  transition: transform 250ms ease, box-shadow 250ms ease, opacity 200ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.guide-card.featured {
  min-height: 415px;
  grid-column: span 2;
  grid-row: span 1;
  justify-content: end;
  color: white;
  background: var(--teal);
}

.guide-card.path-featured {
  border-color: rgba(19, 167, 155, 0.38);
  box-shadow: 0 0 0 1px rgba(19, 167, 155, 0.18);
}

.guide-card.path-featured::after {
  content: "Recommended for your situation";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--ink-deep);
  background: rgba(168, 217, 199, 0.92);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-card.featured.path-featured::after,
.guide-card.dark-card.path-featured::after,
.guide-card.security-card.path-featured::after {
  color: var(--ink-deep);
  background: var(--mint);
}

.guide-card.dark-card {
  color: white;
  background: var(--ink-deep);
}

.guide-card.security-card {
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(229, 120, 94, 0.42), transparent 11rem),
    linear-gradient(145deg, #103f3d, #082d2d);
}

.guide-card.visa-card {
  background:
    radial-gradient(circle at 88% 16%, rgba(232, 185, 95, 0.2), transparent 10rem),
    linear-gradient(145deg, rgba(251, 248, 239, 0.9), rgba(244, 234, 219, 0.74));
}

.guide-card.visa-card.path-featured {
  padding-top: 62px;
}

.visa-card .card-number {
  margin-top: 24px;
  color: rgba(229, 120, 94, 0.2);
  font-size: 48px;
}

.guide-card.hidden {
  display: none;
}

.card-visual {
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.transport-visual {
  background:
    radial-gradient(circle at 86% 18%, rgba(232, 185, 95, 0.95) 0 38px, transparent 39px),
    linear-gradient(130deg, rgba(168, 217, 199, 0.35), transparent 48%),
    var(--teal);
}

.road {
  position: absolute;
  border: 2px dashed rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  animation: route-drift 14s linear infinite;
}

.road-one {
  --route-rotation: -8deg;
  width: 620px;
  height: 260px;
  left: -100px;
  top: -48px;
  transform: rotate(-8deg);
}

.road-two {
  --route-rotation: 22deg;
  width: 480px;
  height: 230px;
  right: -150px;
  top: 90px;
  transform: rotate(22deg);
  animation-duration: 18s;
  animation-direction: reverse;
}

.map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 76px;
  left: 28%;
  background: var(--coral);
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 5px 20px rgba(8, 45, 45, 0.2);
}

.card-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.card-kicker {
  margin-bottom: 11px;
  color: var(--teal);
  font-size: 10px;
}

.featured .card-kicker,
.dark-card .card-kicker,
.security-card .card-kicker {
  color: var(--mint);
}

.guide-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.guide-card p:not(.card-kicker) {
  margin-bottom: 18px;
  color: rgba(18, 61, 59, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.featured p:not(.card-kicker),
.dark-card p:not(.card-kicker),
.security-card p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.9);
}

.card-number {
  align-self: end;
  color: rgba(8, 125, 117, 0.16);
  font-family: var(--serif);
  font-size: 74px;
  line-height: 0.85;
}

.dark-card .card-number {
  color: rgba(168, 217, 199, 0.23);
}

.security-card .card-number {
  color: rgba(232, 185, 95, 0.34);
}

.text-link {
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.no-results {
  padding: 28px;
  text-align: center;
  color: rgba(18, 61, 59, 0.6);
}

.phrase-section {
  min-height: 570px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 80% 50%, rgba(232, 185, 95, 0.18), transparent 22rem),
    var(--cream);
}

.phrase-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 28px;
  color: rgba(18, 61, 59, 0.66);
  line-height: 1.65;
}

.secondary-button,
.primary-button {
  padding: 12px 17px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.secondary-button {
  border: 1px solid rgba(18, 61, 59, 0.3);
  background: transparent;
}

.secondary-button:hover {
  background: rgba(18, 61, 59, 0.06);
}

.phrase-card {
  position: relative;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
  border-radius: 220px 220px 24px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.phrase-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -95px;
  border: 30px solid rgba(19, 167, 155, 0.16);
  border-radius: 50%;
}

.sound-wave {
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 22px;
}

.sound-wave span {
  width: 3px;
  height: 10px;
  background: var(--mint);
  border-radius: 99px;
}

.sound-wave span:nth-child(2),
.sound-wave span:nth-child(4) {
  height: 22px;
}

.sound-wave span:nth-child(3) {
  height: 32px;
}

.phrase-context {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.phrase-portuguese {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: opacity 140ms ease, transform 140ms ease;
}

.phrase-translation {
  color: var(--mint);
  transition: opacity 140ms ease, transform 140ms ease;
}

.phrase-card.changing .phrase-portuguese,
.phrase-card.changing .phrase-translation {
  opacity: 0;
  transform: translateY(6px);
}

.play-button {
  margin-top: 22px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 12px;
  cursor: pointer;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.play-button.playing + * {
  animation: none;
}

.source-note {
  padding-top: 34px;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgba(168, 217, 199, 0.08), rgba(168, 217, 199, 0));
}

.source-panel {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(18, 61, 59, 0.14);
  border-radius: 24px;
  background: rgba(251, 248, 239, 0.74);
  box-shadow: 0 18px 55px rgba(19, 58, 53, 0.08);
  overflow: hidden;
}

.source-panel summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.source-panel summary::-webkit-details-marker {
  display: none;
}

.source-panel summary::after {
  content: "+";
  grid-column: 3;
  color: var(--teal);
  font-size: 22px;
  font-weight: 600;
}

.source-panel[open] summary::after {
  content: "−";
}

.source-panel summary strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.source-panel summary small {
  color: rgba(18, 61, 59, 0.64);
  font-size: 12px;
}

.source-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 600;
}

.source-body {
  padding: 0 22px 22px 72px;
}

.source-note p {
  max-width: 760px;
  margin: 0;
  color: rgba(18, 61, 59, 0.78);
  font-size: 12px;
  line-height: 1.6;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.source-links a {
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(8, 125, 117, 0.08);
  border: 1px solid rgba(8, 125, 117, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 40px clamp(24px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink-deep);
  font-size: 11px;
}

.footer-brand {
  color: white;
}

footer p {
  margin: 0;
}

.mobile-nav {
  display: none;
}

.scroll-arrows {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: 34px;
  z-index: 60;
  display: grid;
  gap: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.scroll-arrows.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 34% 24%, rgba(168, 217, 199, 0.2), transparent 42%),
    rgba(8, 45, 45, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(8, 45, 45, 0.22);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.scroll-arrow span {
  font-size: 22px;
  line-height: 1;
}

.scroll-arrow:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 34% 24%, rgba(168, 217, 199, 0.28), transparent 42%),
    var(--teal);
}

.scroll-arrow:disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.guide-dialog {
  width: min(720px, calc(100% - 32px));
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(8, 45, 45, 0.28);
}

.guide-dialog::backdrop {
  background: rgba(8, 45, 45, 0.58);
  backdrop-filter: blur(5px);
}

.guide-dialog h2 {
  margin: 10px 0 18px;
  font-size: 42px;
  line-height: 1;
}

.guide-dialog li,
.guide-dialog p {
  color: rgba(18, 61, 59, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.guide-dialog ul {
  padding-left: 20px;
}

.cpf-example {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) 1fr;
  gap: 22px;
  align-items: center;
  margin: 24px 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cpf-card {
  position: relative;
  min-height: 172px;
  padding: 22px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 50%, rgba(255, 255, 255, 0.14), transparent 0 38%, transparent 39%),
    radial-gradient(circle at 82% 48%, transparent 0 26%, rgba(255, 255, 255, 0.18) 27% 29%, transparent 30%),
    linear-gradient(135deg, #0b62b2, #034b91 56%, #02376f);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(3, 55, 111, 0.22);
}

.cpf-card::before {
  content: "";
  position: absolute;
  width: 126px;
  height: 126px;
  right: 22px;
  top: 24px;
  border: 14px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cpf-card::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: 38px;
  top: 38px;
  background:
    linear-gradient(36deg, transparent 47%, rgba(255, 255, 255, 0.1) 48% 52%, transparent 53%),
    linear-gradient(108deg, transparent 47%, rgba(255, 255, 255, 0.1) 48% 52%, transparent 53%),
    linear-gradient(180deg, transparent 47%, rgba(255, 255, 255, 0.1) 48% 52%, transparent 53%);
  border-radius: 50%;
}

.cpf-agency {
  display: block;
  max-width: 120px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.cpf-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 2px;
  color: white;
  font-family: var(--sans);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.cpf-name,
.cpf-number,
.cpf-watermark {
  position: relative;
  z-index: 1;
  display: block;
}

.cpf-name {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.cpf-number {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cpf-watermark {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.cpf-example h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.cpf-example ul {
  margin: 0;
}

.dialog-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dialog-sources a {
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(8, 125, 117, 0.08);
  border: 1px solid rgba(8, 125, 117, 0.13);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 23px;
  cursor: pointer;
}

.primary-button {
  border: 0;
  background: var(--teal);
  color: white;
}

.dialog-done {
  width: 100%;
  margin-top: 10px;
}

.guide-card,
.work-card,
.resolver-card,
.region-card,
.mobility-card,
.wage-card,
.wage-hero-card,
.wage-metric,
.wage-visual {
  border-color: rgba(18, 61, 59, 0.07);
}

.guide-card:nth-child(odd),
.work-card:nth-child(odd),
.resolver-card:nth-child(odd),
.region-card:nth-child(odd),
.mobility-card:nth-child(odd),
.wage-card:nth-child(odd) {
  border-radius: 42px 28px 38px 26px;
}

.guide-card:nth-child(even),
.work-card:nth-child(even),
.resolver-card:nth-child(even),
.region-card:nth-child(even),
.mobility-card:nth-child(even),
.wage-card:nth-child(even) {
  border-radius: 28px 44px 26px 38px;
}

.guide-card.featured,
.guide-card.visa-card,
.primary-resolver,
.wage-hero-card,
.wage-visual {
  border-radius: 46px 34px 44px 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.plural-stats article,
.rank-card,
.pulse-grid article,
.region-card,
.wage-hero-card,
.wage-metric,
.wage-visual,
.wage-card,
.mobility-card,
.mercosur-steps article,
.signal-card,
.work-card,
.resolver-card,
.guide-card,
.contact-button,
.source-links a {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 760ms ease var(--stagger, 0ms),
    transform 760ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--stagger, 0ms),
    background 220ms ease,
    border-color 220ms ease;
}

.visible .plural-stats article,
.visible .rank-card,
.visible .pulse-grid article,
.visible .region-card,
.visible .wage-hero-card,
.visible .wage-metric,
.visible .wage-visual,
.visible .wage-card,
.visible .mobility-card,
.visible .mercosur-steps article,
.visible .signal-card,
.visible .work-card,
.visible .resolver-card,
.visible .guide-card,
.visible .contact-button,
.visible .source-links a {
  transform: translateY(0);
  opacity: 1;
}

.rank-card:hover,
.signal-card:hover,
.work-card:hover,
.resolver-card:hover,
.guide-card:hover,
.wage-card:hover,
.mobility-card:hover,
.region-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 125, 117, 0.18);
}

@keyframes settle {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes progress-glow {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.45) brightness(1.08);
  }
}

@keyframes mesh-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-24px, 18px, 0) scale(1.08);
  }
}

@keyframes route-drift {
  from {
    transform: rotate(var(--route-rotation, 0deg)) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(var(--route-rotation, 0deg)) translate3d(8px, -4px, 0);
  }
}

@keyframes speak {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1.3);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 760px;
    align-items: end;
  }

  .hero-copy,
  .arrival-card,
  .pulse,
  .guide-card,
  .phrase-card {
    overflow-wrap: anywhere;
  }

  .hero-copy {
    padding-top: 60px;
  }

  .arrival-card {
    width: min(470px, 100%);
  }

  .pulse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .regions-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wage-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wage-board,
  .wage-culture-grid {
    grid-template-columns: 1fr;
  }

  .mobility-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mobility-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    grid-column: span 6;
  }

  .region-card:nth-child(5) {
    grid-column: span 12;
  }

  .mercosur-section {
    grid-template-columns: 1fr 1.1fr;
    gap: 45px;
  }

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

  .guide-card.featured {
    grid-column: span 2;
  }

  .phrase-section {
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 70px;
  }

  .topbar {
    height: 68px;
    padding: 0 20px;
  }

  .hero {
    min-height: 790px;
    padding: 74px 20px 32px;
  }

  .hero-art {
    background-image:
      linear-gradient(180deg, rgba(245, 239, 223, 0.68) 0%, rgba(245, 239, 223, 0.34) 40%, rgba(245, 239, 223, 0.92) 72%),
      url("tropicanacailin_Editorial_hero_illustration_for_a_mobile_web__296bdcac-7938-4d0f-98d9-ad4459bd932f_0.png");
    background-position: 58% center;
  }

  .hero-copy {
    align-self: start;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.5vw, 58px);
    line-height: 0.98;
  }

  .hero h1 br {
    display: none;
  }

  .arrival-card {
    min-width: 0;
    max-width: 100%;
    padding: 22px;
  }

  .arrival-card h2 {
    font-size: 25px;
  }

    .pulse,
    .offer-section,
    .plural-section,
    .regions-section,
    .wage-section,
    .mobility-section,
    .mercosur-section,
    .signals-section,
    .work-section,
    .resolver-section,
    .guide-section,
    .contact-section,
  .phrase-section,
  .source-note {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pulse {
    padding-top: 45px;
    padding-bottom: 65px;
  }

  .offer-section {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .plural-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .plural-heading,
  .plural-stats,
  .plural-board {
    grid-template-columns: 1fr;
  }

  .rank-card {
    min-height: auto;
  }

  .regions-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .wage-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .wage-board {
    gap: 14px;
  }

  .wage-hero-card,
  .wage-metric,
  .wage-card,
  .wage-visual {
    min-height: auto;
    padding: 24px;
  }

  .wage-bar-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobility-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-card,
  .region-card:nth-child(4),
  .region-card:nth-child(5) {
    min-height: 245px;
    grid-column: span 1;
  }

  .mercosur-section {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .signals-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .signals-heading,
  .signal-board {
    grid-template-columns: 1fr;
  }

  .work-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .work-section::before,
  .work-section::after,
  .mobility-section::before,
  .mobility-section::after,
  .resolver-section::before {
    opacity: 0.14;
  }

  .work-card::before,
  .work-card::after {
    opacity: 0.12;
  }

  .work-heading,
  .work-grid,
  .resolver-heading,
  .resolver-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: auto;
  }

  .resolver-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .resolver-card {
    min-height: auto;
  }

  .mercosur-orbit {
    left: auto;
    right: -330px;
    top: -120px;
  }

  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .pulse-grid article {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .guide-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card.featured {
    min-height: 450px;
    grid-column: span 1;
  }

  .phrase-section {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .phrase-card {
    border-radius: 150px 150px 20px 20px;
  }

  .source-note {
    padding-top: 28px;
  }

  .source-panel summary {
    padding: 16px;
  }

  .source-body {
    padding: 0 16px 18px;
  }

  .cpf-example {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .source-links {
    flex-wrap: wrap;
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  footer p:last-child {
    grid-column: auto;
  }

  .mobile-nav {
    position: fixed;
    z-index: 50;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px;
    background: rgba(8, 45, 45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(8, 45, 45, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-nav a span {
    font-size: 20px;
    line-height: 1;
  }

  .mobile-nav a.active {
    color: white;
    background: rgba(255, 255, 255, 0.08);
  }

  .scroll-arrows {
    right: 18px;
    bottom: 88px;
    gap: 7px;
  }

  .scroll-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .plural-stats article,
  .rank-card,
  .pulse-grid article,
  .region-card,
  .wage-hero-card,
  .wage-metric,
  .wage-visual,
  .wage-card,
  .mobility-card,
  .mercosur-steps article,
  .signal-card,
  .work-card,
  .resolver-card,
  .guide-card,
  .contact-button,
  .source-links a {
    opacity: 1;
    transform: none;
  }
}
