/* ==========================================================================
   Zion Imob — Bossa Itapoá | Landing Page
   Identidade Zion: preto + laranja (zionimobsc.com.br)
   ========================================================================== */

:root {
  /* Marca Zion — preto */
  --ink-950: #000000;
  --ink-900: #0a0a0a;
  --ink-800: #171717;

  /* Marca Zion — laranja */
  --orange-deep: #b35400;   /* laranja legível como texto em fundo claro */
  --orange: #ff7a00;        /* laranja institucional */
  --orange-light: #ffa552;

  /* Superfícies claras */
  --background: #f9f9f9;
  --card: #ffffff;
  --secondary: #f1f1f1;
  --border: #e4e4e4;

  /* Texto */
  --foreground: #111111;
  --muted-foreground: #5a5a5a;

  /* Gradiente da marca */
  --gradient-brand: linear-gradient(92deg, #b35400, #ff7a00 52%, #ffa552);

  --radius: 0.25rem;
  --font-display: "Playfair", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-ui: "Inter", ui-sans-serif, system-ui, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* --------------------------------------------------------------- reset -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--border);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  tab-size: 4;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
[role="button"],
a[href],
select,
label {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ----------------------------------------------------------- primitivos -- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.display {
  font-family: var(--font-display);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow--brand {
  color: var(--orange-light);
}

.eyebrow--deep {
  color: var(--orange-deep);
}

.section-title {
  font-family: var(--font-display);
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 48rem;
}

.section-lead {
  margin-top: 1rem;
  max-width: 42rem;
}

.text-gradient {
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-brand);
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.6875rem;
  line-height: 1.5;
}

/* Seções escuras / claras */
.section {
  padding-block: 5rem;
  position: relative;
}

.section--dark {
  background-color: var(--ink-900);
  color: #fff;
}

.section--dark-2 {
  background-color: var(--ink-800);
  color: #fff;
}

.section--light {
  background-color: var(--background);
  color: var(--foreground);
}

.section--dark .section-lead,
.section--dark-2 .section-lead {
  color: rgba(255, 255, 255, 0.6);
}

.section--light .section-lead {
  color: var(--muted-foreground);
}

.section--dark .disclaimer,
.section--dark-2 .disclaimer {
  color: rgba(255, 255, 255, 0.4);
}

.section--light .disclaimer {
  color: rgba(90, 90, 90, 0.75);
}

.section--dark .section-title,
.section--dark-2 .section-title {
  color: #fff;
}

/* Cartões */
.card-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
}

.card-light {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Botão principal */
.btn-brand {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--ink-950);
  background: var(--orange);
  box-shadow: 0 6px 24px -6px rgba(255, 122, 0, 0.45);
  transition:
    transform 0.16s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    filter 0.2s;
}

.btn-brand:hover {
  filter: none;
  box-shadow: 0 10px 32px -6px rgba(255, 122, 0, 0.6);
  background: var(--orange-light);
}

.btn-brand:active {
  transform: scale(0.97);
}

.btn-ghost {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (min-width: 640px) {
  .btn-ghost {
    display: block;
  }
}

/* Pill "ao vivo" */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 1rem;
  backdrop-filter: blur(4px);
}

.pill--brand {
  border-color: rgba(255, 165, 82, 0.4);
  background: rgba(255, 165, 82, 0.1);
}

.pill__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-light);
}

.dot {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
  flex-shrink: 0;
}

.dot span {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: var(--orange-light);
  animation: zion-pulse 1.6s ease-in-out infinite;
}

@keyframes zion-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.82);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ------------------------------------------------------- barra urgência -- */
.urgency {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--ink-950);
  color: #fff;
  border-bottom: 1px solid var(--orange);
}

.urgency__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.urgency .dot span {
  background: var(--orange);
}

.urgency__text {
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.urgency__sep {
  display: none;
  color: rgba(255, 255, 255, 0.8);
}

.urgency__clock {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(255, 122, 0, 0.16);
  border-radius: 0.25rem;
  padding: 0.125rem 0.5rem;
  font-variant-numeric: tabular-nums;
  color: var(--orange-light);
}

@media (min-width: 640px) {
  .urgency__inner {
    gap: 1rem;
    font-size: 0.875rem;
  }
  .urgency__sep {
    display: inline;
  }
}

/* -------------------------------------------------------------- marca -- */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.wordmark__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.wordmark__name {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.wordmark__by {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.625rem;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.wordmark__by b {
  color: var(--orange-light);
  font-weight: 600;
}

.wordmark__rule {
  margin-top: 0.25rem;
  width: 7rem;
  height: auto;
}

/* ------------------------------------------------- assinatura Zion Imob -- */
.hero__nav-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.zion-mark {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: opacity 0.2s;
}

.zion-mark:hover {
  opacity: 0.75;
}

.zion-mark__label {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.zion-mark img {
  width: 62px;
  height: auto;
}

@media (min-width: 640px) {
  .zion-mark__label {
    display: block;
  }
  .zion-mark img {
    width: 74px;
  }
}

.footer__logo {
  width: 86px;
  height: auto;
  margin-bottom: 0.875rem;
}

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.hero__scrim-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.74) 50%,
    rgba(0, 0, 0, 0.25)
  );
}

.hero__scrim-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.4)
  );
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  bottom: -6rem;
  left: 25%;
  height: 380px;
  width: 720px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.22);
  filter: blur(130px);
}

