/* ══════════════════════════════════════════════════════
   JARDINS DAS NAÇÕES — style.css
   ══════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #FAF8F4;
  color: #002329;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --cream:    #FAF8F4;
  --cream2:   #F2EDE4;
  --beige:    #E8DFD0;
  --sand:     #D4C5AF;
  --gold:     #B8924A;
  --gold-lt:  #D4A85C;
  --dark:     #002329;
  --dark2:    #002c35;
  --mid:      #4a7070;
  --light:    #7a9fa0;
  --white:    #FFFFFF;
  --green:    #3D6B4F;
  --green-lt: #4E8764;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

/* ── TIPOGRAFIA GLOBAL ─────────────────────────────────── */
.tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 16px;
}

.section-label--center { text-align: center; }
.section-label--light  { color: rgba(250,248,244,0.4); }

/* ── DIVISORES ─────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.divider-left {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 32px;
}

.divider-left--gold { background: var(--gold-lt); }

/* ── BOTÕES ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 1.5px solid var(--dark);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--dark); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(250,248,244,0.85);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 1.5px solid rgba(250,248,244,0.35);
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(250,248,244,0.1); }

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-wpp:hover { background: #1ebe5d; }

/* ── FORMULÁRIOS ───────────────────────────────────────── */
.form__group { margin-bottom: 14px; }

.form__label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}

.form__input,
.form__select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--dark);
  background: var(--cream2);
  border: 1px solid var(--beige);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%234a7070' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form--dark .form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(250%2C248%2C244%2C0.4)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
}
.form__input:focus,
.form__select:focus { border-color: var(--gold); }

.form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  min-height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.form__submit:hover { background: var(--gold-lt); }

.form__privacy {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--light);
  text-align: center;
  margin-top: 12px;
}

/* Formulário dark (CTA final) */
.form--dark .form__label { color: rgba(250,248,244,0.45); }
.form--dark .form__input,
.form--dark .form__select {
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.form--dark .form__input::placeholder { color: rgba(250,248,244,0.3); }
.form--dark .form__input:focus,
.form--dark .form__select:focus { border-color: var(--gold); }
.form--dark .form__select { color: rgba(250,248,244,0.6); }
.form--dark .form__select option { background: var(--dark2); color: var(--cream); }
.form--dark .form__privacy { color: rgba(250,248,244,0.3); }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige);
  padding: 18px 0;
  transition: box-shadow 0.2s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 36px; width: auto; display: block; }

.nav__cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  transition: all 0.2s;
}
.nav__cta:hover { background: var(--gold); color: var(--white); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark2);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #001a22; /* fallback if video fails to load */
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,26,34,0.92) 45%, rgba(0,26,34,0.55) 100%);
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__subtitle {
  font-family: var(--sans);
  font-size: 16px;
  color: rgba(250,248,244,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero__badges li {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250,248,244,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__badges li::before {
  content: '—';
  color: var(--gold);
  font-size: 14px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__form-card {
  background: var(--cream);
  padding: 40px 36px;
  border-top: 3px solid var(--gold);
}

.hero__form-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--dark2);
  margin-bottom: 6px;
}

.hero__form-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 28px;
}

/* ── NÚMEROS ───────────────────────────────────────────── */
.numeros {
  background: var(--dark2);
  padding: 48px 0;
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.numeros__item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.numeros__val {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.numeros__lbl {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
}
.numeros__lbl-sub { font-size: 9px; letter-spacing: 0.06em; white-space: nowrap; }

/* ── SOBRE ─────────────────────────────────────────────── */
.sobre { background: var(--cream); }

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__visual {
  position: relative;
  background: var(--beige);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sobre__visual::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.sobre__visual-placeholder {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light);
  text-align: center;
  padding: 24px;
}

.sobre__visual--video { padding: 0; }

.sobre__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #1a1a1a;
}

.sobre__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sobre__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark2);
  margin-bottom: 20px;
}
.sobre__title em { font-style: italic; color: var(--gold); }

