/* =========================================
   DELLAGIO — Editorial sóbrio com terra-cota
   Design: Agente 3 · Code: Agente 4
   ========================================= */

/* ----- TOKENS ----- */
:root {
  /* Color */
  --terra-deep: #5C3A21;
  --terra-mid: #8B5E3C;
  --terra-light: #D4B89A;
  --cream: #F5EBE0;
  --off-white: #FAF6F1;
  --charcoal: #1F1A17;
  --gold: #A8842C;
  --soft-line: rgba(92, 58, 33, 0.18);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing */
  --section-y: clamp(80px, 12vw, 160px);
  --container: 1280px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--terra-mid); color: var(--cream); }

/* ----- LAYOUT ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ----- TYPOGRAPHY ----- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 24px;
  padding-left: 32px;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--terra-mid);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--terra-deep);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--terra-mid);
  font-weight: 300;
}

.section-header {
  margin-bottom: clamp(48px, 8vw, 96px);
  max-width: 720px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border-radius: 0;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terra-deep);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 26, 23, 0.2);
}
.btn--ghost {
  background: transparent;
  color: var(--terra-deep);
  border-color: var(--terra-deep);
}
.btn--ghost:hover {
  background: var(--terra-deep);
  color: var(--cream);
}
.btn--full { width: 100%; }

/* ============================================ */
/* NAV                                          */
/* ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(245, 235, 224, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 16px 0;
  border-bottom-color: var(--soft-line);
}
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--terra-deep);
}
.nav__brand-mark {
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
}
.nav__brand-text {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
}
.nav__links a:not(.nav__cta):hover {
  color: var(--terra-mid);
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra-mid);
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--terra-deep);
  color: var(--cream) !important;
  padding: 10px 22px;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}
.nav__cta:hover { background: var(--charcoal); }

.nav__menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--terra-deep);
  transition: all 0.3s var(--ease);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu-toggle { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    border-bottom: 1px solid var(--soft-line);
  }
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--cream);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212, 184, 154, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(168, 132, 44, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  z-index: 0;
  overflow: hidden;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* gradiente sólido à esquerda (área do texto) com fade controlado até a fachada à direita */
    linear-gradient(90deg, rgba(245, 235, 224, 0.985) 0%, rgba(245, 235, 224, 0.96) 40%, rgba(245, 235, 224, 0.78) 55%, rgba(245, 235, 224, 0.30) 75%, rgba(245, 235, 224, 0.05) 95%),
    /* textura sutil (mantida) */
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(92, 58, 33, 0.02) 80px, rgba(92, 58, 33, 0.02) 81px);
  pointer-events: none;
  z-index: 1;
}
.hero__tour {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
}
/* Foto HD da fachada — ativada em 21/05/2026 */
.hero__fachada {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__fachada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchora a fachada à direita: prédio fica longe do bloco de texto à esquerda */
  object-position: 80% center;
  /* Atmosfera: blur sutil + dessaturação leve mascaram pixelação do source 1080x1421
     e dão acabamento editorial coerente com o restante do site */
  filter: blur(0.6px) saturate(0.9) brightness(1.02);
  transform: scale(1.02); /* corrige bordas que o blur expõe */
}
@media (max-width: 768px) {
  /* No mobile, o tour vira faixa inferior para não competir com o título */
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(245, 235, 224, 0.96) 0%, rgba(245, 235, 224, 0.92) 50%, rgba(245, 235, 224, 0.30) 100%),
      repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(92, 58, 33, 0.02) 80px, rgba(92, 58, 33, 0.02) 81px);
  }
}
.hero__overlay {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 40vw;
  max-width: 600px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--terra-mid) 0%, var(--terra-deep) 100%);
  opacity: 0.15;
  z-index: 0;
  border-radius: 0;
}
.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--terra-mid);
  opacity: 0.3;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 32px;
  margin: 0 auto;
  width: 100%;
  animation: heroReveal 1.4s var(--ease) both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--terra-mid);
  text-transform: uppercase;
}
.hero__eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--terra-mid);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--terra-deep);
  margin-bottom: 32px;
  /* Halo cream sutil — preserva legibilidade onde o título avança sobre a fachada */
  text-shadow: 0 1px 0 rgba(245, 235, 224, 0.55), 0 2px 16px rgba(245, 235, 224, 0.4);
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--terra-mid);
  display: inline-block;
}
.hero__subtitle {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 580px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero__meta {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--soft-line);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--terra-deep);
}
.hero__meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-mid);
}
.hero__meta-divider {
  width: 1px;
  height: 48px;
  background: var(--soft-line);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--terra-mid);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--terra-mid);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--cream);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  to { top: 40px; }
}

@media (max-width: 768px) {
  .hero__overlay { display: none; }
  .hero__meta { gap: 20px; }
  .hero__meta-num { font-size: 36px; }
  .hero__meta-divider { display: none; }
}

/* ============================================ */
/* MANIFESTO                                    */
/* ============================================ */
.manifesto {
  padding: var(--section-y) 0;
  background: var(--off-white);
  position: relative;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 120px;
}
.manifesto__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--terra-deep);
  margin-bottom: 16px;
}
.manifesto__title em {
  font-style: italic;
  color: var(--terra-mid);
  font-weight: 300;
}
.manifesto__title--accent {
  color: var(--terra-mid);
  font-style: italic;
  font-weight: 300;
}
.manifesto__lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 300;
}
.manifesto__col-right p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.manifesto__col-right p strong {
  color: var(--terra-deep);
  font-weight: 600;
}
.manifesto__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--terra-mid);
}
.manifesto__signature-line {
  width: 60px;
  height: 1px;
  background: var(--terra-mid);
}
.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 96px;
  border-top: 1px solid var(--soft-line);
  position: relative;
}
.pillar {
  position: relative;
  padding: 0 40px;
  border-left: 1px solid var(--soft-line);
  transition: background 0.5s var(--ease);
}
.pillar:first-child { border-left: 0; padding-left: 8px; }
.pillar:last-child { padding-right: 8px; }
.pillar:hover { background: rgba(168, 132, 44, 0.04); }

.pillar__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  min-height: 24px;
}
/* Marcador horizontal antes do kicker — substitui o numeral romano, mantém rítmo */
.pillar__head::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terra-mid);
  transition: width 0.5s var(--ease);
}
.pillar:hover .pillar__head::before { width: 56px; }
.pillar__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-mid);
}
.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--terra-deep);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pillar__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--terra-mid);
}
.pillar__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 400;
  max-width: 32ch;
}
.pillar__rule {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terra-mid);
  margin-top: 28px;
  transition: width 0.5s var(--ease);
}
.pillar:hover .pillar__rule { width: 64px; }

@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 80px; }
  .manifesto__pillars {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 64px;
  }
  .pillar {
    border-left: 0;
    border-top: 1px solid var(--soft-line);
    padding: 48px 0 !important;
  }
  .pillar:first-child { border-top: 0; padding-top: 32px !important; }
}

/* ============================================ */
/* TIPOLOGIAS                                   */
/* ============================================ */
.tipologias {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.tipologia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.tipologia {
  background: var(--off-white);
  padding: 48px 36px;
  border: 1px solid var(--soft-line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s var(--ease);
}
.tipologia:hover {
  transform: translateY(-4px);
  border-color: var(--terra-mid);
  box-shadow: 0 24px 48px -16px rgba(92, 58, 33, 0.15);
}
.tipologia--featured {
  background: var(--terra-deep);
  color: var(--cream);
  border-color: var(--terra-deep);
}
.tipologia--featured:hover {
  background: var(--charcoal);
}
.tipologia--premium {
  background: var(--off-white);
  border-color: var(--gold);
  position: relative;
}
.tipologia--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terra-mid));
}
.tipologia__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.tipologia__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(92, 58, 33, 0.08);
  color: var(--terra-mid);
}
.tipologia--featured .tipologia__tag {
  background: rgba(245, 235, 224, 0.15);
  color: var(--cream);
}
.tipologia__tag--featured { background: var(--gold) !important; color: var(--cream) !important; }
.tipologia__tag--premium { background: var(--gold); color: var(--cream); }
.tipologia__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--terra-mid);
}
.tipologia--featured .tipologia__num { color: var(--terra-light); }
.tipologia__image {
  display: block;
  margin: -48px -36px 32px -36px; /* sangra para borda do card */
  overflow: hidden;
  background: var(--soft-line);
  position: relative;
}
.tipologia__image img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tipologia:hover .tipologia__image img { transform: scale(1.03); }
.tipologia--premium .tipologia__image { margin-top: -45px; } /* respeita a faixa dourada do ::before */
.tipologia__hero { margin-bottom: 24px; }

/* ============================================ */
/* GALERIA DO DECORADO                          */
/* ============================================ */
.galeria {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.galeria__item {
  margin: 0;
  overflow: hidden;
  background: var(--soft-line);
  position: relative;
  border-radius: 2px;
}
.galeria__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  aspect-ratio: 4 / 3;
}
.galeria__item:hover img { transform: scale(1.04); }
.galeria__item--wide { grid-column: span 6; }
.galeria__item--wide img { aspect-ratio: 16 / 9; }
.galeria__item:nth-of-type(2),
.galeria__item:nth-of-type(3),
.galeria__item:nth-of-type(4) { grid-column: span 2; }
.galeria__note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--terra-mid);
  text-align: center;
  text-transform: uppercase;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .galeria__grid { grid-template-columns: repeat(2, 1fr); }
  .galeria__item--wide { grid-column: span 2; }
  .galeria__item:nth-of-type(2),
  .galeria__item:nth-of-type(3),
  .galeria__item:nth-of-type(4) { grid-column: span 1; }
}
.tipologia__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.tipologia__metric-num {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--terra-deep);
}
.tipologia--featured .tipologia__metric-num { color: var(--cream); }
.tipologia__metric-unit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  color: var(--terra-mid);
}
.tipologia--featured .tipologia__metric-unit { color: var(--terra-light); }
.tipologia__metric-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--terra-mid);
}
.tipologia--featured .tipologia__metric-label { color: var(--terra-light); }
.tipologia__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 32px;
  flex: 1;
}
.tipologia--featured .tipologia__desc { color: rgba(245, 235, 224, 0.85); }
.tipologia__price {
  border-top: 1px solid var(--soft-line);
  padding-top: 20px;
  margin-bottom: 24px;
}
.tipologia--featured .tipologia__price { border-top-color: rgba(245, 235, 224, 0.2); }
.tipologia__price-from {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 4px;
}
.tipologia--featured .tipologia__price-from { color: var(--terra-light); }
.tipologia__price-value {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--terra-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tipologia--featured .tipologia__price-value { color: var(--cream); }
.tipologia__price-detail {
  display: block;
  font-size: 12px;
  color: var(--terra-mid);
  line-height: 1.4;
}
.tipologia--featured .tipologia__price-detail { color: var(--terra-light); }
.tipologia__cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-deep);
  border-bottom: 1px solid var(--terra-deep);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}
.tipologia--featured .tipologia__cta {
  color: var(--cream);
  border-color: var(--cream);
}
.tipologia__cta:hover {
  letter-spacing: 0.12em;
}

.tipologias__footer {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--soft-line);
}
.tipologias__footer p {
  font-size: 13px;
  color: var(--terra-mid);
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 1100px) {
  .tipologia-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================ */
/* LOCALIZAÇÃO                                  */
/* ============================================ */
.localizacao {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.localizacao__map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.localizacao__map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--soft-line);
  background: var(--cream);
  overflow: hidden;
  /* monocromático suave: harmoniza o cromatismo do Google Maps com a paleta */
  filter: saturate(0.85) contrast(0.95);
  transition: filter 0.6s var(--ease);
}
.localizacao__map-frame::after {
  /* fina moldura interna em terra-cota para dar enquadramento editorial */
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(92, 58, 33, 0.18);
  pointer-events: none;
  z-index: 2;
}
.localizacao__map-frame:hover { filter: saturate(1) contrast(1); }
.localizacao__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.localizacao__map-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  gap: 16px;
}
.localizacao__map-coord {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-mid);
}
.localizacao__map-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}
.localizacao__map-link:hover { border-bottom-color: var(--terra-deep); }
@media (max-width: 700px) {
  .localizacao__map-frame { aspect-ratio: 4 / 3; }
}
.localizacao__lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-weight: 300;
}
.localizacao__lead strong {
  color: var(--terra-deep);
  font-weight: 600;
}
.localizacao__list { display: flex; flex-direction: column; gap: 24px; }
.localizacao__list li {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--soft-line);
}
.localizacao__list li:last-child { border-bottom: none; }
.localizacao__list-icon {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--terra-mid);
  font-style: italic;
  line-height: 1;
}
.localizacao__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--terra-deep);
  font-weight: 500;
  margin-bottom: 4px;
}
.localizacao__list span {
  font-size: 14px;
  color: var(--terra-mid);
  font-style: italic;
}

@media (max-width: 900px) {
  .localizacao__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================ */
/* TOUR VIRTUAL 360°                            */
/* ============================================ */
.tour-virtual {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.tour-virtual__frame {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 48px auto 24px;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(92, 58, 33, 0.18);
  background: var(--terra-deep);
}
.tour-virtual__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tour-virtual__note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--terra-mid);
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .tour-virtual__frame { aspect-ratio: 4 / 5; }
}

/* ============================================ */
/* CHEGADA — faixa visual full-bleed (guarita)  */
/* ============================================ */
.chegada {
  position: relative;
  width: 100%;
  background: var(--cream);
}
.chegada__figure {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
.chegada__figure picture,
.chegada__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.chegada__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 24, 18, 0.0) 35%, rgba(31, 24, 18, 0.55) 100%);
  pointer-events: none;
}
.chegada__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 8vw 48px;
  z-index: 2;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.chegada__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 235, 224, 0.78);
}
.chegada__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .chegada__figure { aspect-ratio: 4 / 3; }
  .chegada__caption { padding: 32px 24px 28px; }
}

/* ============================================ */
/* AMENIDADES                                   */
/* ============================================ */
.amenidades {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.amenidades__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.amenidades__col {
  position: relative;
  padding: 56px 48px 64px;
  background: var(--off-white);
  border: 1px solid var(--soft-line);
}
.amenidades__col--featured {
  background: var(--terra-deep);
  color: var(--cream);
  border-color: var(--terra-deep);
}
.amenidades__col::before {
  /* Hairline ornamental no canto sup. esq. (estilo editorial Pentagram) */
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  width: 32px;
  height: 1px;
  background: var(--terra-mid);
}
.amenidades__col--featured::before { background: var(--terra-light); }

.amenidades__col-head { margin-bottom: 48px; }
.amenidades__col-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 16px;
}
.amenidades__col--featured .amenidades__col-kicker { color: var(--terra-light); }
.amenidades__col-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  color: var(--terra-deep);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.amenidades__col-title em { font-style: italic; font-weight: 300; }
.amenidades__col--featured .amenidades__col-title { color: var(--cream); }
.amenidades__col-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--terra-mid);
  font-weight: 300;
}
.amenidades__col--featured .amenidades__col-sub { color: var(--terra-light); }

.amenidades__group { margin-bottom: 32px; }
.amenidades__group:last-child { margin-bottom: 0; }
.amenidades__group-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-line);
}
.amenidades__col--featured .amenidades__group-label {
  color: var(--terra-light);
  border-bottom-color: rgba(245, 235, 224, 0.16);
}

.amenidades__list {
  display: flex;
  flex-direction: column;
}
.amenidades__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--charcoal);
  border-bottom: 1px dotted rgba(92, 58, 33, 0.10);
  transition: padding-left 0.4s var(--ease);
}
.amenidades__list li:last-child { border-bottom: 0; }
.amenidades__list li:hover { padding-left: 6px; }
.amenidades__col--featured .amenidades__list li {
  color: rgba(245, 235, 224, 0.94);
  border-bottom-color: rgba(245, 235, 224, 0.10);
}
.amenidades__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--terra-mid);
}
.amenidades__col--featured .amenidades__num { color: var(--terra-light); }
.amenidades__name { font-weight: 400; }

.amenidades__note {
  text-align: center;
  font-size: 14px;
  color: var(--terra-mid);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .amenidades__grid { grid-template-columns: 1fr; gap: 32px; }
  .amenidades__col { padding: 48px 32px; }
  .amenidades__col-title { font-size: 40px; }
}

/* ============================================ */
/* ATRIA · TIMELINE                             */
/* ============================================ */
.atria {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.atria__intro {
  max-width: 800px;
  margin-bottom: 80px;
}
.atria__intro p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 300;
}
.atria__intro strong { color: var(--terra-deep); font-weight: 600; }

/* ----- Timeline editorial vertical (anos massivos) ----- */
.timeline {
  position: relative;
  margin: 0 auto 96px;
  max-width: 980px;
  padding: 0;
  list-style: none;
}
/* Linha vertical contínua à esquerda — eixo do tempo */
.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 168px;
  width: 1px;
  background: var(--soft-line);
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 168px 32px 1fr;
  align-items: start;
  gap: 0;
  padding: 24px 0;
  transition: background 0.5s var(--ease);
}
.timeline__item + .timeline__item { border-top: 1px solid rgba(92, 58, 33, 0.08); }
.timeline__item:hover { background: rgba(168, 132, 44, 0.035); }

.timeline__year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--terra-deep);
  letter-spacing: -0.02em;
  padding-right: 24px;
  text-align: right;
}
.timeline__item--current .timeline__year { color: var(--terra-mid); }

.timeline__node {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  align-self: center;
  z-index: 1;
}
.timeline__node::before,
.timeline__node::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.timeline__node::before {
  /* anel exterior */
  width: 18px;
  height: 18px;
  border: 1px solid var(--terra-mid);
  background: var(--off-white);
}
.timeline__node::after {
  /* ponto interno */
  width: 6px;
  height: 6px;
  background: var(--terra-mid);
}
.timeline__item--current .timeline__node::before {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(168, 132, 44, 0.14);
}
.timeline__item--current .timeline__node::after {
  width: 6px;
  height: 6px;
  background: var(--cream);
}

.timeline__body {
  padding-left: 32px;
  padding-top: 8px;
}
.timeline__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 10px;
}
.timeline__item--current .timeline__kicker {
  color: var(--gold);
  font-weight: 500;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--terra-deep);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.timeline__title em { font-style: italic; font-weight: 300; color: var(--terra-mid); }
.timeline__item--current .timeline__title em { color: var(--terra-deep); }
.timeline__meta {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 2px;
}
.timeline__loc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--terra-mid);
  margin-top: 4px;
}

.atria__quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}
.atria__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.4;
  color: var(--terra-deep);
  margin-bottom: 16px;
}
.atria__quote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-mid);
  font-style: normal;
}

@media (max-width: 700px) {
  .timeline::before { left: 88px; }
  .timeline__item {
    grid-template-columns: 88px 24px 1fr;
    padding: 20px 0;
  }
  .timeline__year { font-size: 32px; padding-right: 12px; }
  .timeline__node { width: 24px; height: 24px; }
  .timeline__body { padding-left: 20px; }
  .timeline__title { font-size: 20px; }
}

/* ============================================ */
/* PROCESSO                                     */
/* ============================================ */
.processo {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.processo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
  padding: 32px 0 56px;
}
/* Régua editorial de progresso — sob TODA a seção, fora dos numerais.
   Trilho cinza estático + barra de progresso que anima esq→dir.
   Inspirado em editorial layouts (Aman, Apple, partner-level briefings). */
.processo__steps::before {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--soft-line);
  z-index: 1;
}
.processo__steps::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--terra-deep) 0%, var(--terra-mid) 55%, var(--terra-light) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.processo__steps.is-flowing::after { transform: scaleX(1); }

.processo__step {
  position: relative;
  padding: 0 32px 48px 0;
  border-right: 1px solid var(--soft-line);
}
.processo__step:last-child { border-right: 0; }

.processo__step-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 7vw, 104px);
  line-height: 0.9;
  color: var(--terra-light);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  position: relative;
  transition: color 0.6s var(--ease);
}
.processo__step:hover .processo__step-num { color: var(--terra-deep); }
/* Régua individual sob cada numeral — substitui o ponto/seta literal.
   Começa zerada; cresce em sequência conforme a barra de progresso avança. */
.processo__step-num::after {
  content: '';
  position: absolute;
  left: 4px;
  bottom: -14px;
  width: 0;
  height: 1px;
  background: var(--terra-mid);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.processo__steps.is-flowing .processo__step:nth-child(1) .processo__step-num::after { width: 56px; transition-delay: 0.20s; }
.processo__steps.is-flowing .processo__step:nth-child(2) .processo__step-num::after { width: 56px; transition-delay: 0.55s; }
.processo__steps.is-flowing .processo__step:nth-child(3) .processo__step-num::after { width: 56px; transition-delay: 0.90s; }
.processo__steps.is-flowing .processo__step:nth-child(4) .processo__step-num::after { width: 56px; transition-delay: 1.25s; }

.processo__step:hover .processo__step-num::after { width: 80px; }

/* Marcador "Etapa X / 04" no rodapé de cada coluna — referência editorial discreta */
.processo__step-marker {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-light);
  opacity: 0;
  transition: opacity 0.6s var(--ease), color 0.6s var(--ease);
}
.processo__steps.is-flowing .processo__step:nth-child(1) .processo__step-marker { opacity: 1; transition-delay: 0.35s; }
.processo__steps.is-flowing .processo__step:nth-child(2) .processo__step-marker { opacity: 1; transition-delay: 0.70s; }
.processo__steps.is-flowing .processo__step:nth-child(3) .processo__step-marker { opacity: 1; transition-delay: 1.05s; }
.processo__steps.is-flowing .processo__step:nth-child(4) .processo__step-marker { opacity: 1; transition-delay: 1.40s; color: var(--terra-mid); }
.processo__step-body { padding-left: 4px; padding-top: 8px; }
.processo__step-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 12px;
}
.processo__step-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--terra-deep);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.processo__step-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--terra-mid);
}
.processo__step-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 30ch;
}

@media (max-width: 900px) {
  .processo__steps {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 32px 0 0;
  }
  .processo__steps::before,
  .processo__steps::after { display: none; }
  .processo__step {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
    padding: 40px 20px 56px;
  }
  .processo__step:nth-child(odd) { border-right: 1px solid var(--soft-line); }
  .processo__step:nth-last-child(-n+2) { border-bottom: 0; }
  .processo__step-marker { bottom: 24px; }
}
@media (max-width: 500px) {
  .processo__steps { grid-template-columns: 1fr; }
  .processo__step,
  .processo__step:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }
  .processo__step:last-child { border-bottom: 0; }
}

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--soft-line);
  padding: 24px 0;
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--terra-deep);
  list-style: none;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--terra-mid); }
.faq__icon {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--terra-mid);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 760px;
}

/* ============================================ */
/* CONTATO                                      */
/* ============================================ */
.contato {
  padding: var(--section-y) 0;
  background: var(--terra-deep);
  color: var(--cream);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contato .section-eyebrow {
  color: var(--terra-light);
}
.contato .section-eyebrow::before {
  background: var(--terra-light);
}
.contato__title {
  color: var(--cream);
  margin-bottom: 24px;
}
.contato__title em {
  color: var(--terra-light);
}
.contato__intro p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 235, 224, 0.85);
  margin-bottom: 40px;
  max-width: 480px;
}
.contato__direct {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 235, 224, 0.2);
}
.contato__direct-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 12px;
}
.contato__whatsapp {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--cream);
  border-bottom: 1px solid var(--cream);
  padding-bottom: 4px;
  display: inline-block;
  transition: all 0.3s var(--ease);
}
.contato__whatsapp:hover {
  color: var(--terra-light);
  border-bottom-color: var(--terra-light);
  letter-spacing: 0.01em;
}

.contato__form {
  background: var(--off-white);
  padding: 56px 48px;
  color: var(--charcoal);
}
.form__field {
  margin-bottom: 28px;
}
.form__field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 10px;
}
.form__field input,
.form__field select {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--soft-line);
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-bottom-color: var(--terra-deep);
}
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%238B5E3C' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
}
.form__field--checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form__field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form__field--checkbox label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0;
}
.form__field--checkbox a {
  color: var(--terra-deep);
  text-decoration: underline;
}
.form__note {
  font-size: 12px;
  color: var(--terra-mid);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 900px) {
  .contato__grid { grid-template-columns: 1fr; gap: 48px; }
  .contato__form { padding: 40px 32px; }
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(245, 235, 224, 0.85);
  padding: 80px 0 32px;
  font-size: 14px;
  line-height: 1.6;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 235, 224, 0.1);
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col p { margin-bottom: 12px; }
.footer__col strong { color: var(--cream); font-weight: 500; }
.footer__col a { color: var(--terra-light); text-decoration: underline; }
.footer__col a:hover { color: var(--cream); }
.footer__tiny { font-size: 11px; opacity: 0.6; line-height: 1.5; }
.footer__legal {
  padding: 32px 0;
  border-bottom: 1px solid rgba(245, 235, 224, 0.1);
}
.footer__legal p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(245, 235, 224, 0.55);
  font-style: italic;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 11px;
  color: rgba(245, 235, 224, 0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================ */
/* WhatsApp flutuante                           */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s var(--ease);
  animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1FAB54;
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ============================================ */
/* ENTREGA — Recurso próprio + cronograma       */
/* ============================================ */
.entrega {
  padding: var(--section-y) 0;
  background:
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
  position: relative;
}
.entrega::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--terra-mid);
  opacity: 0.4;
}
.entrega__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
  margin-bottom: 64px;
}
.entrega__content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.entrega__lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 28px) !important;
  line-height: 1.4 !important;
  font-weight: 400;
  color: var(--terra-deep) !important;
  margin-bottom: 28px !important;
}
.entrega__lead strong {
  color: var(--terra-deep);
  font-weight: 500;
}
.entrega__content strong {
  color: var(--terra-deep);
  font-weight: 600;
}
.entrega__source {
  font-family: var(--font-mono);
  font-size: 12px !important;
  letter-spacing: 0.02em;
  color: var(--terra-mid);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
  line-height: 1.6 !important;
}
.entrega__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.entrega__stat {
  padding: 32px 28px;
  background: var(--off-white);
  border: 1px solid var(--soft-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.entrega__stat:hover {
  border-color: var(--terra-mid);
  transform: translateX(4px);
}
.entrega__stat--featured {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
}
.entrega__stat--featured:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.entrega__stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--terra-deep);
  letter-spacing: -0.02em;
}
.entrega__stat-sym {
  font-size: 0.55em;
  font-style: italic;
  font-weight: 300;
  color: var(--terra-mid);
  margin-left: 2px;
  vertical-align: top;
  position: relative;
  top: 0.1em;
}
.entrega__stat--featured .entrega__stat-num {
  color: var(--cream);
}
.entrega__stat-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 12px;
}
.entrega__stat--featured .entrega__stat-unit {
  color: var(--terra-light);
}
.entrega__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 400;
}
.entrega__stat--featured .entrega__stat-label {
  color: var(--cream);
  opacity: 0.85;
}
.entrega__disclaimer {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--terra-mid);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--soft-line);
  opacity: 0.85;
}
@media (max-width: 900px) {
  .entrega__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .entrega__stat-num {
    font-size: 44px;
  }
}

/* ============================================ */
/* SCROLL ANIMATIONS                            */
/* ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Print */
@media print {
  .nav, .whatsapp-float, .hero__scroll-hint { display: none; }
}