.hero__nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 4rem;
  z-index: 20;
}

.hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.hero__body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 4rem);
  padding-block: 6rem 4rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.hero__copy {
  max-width: 42rem;
}

.hero__title {
  font-family: var(--font-display);
  margin-top: 1.25rem;
  font-size: clamp(2.125rem, 1.3rem + 3.1vw, 3.25rem);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
}

.hero__subtitle {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.hero__subtitle strong {
  color: #fff;
}

@media (min-width: 640px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}

.hero__stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 36rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.hero__stat-v {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.hero__stat-v small {
  font-size: 1.125rem;
}

.hero__stat-l {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .hero__stat-v {
    font-size: 1.875rem;
  }
  .hero__stat-l {
    font-size: 0.75rem;
  }
}

.form-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(23, 23, 23, 0.92);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .form-card {
    padding: 1.75rem;
  }
}

.form-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.form-card__sub {
  margin: 0.375rem 0 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* -------------------------------------------------------------- forms -- */
.lead-form {
  display: grid;
  gap: 0.75rem;
}

.field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.field input {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: #fff;
  transition: box-shadow 0.2s;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--orange);
}

.lead-form--light .field label {
  color: var(--muted-foreground);
}

.lead-form--light .field input {
  border-color: var(--border);
  background: #fff;
  color: var(--foreground);
}

.lead-form--light .field input::placeholder {
  color: rgba(90, 90, 90, 0.6);
}

.phone-row {
  display: flex;
  gap: 0.5rem;
}

.phone-code {
  position: relative;
  flex-shrink: 0;
}

.phone-code select {
  height: 100%;
  appearance: none;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.75rem 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.lead-form--light .phone-code select {
  border-color: var(--border);
  background: var(--secondary);
  color: var(--foreground);
}

.phone-code select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--orange);
}

.phone-code select option {
  background: #fff;
  color: #171717;
}

.phone-code__caret {
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
}

.lead-form--light .phone-code__caret {
  color: var(--muted-foreground);
}

.form-note {
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

.lead-form--light .form-note {
  color: rgba(90, 90, 90, 0.75);
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

/* Etapa de qualificação */
.qualify {
  display: grid;
  gap: 1rem;
}

.qualify__intro {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.lead-form--light .qualify__intro {
  color: var(--foreground);
}

.qualify__progress {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.qualify__progress span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.lead-form--light .qualify__progress span {
  background: var(--border);
}

.qualify__progress span.is-done {
  background: rgba(255, 255, 255, 0.3);
}

.qualify__progress span.is-active {
  background: var(--gradient-brand);
}

.qualify__step {
  transition: opacity 0.2s;
}

.qualify__step.is-fading {
  opacity: 0;
}

.qualify__step > label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.lead-form--light .qualify__step > label {
  color: var(--muted-foreground);
}

.qualify__options {
  display: grid;
  gap: 0.375rem;
}

.option {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.625rem 0.75rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.option:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.option.is-selected {
  border-color: var(--orange);
  background: rgba(255, 122, 0, 0.15);
  color: var(--orange-light);
}

.lead-form--light .option {
  border-color: var(--border);
  background: #fff;
  color: var(--foreground);
}

.lead-form--light .option:hover {
  border-color: rgba(255, 122, 0, 0.5);
}

.lead-form--light .option.is-selected {
  border-color: var(--orange);
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange-deep);
}

.success {
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.success__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.success__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.lead-form--light .success__title {
  color: var(--foreground);
}

.lead-form--light .success__text {
  color: var(--muted-foreground);
}

/* --------------------------------------------------------- wave divider -- */
.wave {
  position: relative;
  z-index: 10;
  margin-top: -1px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave--flip {
  transform: scaleX(-1);
}

.wave svg {
  display: block;
  height: 48px;
  width: 100%;
}

@media (min-width: 640px) {
  .wave svg {
    height: 70px;
  }
}

/* ---------------------------------------------------------- vantagens -- */
.advantages {
  padding-block: 1rem 5rem;
}

.grid-4 {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.advantage {
  height: 100%;
  padding: 1.5rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.advantage:hover {
  border-color: rgba(255, 122, 0, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.advantage__icon {
  margin-bottom: 1rem;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gradient-brand);
}

.advantage__icon svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--ink-950);
}

.advantage h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.advantage p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------------- por que itapoá -- */
.hilite {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.hilite__num {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 3rem + 8vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.hilite__text {
  max-width: 28rem;
  padding-bottom: 0.5rem;
}

.hilite__text p:first-child {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
}

.hilite__text p:last-child {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hilite__text p:first-child {
    font-size: 1.25rem;
  }
}

.why-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.bars {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .bars {
    padding: 2rem;
  }
}

.bars__title {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bar__city {
  width: 7rem;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.bar--hi .bar__city {
  font-family: var(--font-ui);
  font-weight: 900;
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.bar__track {
  height: 1.75rem;
  flex: 1;
  overflow: hidden;
  border-radius: 0.125rem;
  background: var(--secondary);
}

.bar__fill {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding-right: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink-800);
}

.bar--hi .bar__fill {
  background: var(--gradient-brand);
  color: var(--ink-950);
}

@media (min-width: 640px) {
  .bar__city {
    width: 8rem;
    font-size: 0.875rem;
  }
  .bar__fill {
    font-size: 0.75rem;
  }
}

.stat-rows {
  display: grid;
  gap: 1.25rem;
}

.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
}

.stat-row__v {
  font-family: var(--font-display);
  min-width: 7rem;
  font-size: 1.875rem;
  font-weight: 900;
  white-space: nowrap;
}

.stat-row__l {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}

.stat-row__s {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(90, 90, 90, 0.75);
}

@media (min-width: 640px) {
  .stat-row__v {
    font-size: 2.25rem;
  }
  .stat-row__l {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------- marquee -- */
.marquee {
  background: var(--gradient-brand);
  overflow: hidden;
  padding-block: 0.75rem;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: zion-marquee 36s linear infinite;
}

.marquee__track span {
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-950);
}

.marquee__track b {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@keyframes zion-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* -------------------------------------------------------- ciclo cidade -- */
.engines {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .engines {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.carousel {
  position: relative;
  height: 16rem;
  overflow: hidden;
  border-radius: var(--radius);
  order: 2;
}

@media (min-width: 640px) {
  .carousel {
    height: 20rem;
  }
}

@media (min-width: 1024px) {
  .carousel {
    height: 100%;
    min-height: 480px;
    order: 1;
  }
}

.carousel__viewport {
  height: 100%;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}

.carousel__slide {
  position: relative;
  min-width: 0;
  flex: 0 0 100%;
}

.carousel__slide img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.carousel__dots {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  gap: 0.375rem;
}

.carousel__dots button {
  height: 6px;
  width: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.carousel__dots button.is-active {
  width: 24px;
  background: var(--orange-light);
}

.engines__list {
  order: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
}

@media (min-width: 1024px) {
  .engines__list {
    order: 2;
  }
}

.engine {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.engine:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.engine__n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
}

.engine h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.engine p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .engine h3 {
    font-size: 1.125rem;
  }
}

/* ------------------------------------------------------ empreendimento -- */
.gallery-a {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.gallery-b {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-a,
  .gallery-b {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-b {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  height: 20rem;
}

.gallery-b .shot {
  height: 16rem;
}

@media (min-width: 640px) {
  .gallery-a .shot {
    height: 24rem;
  }
}

.shot img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.shot:hover img {
  transform: scale(1.04);
}

.shot__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88),
    rgba(0, 0, 0, 0.15) 50%,
    transparent
  );
}

.shot__zoom {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.2s;
}

.shot:hover .shot__zoom {
  opacity: 1;
}

.shot figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
}

.shot figcaption p:first-child {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.shot figcaption p:last-child {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------------------------ lightbox -- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__btn {
  position: absolute;
  z-index: 10;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.2s;
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
  right: 1rem;
  top: 1rem;
}

.lightbox__prev {
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 640px) {
  .lightbox__prev {
    left: 1.5rem;
  }
  .lightbox__next {
    right: 1.5rem;
  }
}

.lightbox__figure {
  display: flex;
  max-height: 92vh;
  width: 100%;
  max-width: 72rem;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
}

.lightbox__figure img {
  max-height: 76vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.lightbox__figcaption {
  margin-top: 1rem;
  text-align: center;
}

.lightbox__figcaption p:nth-child(1) {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.lightbox__figcaption p:nth-child(2) {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.lightbox__figcaption p:nth-child(3) {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------- renda/airbnb -- */
.grid-3 {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.big-stat {
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s;
}

.big-stat:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.big-stat__v {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.big-stat__l {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .big-stat__v {
    font-size: 3.75rem;
  }
}

.steps {
  margin-top: 3rem;
  display: grid;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 2rem;
  }
}

.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step__icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gradient-brand);
}

.step__icon svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--ink-950);
}

.step p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
}

.step p i {
  font-family: var(--font-display);
  font-style: normal;
  margin-right: 0.25rem;
  color: var(--orange-light);
}

@media (min-width: 640px) {
  .step {
    flex-direction: column;
    text-align: center;
  }
  .step__icon {
    height: 3rem;
    width: 3rem;
  }
  .step p i {
    display: block;
    margin-right: 0;
    font-size: 0.75rem;
    font-weight: 700;
  }
}

/* ---------------------------------------------------------- tipologias -- */
.typologies {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .typologies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.typology {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.typology__media {
  position: relative;
  height: 13rem;
}

.typology__media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.typology__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.typology__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-950);
}

.typology__name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.typology__name span {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.typology__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.typology__label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-ui);
}

.typology__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
}

.typology__flow {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.625rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.typology__flow div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.typology__flow dt {
  color: var(--muted-foreground);
}

.typology__flow dd {
  text-align: right;
  font-weight: 600;
}

.typology__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted-foreground);
}

.typology .btn-brand {
  margin-top: 1.5rem;
}

/* ------------------------------------------------------------- quem é -- */
.who {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .who {
    grid-template-columns: 1fr 1fr;
  }
}

.who__text {
  margin-top: 1.25rem;
  max-width: 36rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.who__text strong {
  color: #fff;
}

.who__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.who__stat {
  padding: 1.5rem;
}

.who__stat p:first-child {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
}

.who__stat p:last-child {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
}

/* -------------------------------------------------------------- tabela -- */
.table-section {
  overflow: hidden;
}

.table-section__glow {
  pointer-events: none;
  position: absolute;
  right: -10rem;
  top: -10rem;
  height: 480px;
  width: 480px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.15);
  filter: blur(120px);
}

.table-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .table-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.table-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .table-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.table-stat {
  padding: 1rem;
  text-align: center;
}

.table-stat__v {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
}

.table-stat__l {
  font-family: var(--font-ui);
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.table-stat__d {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .table-stat__v {
    font-size: 1.875rem;
  }
}

.table-example {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.table-form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ink-800);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .table-form {
    padding: 2rem;
  }
}

/* -------------------------------------------------------------- footer -- */
.footer {
  background: var(--ink-950);
  padding-block: 3rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer__top {
    flex-direction: row;
    align-items: center;
  }
}

.footer__tagline {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.footer__contact {
  font-size: 0.875rem;
}

.footer__contact p:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.footer__legal {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.6875rem;
  line-height: 1.6;
}

.footer__legal p:first-child {
  margin-bottom: 0.75rem;
}

.footer__legal strong {
  color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------------- whatsapp fab -- */
.fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.6);
  transition: transform 0.15s;
}

.fab:hover {
  transform: scale(1.05);
}

.fab:active {
  transform: scale(0.95);
}

.fab svg {
  height: 1.75rem;
  width: 1.75rem;
  fill: #fff;
}

/* --------------------------------------------------------------- modal -- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal.is-open {
  display: flex;
}

.modal__panel {
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.modal__close {
  float: right;
  height: 2rem;
  width: 2rem;
  border-radius: 999px;
  color: var(--muted-foreground);
  transition: background-color 0.2s;
}

.modal__close:hover {
  background: var(--secondary);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--foreground);
}

.modal__sub {
  margin: 0.375rem 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.modal__unit {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: var(--secondary);
  padding: 0.875rem 1rem;
}

.modal__unit p:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--foreground);
}

.modal__unit p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.modal__check {
  margin: 0 auto 0.5rem;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gradient-brand);
}

.modal__check svg {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--ink-950);
}

.modal--success .modal__panel {
  text-align: center;
}

/* --------------------------------------------------------------- toast -- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 120;
  transform: translate(-50%, 1rem);
  border-radius: var(--radius);
  background: var(--ink-950);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}

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

.toast--error {
  background: #b3261e;
}

/* ------------------------------------------------------------ helpers -- */
.is-hidden {
  display: none !important;
}

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