.sobre__text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sobre__itens li {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sobre__itens li:first-child { border-top: 1px solid var(--beige); }
.sobre__key { color: var(--light); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }
.sobre__val { font-weight: 500; text-align: right; }

/* ── DIFERENCIAIS ──────────────────────────────────────── */
.diferenciais { background: var(--cream2); }

.diferenciais__header {
  text-align: center;
  margin-bottom: 64px;
}

.diferenciais__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--dark2);
  margin-bottom: 16px;
}

.diferenciais__sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dif-card {
  background: var(--cream);
  padding: 44px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}
.dif-card:hover { border-bottom-color: var(--gold); }

.dif-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beige);
  color: var(--gold);
}
.dif-card__icon svg { width: 22px; height: 22px; }

.dif-card__title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--dark2);
  margin-bottom: 12px;
}

.dif-card__text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
}

.dif-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── GALERIA ───────────────────────────────────────────── */
.galeria {
  background: var(--dark2);
  padding: 80px 0;
}

.galeria__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.galeria__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--cream);
}
.galeria__title em { font-style: italic; color: var(--gold); }

.galeria__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(250,248,244,0.4);
  text-align: right;
  max-width: 260px;
  line-height: 1.6;
}

.galeria__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 4px;
}
.galeria__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--dark2);
}
.galeria__item--main { grid-row: 1 / 3; }
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.galeria__item:hover img { transform: scale(1.04); }

.galeria__item--more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 35, 41, 0.52);
  z-index: 1;
  transition: background 0.3s ease;
}
.galeria__item--more:hover::before { background: rgba(0, 35, 41, 0.68); }
.galeria__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.14em;
  z-index: 2;
}

/* ── LIGHTBOX ──────────────────────────────────────────── */
.galeria__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 14, 0.97);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.galeria__lightbox.is-open { opacity: 1; pointer-events: all; }

.galeria__lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(250, 248, 244, 0.5);
  cursor: pointer;
  padding: 8px;
  z-index: 1;
  transition: color 0.2s;
  line-height: 0;
}
.galeria__lb-close:hover { color: var(--cream); }

.galeria__lb-prev,
.galeria__lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(250, 248, 244, 0.4);
  cursor: pointer;
  padding: 20px 28px;
  z-index: 1;
  transition: color 0.2s;
  line-height: 0;
}
.galeria__lb-prev:hover,
.galeria__lb-next:hover { color: var(--cream); }
.galeria__lb-prev:disabled,
.galeria__lb-next:disabled { opacity: 0.15; pointer-events: none; }
.galeria__lb-prev { left: 0; }
.galeria__lb-next { right: 0; }

.galeria__lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 68px 100px 20px;
  min-height: 0;
  box-sizing: border-box;
}
.galeria__lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.galeria__lb-img.is-fading { opacity: 0; }

.galeria__lb-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 24px 28px;
  flex-shrink: 0;
}
.galeria__lb-counter {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.3);
  text-transform: uppercase;
}
.galeria__lb-thumbs {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
}
.galeria__lb-thumbs::-webkit-scrollbar { display: none; }
.galeria__lb-thumb {
  flex: 0 0 64px;
  height: 42px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.25s;
  outline: none;
  border: 1.5px solid transparent;
  box-sizing: border-box;
}
.galeria__lb-thumb:hover { opacity: 0.7; }
.galeria__lb-thumb.is-active { opacity: 1; border-color: var(--gold); }
.galeria__lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── LAZER ─────────────────────────────────────────────── */
.lazer { background: var(--cream); padding-bottom: 0; }

.lazer__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--dark2);
  text-align: center;
  margin-bottom: 48px;
}

