/* ============================================================
   ADILANE BRAGA — styles.css v2.0
   Agência DPW by A3F
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Palette */
  --navy:       #0D1B2E;
  --navy-mid:   #152542;
  --steel:      #1E3A5F;
  --steel-light:#2E5480;
  --gold:       #B8912A;
  --gold-light: #D4AA50;
  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --light-gray: #EEEDEa;
  --mid-gray:   #8A8F99;
  --text-dark:  #1A1F2E;
  --text-body:  #3D4454;
  --whatsapp:   #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-head:  'Manrope', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Spacing */
  --section-py: 96px;
  --section-py-sm: 64px;
  --max-w:      1200px;
  --max-w-text: 720px;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Transitions */
  --transition: 0.25s ease;
}

/* ── 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);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Focus visible ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 700; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  max-width: var(--max-w-text);
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--mid-gray);
  max-width: 620px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--steel);
  border: 1.5px solid var(--steel);
}
.btn-outline:hover {
  background: var(--steel);
  color: var(--white);
}

.btn-maps {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-size: 0.8125rem;
  padding: 10px 18px;
}
.btn-maps:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-wa-dark {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-wa-dark:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider-gold {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 24px;
}
.divider-gold::before,
.divider-gold::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
}
.divider-gold span {
  color: var(--gold);
  font-size: 0.6rem;
}


/* Mobile navigation is hidden by default. It is only activated on small screens. */
.mobile-nav {
  display: none;
}

.mobile-nav-close {
  display: none;
}

/* ============================================================
   HEADER
   ============================================================ */
#header-principal {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}

#header-principal.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.header-logo img {
  display: block;
  height: 103px;
  width: auto;
  max-width: 648px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta .btn {
  font-size: 0.875rem;
  padding: 11px 22px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#inicio {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/loteamentos/vila-coqueirais/vila-coqueirais-02-apoio.jpg');
  background-size: cover;
  background-position: 58% 32%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 14, 30, 0.96) 0%,
    rgba(8, 20, 42, 0.80) 40%,
    rgba(10, 24, 50, 0.55) 70%,
    rgba(10, 24, 50, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 80px;
}

.hero-inner {
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.125rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  color: var(--gold-light);
  flex-shrink: 0;
}

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

/* ============================================================
   LOTEAMENTOS
   ============================================================ */
#loteamentos {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

#loteamentos .section-header,
#como-funciona .section-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px 36px;
  align-items: start;
}

#loteamentos .section-eyebrow,
#como-funciona .section-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

#loteamentos .section-header h2,
#como-funciona .section-header h2 {
  margin-bottom: 0;
  max-width: 11.5ch;
}

#loteamentos .section-header p,
#como-funciona .section-header p {
  max-width: none;
  margin: 0;
  align-self: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-loteamento {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.card-loteamento:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-loteamento:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 100%;
}

.card-img-mosaic img:first-child {
  grid-row: span 2;
  height: 100%;
  object-fit: cover;
}

.card-img-mosaic img:not(:first-child) {
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.card-body > p {
  font-size: 0.9375rem;
  color: var(--mid-gray);
  margin-bottom: 20px;
  line-height: 1.65;
}

.card-bullets {
  margin-bottom: 20px;
}

.card-bullets li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--light-gray);
}

.card-bullets li:last-child { border-bottom: none; }

.card-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.card-condition {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.card-actions .btn {
  justify-content: center;
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  padding: 14px 18px;
}

.card-actions .btn svg {
  flex-shrink: 0;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
#como-funciona {
  background: var(--navy);
  padding: var(--section-py) 0;
}

#como-funciona .section-header h2,
#como-funciona .section-eyebrow {
  color: var(--white);
}

#como-funciona .section-header p {
  color: rgba(255,255,255,0.6);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  display: none;
}

/* ============================================================
   POR QUE CONTAR
   ============================================================ */
#por-que-contar {
  background: var(--white);
  padding: var(--section-py) 0;
}

#por-que-contar .section-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px 34px;
  align-items: start;
}

#por-que-contar .section-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

#por-que-contar .section-header h2 {
  margin-bottom: 0;
  max-width: 10.5ch;
}

#por-que-contar .section-header p {
  max-width: none;
  margin: 0;
  align-self: center;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diferencial-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}

.diferencial-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.diferencial-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.diferencial-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.diferencial-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.diferencial-item p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ============================================================
   SOBRE
   ============================================================ */
#sobre {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.sobre-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.sobre-img-main img,
.sobre-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-img-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sobre-text .section-eyebrow {
  display: block;
  margin-bottom: 12px;
}

