:root {
  --brand-blue: #0a478f;
  --brand-blue-dark: #062f62;
  --ink: #111827;
  --muted: #617085;
  --line: #d9e1ec;
  --surface: #ffffff;
  --soft: #f3f6fa;
  --warm: #f3f1ec;
  --shadow: 0 22px 60px rgba(6, 47, 98, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

main {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 78px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(5, 33, 65, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 42vw;
  padding: 0;
  transition: width 180ms ease, padding 180ms ease;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  width: 220px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a,
.mobile-nav a {
  position: relative;
}

.main-nav a::after,
.mobile-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1.5px solid currentColor;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 78px;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  display: none;
  padding: 22px 28px 30px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 34px rgba(5, 33, 65, 0.12);
}

.mobile-nav.is-open {
  display: grid;
  gap: 18px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 20, 43, 0.7) 0%, rgba(2, 20, 43, 0.38) 48%, rgba(2, 20, 43, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 20, 43, 0.34), rgba(2, 20, 43, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(680px, calc(100% - 40px));
  margin: 0 0 clamp(48px, 10vh, 92px) clamp(20px, 6vw, 82px);
  padding-top: 130px;
}

.reveal {
  opacity: 0;
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-64px);
}

.reveal-down {
  transform: translateY(-54px);
}

.reveal-up {
  transform: translateY(34px);
}

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

.intro-grid article:nth-child(2),
.card-grid .space-card:nth-child(2),
.stats div:nth-child(2) {
  --reveal-delay: 110ms;
}

.intro-grid article:nth-child(3),
.card-grid .space-card:nth-child(3),
.stats div:nth-child(3) {
  --reveal-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

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

h1,
h2,
h3,
.intro-grid strong {
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.9vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--brand-blue-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--brand-blue-dark);
  font-size: 1.32rem;
  line-height: 1.15;
}

.hero p {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1.5px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button.primary {
  color: #fff;
  background: var(--brand-blue);
  box-shadow: 0 14px 28px rgba(10, 71, 143, 0.22);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.button.primary:hover {
  background: var(--brand-blue-dark);
  box-shadow: 0 16px 34px rgba(10, 71, 143, 0.28);
}

.button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .header-action:hover,
.site-header.is-open .header-action:hover {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.button:focus-visible,
.header-action:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(10, 71, 143, 0.32);
  outline-offset: 3px;
}

.section-pad {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

section[id] {
  scroll-margin-top: 112px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.wide {
  max-width: 980px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background: transparent;
  border: 0;
}

.intro-grid article {
  position: relative;
  min-height: 220px;
  padding: clamp(26px, 3.2vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(6, 47, 98, 0.06);
}

.intro-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--brand-blue);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 240ms ease;
}

.intro-grid article:hover::before {
  transform: scaleX(1);
}

.intro-grid span {
  display: block;
  margin-bottom: 26px;
  color: rgba(10, 71, 143, 0.22);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.intro-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-blue-dark);
  font-size: 1.35rem;
  line-height: 1.15;
}

.intro-grid p,
.space-card p,
.feature-copy p,
.location-copy p,
.contact-copy p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding: clamp(56px, 6.5vw, 86px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.feature-image {
  min-width: 0;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  max-width: 660px;
  padding: 0;
}

.opportunity {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
  background: var(--soft);
}

.opportunity-map {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.radius-map {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1;
  overflow: hidden;
  background: url("assets/mapa-raio-petrolina.png") center / cover;
  border: 1px solid rgba(10, 71, 143, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 47, 98, 0.12);
}

.opportunity-map small {
  color: var(--muted);
  font-weight: 800;
}

.opportunity-copy h2 {
  max-width: 600px;
  font-size: clamp(2rem, 2.65vw, 3.25rem);
  line-height: 1.06;
}

.opportunity-copy > p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.opportunity-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
}

.opportunity-facts article {
  position: relative;
  min-height: 92px;
  padding: 18px 66px 18px 22px;
  background: #fff;
  border-left: 4px solid var(--brand-blue);
  box-shadow: 0 12px 26px rgba(6, 47, 98, 0.06);
}

.opportunity-facts article::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  content: "";
}

.opportunity-facts .fact-outer::after {
  border: 2px dashed rgba(10, 71, 143, 0.56);
  border-radius: 50%;
}

.opportunity-facts .fact-local::after {
  width: 18px;
  height: 18px;
  top: 31px;
  right: 31px;
  background: #d7bd65;
  border: 4px solid rgba(215, 189, 101, 0.2);
  border-radius: 50%;
  background-clip: padding-box;
}

.opportunity-facts .fact-inner::after {
  border: 2px dashed rgba(205, 68, 68, 0.78);
  border-radius: 50%;
}

.opportunity-facts .fact-airport::after {
  top: 31px;
  right: 25px;
  width: 34px;
  height: 18px;
  background: var(--brand-blue);
  clip-path: polygon(0 45%, 68% 45%, 68% 0, 82% 0, 100% 50%, 82% 100%, 68% 100%, 68% 55%, 0 55%);
  opacity: 0.9;
}

.opportunity-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-blue-dark);
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
  line-height: 1;
}

.opportunity-facts span {
  color: var(--muted);
  font-size: 0.95rem;
}

.coming-soon {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.6vw, 46px);
  align-items: start;
  margin-top: clamp(18px, 3vw, 38px);
  padding: clamp(42px, 5vw, 66px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 22, 48, 0.94), rgba(5, 22, 48, 0.84)),
    url("assets/Render_2.png") center / cover;
}

.coming-soon .eyebrow,
.coming-soon h2 {
  color: #fff;
}

.coming-copy h2 {
  max-width: min(980px, 100%);
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 4.7rem);
}

.coming-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  border-top: 0;
}

.coming-stats article {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  min-height: clamp(118px, 9vw, 160px);
  padding: clamp(20px, 2.4vw, 32px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.coming-stats article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.coming-stats strong {
  display: block;
  margin-bottom: 0;
  max-width: 100%;
  font-size: clamp(1.95rem, 2.55vw, 3rem);
  line-height: 1;
  white-space: nowrap;
}

.coming-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
}

.infrastructure {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  background: #fff;
}

.infra-summary {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  min-height: 0;
  padding: clamp(28px, 3vw, 38px) clamp(28px, 4vw, 52px);
  color: #fff;
  background: var(--brand-blue);
}

.infra-summary h2 {
  grid-column: 1;
  margin-bottom: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 2.25vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.infra-summary dl {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  margin: 0;
}

.infra-summary div {
  min-width: 0;
  padding: 0 0 0 clamp(16px, 2vw, 26px);
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.infra-summary dt {
  margin-bottom: 4px;
  font-size: clamp(1.85rem, 2.65vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.infra-summary dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.infra-content {
  min-width: 0;
}

.infra-content .section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.infra-content h2 {
  font-size: clamp(1.9rem, 2.75vw, 3.15rem);
}

.infra-carousel-shell {
  position: relative;
  min-width: 0;
  padding: 0 38px;
}

.infra-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.infra-carousel::-webkit-scrollbar {
  display: none;
}

.infra-card {
  min-height: 190px;
  min-width: 0;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-blue);
  scroll-snap-align: start;
}

.infra-card:nth-child(4n),
.infra-card:nth-child(4n - 1) {
  border-top-color: var(--brand-blue);
}

.infra-card span {
  display: block;
  margin-bottom: 22px;
  color: rgba(10, 71, 143, 0.28);
  font-weight: 900;
}

.infra-card h3 {
  margin-bottom: 14px;
  color: #101820;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.infra-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.infra-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  color: var(--brand-blue);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(6, 47, 98, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.infra-button.prev {
  left: 0;
}

.infra-button.next {
  right: 0;
}

.infra-quote {
  max-width: 900px;
  margin: 34px 0 0;
}

.infra-quote blockquote {
  margin: 0;
  padding: 0;
  color: var(--brand-blue-dark);
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.65vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
}

.infra-quote figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: var(--brand-blue);
  font-weight: 800;
}

.text-link::before {
  width: 46px;
  height: 2px;
  content: "";
  background: currentColor;
}

.spaces-carousel {
  width: 100%;
  display: grid;
  grid-auto-columns: minmax(290px, calc((100% - 64px) / 3));
  grid-auto-flow: column;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.spaces-carousel::-webkit-scrollbar {
  display: none;
}

.space-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 100%;
  min-width: 0;
  height: 100%;
  background: #fff;
  border: 1px solid #d6dee8;
  box-shadow: none;
  overflow: hidden;
  scroll-snap-align: start;
}

.space-card img {
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-card div {
  position: relative;
  z-index: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 28px 32px;
  min-width: 0;
  background: #fff;
}

.space-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-card h3 {
  max-width: 100%;
  margin-bottom: 16px;
  color: #101820;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.28rem, 1.55vw, 1.75rem);
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.space-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.spaces {
  background: #fff;
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(76px, 8vw, 120px);
}

.spaces .section-heading {
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.spaces h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #101820;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.1vw, 4.8rem);
  font-weight: 600;
  line-height: 1.06;
}

.carousel-shell {
  position: relative;
  width: min(100%, 1056px);
  max-width: 1056px;
  margin: 0 auto;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 0;
  color: var(--brand-blue);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, transform 180ms ease;
}

.carousel-button.prev {
  left: -104px;
}

.carousel-button.next {
  right: -104px;
}

.carousel-button:hover {
  color: var(--brand-blue-dark);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button:focus-visible {
  outline: 3px solid rgba(10, 71, 143, 0.28);
  outline-offset: 6px;
}

.location {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #052b59 0%, var(--brand-blue-dark) 52%, #082448 100%);
}

.location::before {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  bottom: -70px;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.location::after {
  position: absolute;
  top: 32%;
  right: 12%;
  width: 22vw;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(-18deg);
}

.location h2,
.location .eyebrow,
.location p {
  color: #fff;
}

.location-copy,
.stats,
.location-map {
  position: relative;
  z-index: 1;
}

.location-copy h2 {
  max-width: 760px;
}

.location-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.location-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 14px;
  padding: 0 24px;
  color: var(--brand-blue-dark);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.location-map {
  overflow: hidden;
  min-height: 430px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  margin-top: -70px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: #fff;
  background: rgba(2, 20, 43, 0.74);
}

.map-info span {
  font-weight: 900;
}

.map-info small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
  min-width: 0;
}

.stats div {
  min-height: 210px;
  min-width: 0;
  padding: clamp(22px, 2.2vw, 30px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.stats span {
  display: block;
  margin-bottom: 44px;
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  font-weight: 900;
  line-height: 1;
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
}

.stats small {
  display: block;
  max-width: 140px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 700px) auto;
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  color: var(--ink);
  background: #fff;
}

.contact .eyebrow {
  color: var(--brand-blue);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--brand-blue-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 280px;
}

.contact-actions .button {
  min-width: 230px;
}


.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(180px, 16vw, 230px) 28px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #071018;
}

.site-footer span {
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--brand-blue);
  background: #fff;
  border: 1px solid rgba(10, 71, 143, 0.28);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(6, 47, 98, 0.22);
}

.whatsapp-float:hover {
  background: #f4f8ff;
  transform: translateY(-1px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .main-nav,
  .header-action {
    display: none;
  }

  .site-header {
    gap: 14px;
    min-height: 78px;
    padding: 12px 18px;
  }

  .brand-mark {
    width: min(230px, 62vw);
    max-width: 62vw;
  }

  .site-header.is-scrolled .brand-mark,
  .site-header.is-open .brand-mark {
    width: min(205px, 58vw);
  }

  .mobile-nav {
    top: 78px;
  }

  .menu-toggle {
    flex: 0 0 auto;
    display: block;
    margin-left: auto;
  }

}

@media (max-width: 1280px) {
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    max-width: 760px;
  }

  .carousel-shell {
    padding: 0 68px;
  }

  .spaces-carousel {
    grid-auto-columns: calc((100% - 32px) / 2);
    gap: 32px;
  }

  .carousel-button {
    width: 52px;
    height: 52px;
    color: #fff;
    background: var(--brand-blue);
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(6, 47, 98, 0.22);
    font-size: 3.8rem;
  }

  .carousel-button.prev {
    left: 0;
  }

  .carousel-button.next {
    right: 0;
  }
}

@media (max-width: 980px) {

  .opportunity,
  .intro-grid,
  .coming-soon,
  .infrastructure,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .radius-map {
    width: min(100%, 620px);
  }

  .opportunity-facts {
    grid-template-columns: 1fr 1fr;
  }

  .coming-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .coming-stats article {
    min-height: 140px;
  }

  .coming-stats article:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.34);
  }

  .coming-stats article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.34);
  }

  .infra-summary {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .infra-summary dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .infra-summary div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .infra-carousel {
    grid-auto-columns: minmax(240px, 46%);
    overflow-x: auto;
  }

  .infra-button {
    display: none;
  }

  .spaces-carousel {
    grid-auto-columns: minmax(280px, 82%);
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .carousel-shell {
    max-width: 100%;
  }

  .carousel-button {
    display: none;
  }

  .feature-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .stats div {
    min-height: 140px;
  }

  .location-map {
    min-height: 360px;
  }

  .location-map iframe {
    height: 380px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .location {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  }

  .coming-stats {
    width: 100%;
  }

  .coming-stats article {
    padding: 16px 0;
  }

  .coming-stats strong {
    font-size: clamp(1.85rem, 2.55vw, 3rem);
  }

  .stats {
    gap: 12px;
  }

  .stats span {
    font-size: clamp(2.5rem, 4vw, 4.3rem);
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: min(200px, 56vw);
    max-width: 56vw;
  }

  .site-header.is-scrolled .brand-mark,
  .site-header.is-open .brand-mark {
    width: min(184px, 52vw);
    max-width: 52vw;
  }

  h1 {
    font-size: clamp(1.85rem, 7.4vw, 2.25rem);
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-right: clamp(20px, 5vw, 72px);
  }

  .site-footer p {
    text-align: left;
  }

  .location {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .location-copy p {
    max-width: none;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats div {
    min-height: 116px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.12);
  }

  .stats span {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 14vw, 3.8rem);
  }

  .stats small {
    max-width: none;
  }

  .location-action {
    width: 100%;
  }

  .location-map {
    min-height: 330px;
  }

  .location-map iframe {
    height: 340px;
  }

  .map-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .reveal-left {
    transform: translateY(28px);
  }

  .opportunity-facts,
  .coming-stats {
    grid-template-columns: 1fr;
  }

  .coming-stats article {
    min-height: 112px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.34);
    border-top: 1px solid rgba(255, 255, 255, 0.34);
  }

  .coming-stats article:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.34);
  }

  .radius-map {
    border-radius: 12px;
  }

  .infra-carousel {
    grid-auto-columns: minmax(238px, 84%);
  }

  .carousel-shell {
    padding: 0;
  }

  .spaces-carousel {
    grid-auto-columns: 100%;
    gap: 0;
    padding-bottom: 10px;
  }

  .space-card {
    grid-template-rows: minmax(240px, 54vw) 1fr;
  }

  .space-card div {
    min-height: 260px;
    padding: 28px 24px 34px;
  }

  .space-card h3,
  .space-card p {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .infra-summary img {
    width: 160px;
  }
}

@media (max-width: 720px) {
  .contact {
    min-height: 420px;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }

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

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}

/* Ajuste final do carrossel de espaços */
.carousel-button:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

@media (min-width: 981px) {
  .spaces-carousel {
    scroll-snap-type: none;
  }

  .space-card {
    scroll-snap-align: none;
  }
}