.lazer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lazer__item {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--beige);
  background: var(--cream2);
}
.lazer__icon { display: flex; justify-content: center; margin-bottom: 14px; }
.lazer__icon img { width: 48px; height: 48px; object-fit: contain; display: block; }
.lazer__name { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark2); margin-bottom: 4px; }
.lazer__desc { font-family: var(--sans); font-size: 11px; color: var(--light); }

.lazer__visual {
  margin-top: 64px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.lazer__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── QUADRAS ───────────────────────────────────────────── */
.quadras { background: var(--cream2); padding-bottom: 0; }

.quadras__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--dark2);
  text-align: center;
  margin-bottom: 12px;
}

.quadras__sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--mid);
  text-align: center;
  margin-bottom: 52px;
}

.quadras__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.quadra-card {
  background: var(--cream);
  padding: 32px 28px;
  border-bottom: 3px solid var(--beige);
  transition: border-color 0.2s;
}
.quadra-card:hover { border-bottom-color: var(--gold); }

.quadra-card__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--dark2);
  margin-bottom: 6px;
}
.quadra-card__range { font-family: var(--sans); font-size: 12px; color: var(--mid); margin-bottom: 20px; }

.quadra-card__bar-wrap { background: var(--beige); height: 3px; margin-bottom: 12px; }
.quadra-card__bar { height: 100%; background: var(--gold); }

.quadra-card__avail { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.quadra-card__num { font-family: var(--serif); font-size: 28px; color: var(--gold); }
.quadra-card__lbl { font-family: var(--sans); font-size: 11px; color: var(--light); letter-spacing: 0.06em; text-transform: uppercase; }

.quadras__parallax {
  aspect-ratio: 4183 / 2482;
  background-image: url('../assets/images/quadra-de-lotes-jardim-das-nacoes-3.jpeg');
  background-size: cover;
  background-position: center;
}

.quadras__cta { text-align: center; padding-bottom: 64px; }
.quadras__nota { font-family: var(--sans); font-size: 12px; color: var(--light); margin-top: 14px; }

/* ── VALORIZAÇÃO ───────────────────────────────────────── */
.valorizacao {
  background: var(--dark2);
  padding: 96px 0;
}

.val__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.val__title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}
.val__title em { font-style: italic; color: var(--gold-lt); }

.val__text {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(250,248,244,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.val__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.val__card {
  background: rgba(255,255,255,0.04);
  padding: 28px 24px;
  border-left: 2px solid transparent;
}
.val__card--destaque { border-left-color: var(--gold); }
.val__card-num { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--gold-lt); line-height: 1; margin-bottom: 8px; }
.val__card-lbl { font-family: var(--sans); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,248,244,0.4); }

.val__timeline-box {
  background: rgba(255,255,255,0.04);
  padding: 44px 36px;
  border: 1px solid rgba(255,255,255,0.08);
}
.val__timeline-title { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }

.val__timeline li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--sans);
}
.val__timeline li:last-child { border-bottom: none; }
.val__year { font-size: 11px; color: rgba(250,248,244,0.35); width: 36px; flex-shrink: 0; }
.val__value { font-size: 18px; font-weight: 600; color: var(--cream); flex: 1; }
.val__value--gold { color: var(--gold-lt); }
.val__delta { font-size: 11px; color: var(--green-lt); }
.val__delta--neutral { color: rgba(250,248,244,0.3); }
.val__disclaimer { font-family: var(--sans); font-size: 10px; color: rgba(250,248,244,0.25); line-height: 1.6; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ── LOCALIZAÇÃO ───────────────────────────────────────── */
.localizacao { background: var(--cream); }

.loc__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: stretch;
}

.loc__title { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--dark2); margin-bottom: 16px; }
.loc__text { font-family: var(--sans); font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 36px; }

.loc__topics { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 7px; }
.loc__topic-item { display: flex; align-items: baseline; gap: 10px; font-family: var(--sans); font-size: 13px; color: var(--mid); line-height: 1.5; }
.loc__topic-item::before { content: ''; display: inline-block; width: 16px; height: 1.5px; background: var(--gold); flex-shrink: 0; margin-top: 1px; }

