@font-face {
  font-family: "Manrope LPM";
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
}

@font-face {
  font-family: "Funnel Display";
  src: url("assets/fonts/FunnelDisplay-Regular.otf") format("opentype");
  font-weight: 400;
}

:root {
  --navy-950: #0d1f2d;
  --navy-900: #14303E;
  --navy-800: #1d3549;
  --navy-700: #273F55;
  --ink: #273F55;
  --ink-soft: #4d6577;
  --orange: #DD7133;
  --orange-soft: #e8895a;
  --paper: #f6f3ef;
  --paper-warm: #fbfaf8;
  --line: rgba(39, 63, 85, 0.18);
  --line-dark: rgba(255, 255, 255, 0.2);
  --serif: "Funnel Display", Georgia, serif;
  --sans: "Manrope LPM", Arial, sans-serif;
  --pad-x: clamp(28px, 5.8vw, 120px);
  --header-h: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

p {
  color: rgba(9, 34, 58, 0.78);
}

.screen-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.dot,
h1 span,
h2 span {
  color: var(--orange);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 58px);
  min-height: var(--header-h);
  padding: 28px var(--pad-x);
  color: #fff;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 19, 31, 0.82), rgba(2, 19, 31, 0));
  opacity: 1;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.site-header.is-condensed {
  min-height: 88px;
}

.site-header.is-condensed::before {
  background: rgba(2, 19, 31, 0.84);
  backdrop-filter: blur(18px);
}

.site-header.on-light {
  color: var(--ink);
}

.site-header.on-light::before {
  background: linear-gradient(180deg, rgba(251, 250, 248, 0.94), rgba(251, 250, 248, 0.58), rgba(251, 250, 248, 0));
}

.site-header.on-light.is-condensed::before {
  background: rgba(251, 250, 248, 0.9);
  box-shadow: 0 14px 30px rgba(9, 34, 58, 0.06);
}

.brand {
  position: relative;
  display: block;
  width: clamp(260px, 20vw, 350px);
  height: 58px;
}

.brand img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.brand-dark,
.site-header.on-light .brand-light {
  opacity: 0;
}

.brand-light,
.site-header.on-light .brand-dark {
  opacity: 1;
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header nav a {
  position: relative;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 44px;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.is-active {
  color: var(--orange);
  opacity: 1;
}

.site-header nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 clamp(20px, 2vw, 34px);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-cta::after {
  content: "+";
  margin-left: 14px;
}

.nav-cta:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(239, 91, 25, 0.2);
}

.screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.screen-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1840px;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-h) + 54px) var(--pad-x) clamp(64px, 6vw, 116px);
}

.screen-dark {
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(17, 67, 96, 0.52), transparent 30%),
    radial-gradient(circle at 74% 42%, rgba(22, 75, 105, 0.42), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(16, 65, 93, 0.5), transparent 38%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, var(--navy-800));
}

.screen-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.85), transparent 28%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, var(--paper-warm), var(--paper) 58%, #eeeae5);
}

.screen-light::after,
.screen-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 78%);
}

.screen-light::after {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(9, 34, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 34, 58, 0.02) 1px, transparent 1px);
}

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

.hero-copy {
  width: min(820px, 54vw);
  padding-top: 42px;
}

.hero h1 {
  margin-bottom: 42px;
  color: #f7f3ef;
  font-size: clamp(58px, 5.5vw, 108px);
  text-shadow: 0 22px 38px rgba(0, 0, 0, 0.26);
}

.hero p {
  max-width: 760px;
  font-size: clamp(18px, 1.25vw, 24px);
  letter-spacing: 0.01em;
}

.rule {
  width: 82px;
  height: 2px;
  margin: 0 0 34px;
  background: var(--orange);
}

.hero-mark,
.dark-mark,
.soft-mark {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-mark {
  right: -12vw;
  top: 49%;
  z-index: 1;
  width: min(72vw, 1120px);
  max-width: none;
  opacity: 0.13;
  transform: translate3d(0, -50%, 0);
  filter: drop-shadow(0 0 48px rgba(72, 121, 149, 0.18));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.dark-mark {
  right: -15vw;
  top: 50%;
  z-index: 0;
  width: min(62vw, 940px);
  max-width: none;
  opacity: 0.09;
  transform: translateY(-50%);
}

.soft-mark {
  right: -12vw;
  top: 50%;
  z-index: 0;
  width: min(58vw, 900px);
  max-width: none;
  opacity: 0.035;
  transform: translateY(-50%);
}

.corner-mark {
  position: absolute;
  bottom: -18%;
  right: -10%;
  z-index: 0;
  width: min(38vw, 540px);
  max-width: none;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: 26px;
  height: 26px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateX(-50%) rotate(45deg);
  animation: cue-bob 1.8s ease-in-out infinite;
}

@keyframes cue-bob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 8px;
  }
}

.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  background: var(--orange);
}

.section-intro h2,
.section-topline h2,
.contact-panel h2 {
  margin-bottom: 36px;
  font-size: clamp(46px, 4.5vw, 92px);
  text-shadow: 0 20px 34px rgba(9, 34, 58, 0.08);
}

.section-intro p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(16px, 1vw, 20px);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  grid-template-rows: auto 1fr;
  gap: clamp(34px, 5vw, 86px);
  align-content: center;
}

.services .section-intro {
  grid-row: 1 / span 2;
  align-self: center;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  margin-top: clamp(30px, 5vh, 76px);
}

.service-stats article {
  min-height: 250px;
  padding: 20px clamp(26px, 3vw, 62px);
  text-align: center;
  border-left: 1px solid var(--line);
}

.service-stats article:first-child {
  border-left: 0;
}

.service-stats h3,
.practice-cards h3,
.publication-cards h3 {
  font-size: clamp(25px, 1.8vw, 34px);
}

.service-stats p {
  max-width: 260px;
  margin: 0 auto;
}

.practice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-self: end;
}

.practice-cards article,
.publication-cards article {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 2.4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.practice-cards article {
  padding-bottom: clamp(80px, 7vw, 100px);
}

.practice-cards article:hover,
.publication-cards article:hover,
.partner-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 91, 25, 0.58);
  box-shadow: 0 26px 54px rgba(9, 34, 58, 0.1);
}

.practice-cards a,
.publication-cards a,
.section-topline a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.practice-cards article > a {
  position: absolute;
  right: 32px;
  bottom: 26px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  color: var(--orange);
}

.service-stats .icon {
  margin-right: auto;
  margin-left: auto;
}

.firm-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(560px, 1.55fr);
  gap: clamp(34px, 4vw, 74px);
  align-items: center;
}

.firm-map .section-intro h2 {
  font-size: clamp(44px, 4.2vw, 84px);
}

.mini-proof {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
}

.mini-proof .icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  margin: 0;
}

.mini-proof p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.mini-proof strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.map-cluster {
  position: relative;
  width: 100%;
}

.map-cluster .brazil-map-wrap {
  width: 62%;
  max-width: none;
}

.brazil-map-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
  overflow: visible;
}

.brazil-map {
  width: 100%;
  height: auto;
  display: block;
}

.brazil-map--light {
  filter: opacity(0.3) sepia(0.15);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--orange);
  transform: translate(-50%, -50%) rotate(45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: #fdfcfa;
}

.pin-recife   { left: 96.5%; top: 34.2%; }
.pin-brasilia { left: 66.4%; top: 53.9%; }
.pin-sp       { left: 69.7%; top: 73.8%; }

/* Connector lines: leave each pin at an angle, elbow, then run
   horizontally into the label title. Coordinates are % of the cluster
   (pin x within the cluster = pin% × 62% map width). */
.map-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.map-links polyline {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1;
  stroke-dasharray: 5 5;
  vector-effect: non-scaling-stroke;
}

.location-list {
  position: absolute;
  inset: 0;
}

.location-list article {
  position: absolute;
  right: 0;
  width: 28.5%;
  transform: translateY(-0.75em);
}

.loc-recife   { top: 28.5%; }
.loc-brasilia { top: 49.5%; }
.loc-sp       { top: 79%; }

.location-list h3 {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: clamp(24px, 1.7vw, 32px);
}

.location-list p {
  max-width: 240px;
  font-size: clamp(15px, 0.95vw, 18px);
}

.partners-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(620px, 1.05fr);
  gap: clamp(56px, 6vw, 110px);
  align-items: center;
}

.partners .section-intro h2 {
  color: #f7f3ef;
  font-size: clamp(50px, 4.7vw, 96px);
}

.partners .section-intro p {
  max-width: 600px;
  font-size: clamp(18px, 1.2vw, 24px);
}

.partner-list {
  display: grid;
  gap: 24px;
}

.partner-list article {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(28px, 3vw, 56px);
  min-height: 300px;
  padding: clamp(24px, 2vw, 32px);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.portrait-placeholder {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #39464e, #1a2228);
  filter: grayscale(1);
}

.partner-list h3 {
  margin-bottom: 24px;
  color: #f7f3ef;
  font-size: clamp(34px, 2.7vw, 48px);
}

.partner-list p {
  max-width: 680px;
  margin-bottom: 28px;
}

.partner-list .rule {
  width: 58px;
  margin-bottom: 28px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags span {
  padding: 8px 16px;
  border: 1px solid var(--orange);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.publications-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-topline {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: flex-start;
  margin-bottom: clamp(44px, 7vh, 84px);
}

.section-topline h2 {
  max-width: 940px;
  margin-bottom: 0;
}

.section-topline > a {
  margin-top: 96px;
  white-space: nowrap;
}

.publication-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.publication-cards article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 44px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-meta span {
  color: rgba(9, 34, 58, 0.58);
  white-space: nowrap;
}

.publication-cards p:not(.card-meta) {
  margin-bottom: 44px;
}

.publication-cards a {
  margin-top: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(560px, 1fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
}

.contact-grid::before {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 8%;
  left: 48%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.38), transparent);
}

.contact-presence h2,
.contact-panel h2 {
  color: #f7f3ef;
  font-size: clamp(48px, 4.4vw, 88px);
}

.office-list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}

.office-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
}

.office-item:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.office-marker {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  transform: rotate(45deg);
}

.office-item h3 {
  flex: 1;
  margin: 0;
  color: #f7f3ef;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 400;
}

.office-state {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel {
  position: relative;
}

.contact-panel h2 {
  max-width: 620px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  max-width: 780px;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

input,
select,
textarea,
button {
  width: 100%;
  border-radius: 5px;
  font: inherit;
}

input,
select,
textarea {
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(2, 19, 31, 0.38);
  outline: 0;
}

textarea {
  grid-column: 1 / -1;
  min-height: 112px;
  padding-top: 18px;
  resize: vertical;
}

select {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.76);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

button {
  grid-column: 1 / -1;
  min-height: 68px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff6a12);
  font-family: var(--serif);
  font-size: clamp(24px, 1.8vw, 34px);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button::after {
  content: "+";
  margin-left: 16px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(239, 91, 25, 0.28);
}

.response-note {
  margin: 34px 0 0;
  padding-left: 56px;
  color: rgba(255, 255, 255, 0.78);
}

.reveal-up {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  :root {
    --header-h: 96px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    width: 260px;
  }

  .hero-copy {
    width: min(760px, 72vw);
  }

  .services-grid,
  .firm-grid,
  .partners-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services .section-intro {
    grid-row: auto;
  }

  .service-stats,
  .practice-cards,
  .publication-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-links {
    display: none;
  }

  .map-cluster .brazil-map-wrap {
    width: 100%;
    max-width: 520px;
  }

  .location-list {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 48px);
    margin-top: 38px;
  }

  .location-list article {
    position: static;
    width: auto;
    transform: none;
  }

  .contact-grid::before {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --pad-x: 22px;
    --header-h: 84px;
  }

  .site-header {
    min-height: var(--header-h);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    width: 210px;
    height: 44px;
  }

  .nav-cta {
    display: none;
  }

  .screen-inner {
    padding-top: calc(var(--header-h) + 44px);
    padding-bottom: 58px;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 52px;
  }

  .hero h1,
  .section-intro h2,
  .section-topline h2,
  .contact-panel h2,
  .contact-presence h2 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .hero-mark {
    right: -48vw;
    top: 62%;
    width: 142vw;
  }

  .soft-mark,
  .dark-mark {
    right: -54vw;
    width: 140vw;
  }

  .service-stats,
  .practice-cards,
  .publication-cards,
  .location-list,
  form {
    grid-template-columns: 1fr;
  }

  .service-stats article {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-stats article:first-child {
    border-top: 0;
  }

  .partner-list article {
    grid-template-columns: 1fr;
  }

  .section-topline {
    display: block;
  }

  .section-topline > a {
    display: inline-block;
    margin-top: 28px;
  }

  .brazil-map {
    max-width: 380px;
  }
}

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