.sobre-text h2 {
  margin-bottom: 8px;
}

.sobre-text > p {
  margin-bottom: 16px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.sobre-creci {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.sobre-creci svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.sobre-assinatura {
  margin-top: 20px;
  max-width: 220px;
  opacity: 0.85;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
#localizacao {
  background: var(--navy);
  padding: var(--section-py) 0;
}

#localizacao .section-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px 34px;
  align-items: start;
}

#localizacao .section-header h2,
#localizacao .section-eyebrow {
  color: var(--white);
}

#localizacao .section-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

#localizacao .section-header h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

#localizacao .section-header p {
  color: rgba(255,255,255,0.6);
  max-width: none;
  margin: 0;
  align-self: center;
}

.localizacao-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
}

.localizacao-visual {
  position: relative;
  min-width: 0;
}

.localizacao-map-placeholder {
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.map-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  position: absolute;
  inset: 0;
}

.map-label-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-label-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.map-label-overlay p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.map-label-overlay span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}

.localizacao-info {
  min-width: 0;
}

.localizacao-info h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.localizacao-info > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.maps-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  width: 100%;
  min-width: 0;
}

.maps-buttons .btn,
.localizacao-cta {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  line-height: 1.4;
  overflow-wrap: anywhere;
  padding: 14px 18px;
}

.maps-buttons .btn {
  justify-content: flex-start;
  text-align: left;
}

.localizacao-cta {
  justify-content: center;
  text-align: center;
  align-self: stretch;
}


/* ============================================================
   CONDIÇÕES
   ============================================================ */
#condicoes {
  background: var(--white);
  padding: var(--section-py) 0;
}

.condicoes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.condicoes-text h2 {
  margin-bottom: 20px;
}

.condicoes-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 32px;
  color: var(--text-body);
}

.condicoes-nota {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.875rem;
  color: var(--mid-gray);
  border-left: 3px solid var(--gold);
  line-height: 1.6;
}

.condicoes-visual {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light-gray);
}

.condicoes-visual h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.condicoes-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.condicao-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.condicao-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.condicao-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.condicao-item p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
  padding-top: 5px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
#contato {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(184,145,42,0.06);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final-inner .section-eyebrow {
  color: var(--gold-light);
  margin-bottom: 16px;
}

.cta-final-inner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  background: var(--whatsapp);
  color: var(--white);
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cta-final-btn:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transform: translateY(-2px);
}

.cta-final-btn svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#rodape {
  background: var(--navy);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
  align-items: start;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-brand img {
  height: 42px;
  width: auto;
  max-width: 260px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact li a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-contact li a:hover {
  color: var(--gold-light);
}

.footer-contact li svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-links h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-credit a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--gold-light);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.floating-wa.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.floating-wa:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

.floating-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page {
  min-height: 100vh;
  background: var(--off-white);
}

.privacy-header {
  background: var(--navy);
  padding: 32px 0;
}

.privacy-header img {
  height: 44px;
}

.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.privacy-content h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.privacy-date {
  font-size: 0.875rem;
  color: var(--mid-gray);
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}

.privacy-content p, .privacy-content li {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 12px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 40px;
  transition: color var(--transition);
}

.privacy-back:hover { color: var(--navy); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .steps-grid::before { display: none; }
}

@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-images {
    max-width: 480px;
  }

  .condicoes-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #localizacao .section-header {
    display: block;
  }

  #localizacao .section-header h2 {
    max-width: none;
    margin-bottom: 16px;
  }

  #localizacao .section-header p {
    max-width: 620px;
  }

  .localizacao-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 20px;
  }

  .maps-buttons .btn,
  .localizacao-cta {
    font-size: 0.9375rem;
    padding: 14px 16px;
  }

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

  .footer-grid > *:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile nav overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding: 8px 24px;
    letter-spacing: -0.01em;
    text-align: center;
    transition: color var(--transition);
  }

  .mobile-nav a:hover {
    color: var(--gold-light);
  }

  .mobile-nav .btn {
    font-size: 1rem;
    padding: 16px 32px;
    margin-top: 8px;
  }

  .mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
  }

  .hero-ctas {
    flex-direction: column;
  }

  #loteamentos .section-header,
  #como-funciona .section-header,
  #por-que-contar .section-header {
    display: block;
  }

  #loteamentos .section-header h2,
  #como-funciona .section-header h2,
  #por-que-contar .section-header h2 {
    max-width: none;
    margin-bottom: 16px;
  }

  #loteamentos .section-header p,
  #como-funciona .section-header p,
  #por-que-contar .section-header p {
    max-width: 620px;
  }

  #por-que-contar .section-header {
    display: block;
  }

  #por-que-contar .section-header h2 {
    max-width: none;
    margin-bottom: 16px;
  }

  #por-que-contar .section-header p {
    max-width: 620px;
  }

  .hero-ctas .btn {
    justify-content: center;
    text-align: center;
  }

  .card-actions .btn {
    font-size: 0.9375rem;
    padding: 14px 16px;
  }

  .condicao-item {
    gap: 14px;
  }

  .condicao-icon {
    width: 42px;
    height: 42px;
  }

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

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

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

  .footer-grid > *:first-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .floating-wa span {
    display: none;
  }

  .floating-wa {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 56px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .sobre-images {
    grid-template-columns: 1fr;
  }

  .sobre-img-secondary {
    display: none;
  }
}


/* ============================================================
   DPW PATCH v2.0.1 — visual corrections
   ============================================================ */
.mobile-nav:not(.open) {
  display: none !important;
}

.sobre-assinatura {
  display: none !important;
}

#header-principal {
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.72), rgba(13, 27, 46, 0.22) 72%, rgba(13, 27, 46, 0));
}

#header-principal.scrolled {
  background: rgba(13, 27, 46, 0.96);
  backdrop-filter: blur(10px);
}

.footer-brand img {
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .mobile-nav.open {
    display: flex !important;
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-logo img {
    height: 51px;
    max-width: 232px;
  }

  #header-principal {
    padding: 14px 0;
  }
}


/* ============================================================
   V2.0.9 — Desktop section-header rebalance and hero refinement
   ============================================================ */
@media (min-width: 1025px) {
  .hero-bg {
    background-position: 63% 34% !important;
  }

  .hero-inner {
    max-width: 900px !important;
  }

  .hero-headline {
    max-width: 12.5ch;
  }

  .hero-subtitle {
    max-width: 760px;
  }

  #loteamentos .section-header,
  #como-funciona .section-header,
  #por-que-contar .section-header,
  #localizacao .section-header {
    max-width: none !important;
    display: grid !important;
    align-items: start;
    column-gap: 32px;
    row-gap: 12px;
  }

  #loteamentos .section-header,
  #como-funciona .section-header {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr) !important;
  }

  #por-que-contar .section-header,
  #localizacao .section-header {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  }

  #loteamentos .section-header .section-eyebrow,
  #como-funciona .section-header .section-eyebrow,
  #por-que-contar .section-header .section-eyebrow,
  #localizacao .section-header .section-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  #loteamentos .section-header h2,
  #como-funciona .section-header h2,
  #por-que-contar .section-header h2,
  #localizacao .section-header h2 {
    max-width: none !important;
    margin-bottom: 0 !important;
    text-wrap: balance;
  }

  #loteamentos .section-header p,
  #como-funciona .section-header p,
  #por-que-contar .section-header p,
  #localizacao .section-header p {
    max-width: none !important;
    margin: 0 !important;
    align-self: center;
  }
}

@media (max-width: 1024px) {
  #loteamentos .section-header,
  #como-funciona .section-header,
  #por-que-contar .section-header,
  #localizacao .section-header {
    display: block !important;
  }

  #loteamentos .section-header h2,
  #como-funciona .section-header h2,
  #por-que-contar .section-header h2,
  #localizacao .section-header h2 {
    max-width: none !important;
    margin-bottom: 16px !important;
  }

  #loteamentos .section-header p,
  #como-funciona .section-header p,
  #por-que-contar .section-header p,
  #localizacao .section-header p {
    max-width: 700px !important;
  }
}


/* ============================================================
   V2.0.10 — Hero desktop rebalance
   Correção: reduzir vazio lateral no Hero desktop e melhorar ocupação horizontal.
   ============================================================ */
@media (min-width: 1025px) {
  .hero-content {
    padding: 150px 0 76px;
  }

  .hero-inner {
    max-width: 1040px !important;
  }

  .hero-headline {
    max-width: 980px !important;
    font-size: clamp(3.15rem, 5.15vw, 5.05rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  .hero-subtitle {
    max-width: 920px !important;
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  }

  .hero-bg {
    background-position: 62% 34% !important;
  }

  .trust-badges {
    max-width: 920px;
  }

  .hero-ctas {
    max-width: 920px;
  }
}

@media (min-width: 1280px) {
  .hero-inner {
    max-width: 1120px !important;
  }

  .hero-headline {
    max-width: 1080px !important;
  }

  .hero-subtitle {
    max-width: 980px !important;
  }
}