.loc__distancias { margin-bottom: 36px; }
.loc__distancias li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
}
.loc__distancias li:first-child { border-top: 1px solid var(--beige); }
.loc__icon { width: 24px; flex-shrink: 0; display: flex; align-items: center; }
.loc__icon svg { width: 16px; height: 16px; color: var(--mid); }
.loc__lbl { flex: 1; }
.loc__tempo { color: var(--gold); font-weight: 600; font-size: 12px; flex-shrink: 0; }

.loc__mapa {
  min-height: 560px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.loc__mapa iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── CTA FINAL ─────────────────────────────────────────── */
.cta { background: var(--cream2); }

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta__title { font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1.15; color: var(--dark2); margin-bottom: 20px; }
.cta__title em { font-style: italic; color: var(--gold); }
.cta__text { font-family: var(--sans); font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }

.cta__urgencia {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  margin-bottom: 32px;
}
.cta__urgencia-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.cta__urgencia p { font-family: var(--sans); font-size: 13px; color: var(--dark); font-weight: 500; line-height: 1.5; }

.cta__form-card { background: var(--dark2); padding: 48px 40px; }
.cta__form-title { font-family: var(--serif); font-size: 24px; color: var(--cream); margin-bottom: 8px; }
.cta__form-sub { font-family: var(--sans); font-size: 13px; color: rgba(250,248,244,0.45); margin-bottom: 28px; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: #001a22;
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__logo { font-family: var(--serif); font-size: 18px; letter-spacing: 0.06em; color: rgba(250,248,244,0.7); display: block; margin-bottom: 12px; }
.footer__logo span { color: var(--gold); }
.footer__tagline { font-family: var(--sans); font-size: 12px; color: rgba(250,248,244,0.3); line-height: 1.7; }

.footer__info { font-family: var(--sans); font-size: 12px; color: rgba(250,248,244,0.35); line-height: 1.9; }
.footer__info a { color: rgba(250,248,244,0.45); }
.footer__info a:hover { color: var(--gold); }

.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer__legal { font-family: var(--sans); font-size: 10px; color: rgba(250,248,244,0.2); line-height: 1.7; text-align: right; }

.footer__dev { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer__brand-label { font-family: var(--sans); font-size: 10px; color: rgba(250,248,244,0.3); letter-spacing: 0.08em; text-transform: uppercase; }
.footer__brand-link { display: inline-block; }
.footer__logo-img { height: 36px; width: auto; display: block; margin-bottom: 12px; }
.footer__brand-logo { height: 36px; width: auto; display: block; }
.footer__brand-logo--k2 { height: 58px; }

/* ── WHATSAPP FLUTUANTE ────────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: calc(28px + env(safe-area-inset-right, 0px));
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wpp-float svg { width: 28px; height: 28px; }

/* ── SJC · ISO 37125 ──────────────────────────────────── */
.iso__continuation {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--beige);
}

.iso__badge {
  display: inline-block;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 48px;
}

.iso__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  margin-bottom: 6px;
}

.iso__card {
  background: var(--cream);
  padding: 28px 24px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}
.iso__card:hover { border-top-color: var(--gold); }

.iso__card-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 10px;
}

.iso__card-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.iso__card-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
}

.iso__source { margin: 4px 0 28px; }
.iso__source a { font-family: var(--sans); font-size: 11px; color: var(--mid); opacity: 0.6; text-decoration: none; }
.iso__source a:hover { opacity: 1; text-decoration: underline; }

.iso__quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}
.iso__quote p {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 8px;
}
.iso__quote cite {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--light);
  font-style: normal;
}

.iso__body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.iso__body strong { color: var(--dark); }

.iso__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.iso__pill {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mid);
  background: var(--cream);
  border: 1px solid var(--beige);
  padding: 6px 14px;
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }