/* ============================================================
   UNI RESIDENCIAL — LP de pré-lançamento
   Tokens: ver bloco :root. Paleta extraída da identidade do
   empreendimento (capa do material + logotipo "uni").
   ============================================================ */

:root {
  /* cor */
  --ink: #0B0917;
  --plum: #241248;
  --plum-soft: #3a1f5e;
  --pink: #ff2e73;
  --pink-soft: #ff5f96;
  --violet: #8c3fb0;
  --paper: #fbf6f2;
  --paper-dim: #f1e9e4;
  --paper-line: #e4d9d2;
  --moss: #3f8a55;
  --moss-soft: #e8f3ea;
  --text-dark: #170f2e;
  --text-soft: #5e5670;
  --text-onDark: #f3eefa;
  --text-onDark-soft: #c6bce0;

  /* tipografia */
  --f-display: "General Sans", "Inter", sans-serif;
  --f-body: "Inter", sans-serif;
  --f-mono: "JetBrains Mono", monospace;

  /* layout */
  --maxw: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 60px -20px rgba(11, 9, 23, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--text-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.section { padding: 88px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 10px; }
.section-head p { color: var(--text-soft); font-size: 17px; margin-top: 14px; }

/* ---------- signature loop motif ---------- */
.loop-mark { display: block; flex-shrink: 0; }
.loop-divider {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  opacity: 0.55;
}
.loop-divider svg { width: 84px; height: 20px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  color: white;
  box-shadow: 0 14px 30px -10px rgba(255, 46, 115, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 36px -10px rgba(255, 46, 115, 0.7); }
.btn-whatsapp {
  background: #1ea952;
  color: white;
  box-shadow: 0 14px 30px -10px rgba(30, 169, 82, 0.5);
}
.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: white;
  box-shadow: 0 14px 30px -10px rgba(220, 39, 67, 0.4);
}
.btn-instagram:hover { opacity: 0.92; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-onDark);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled {
  background: rgba(11, 9, 23, 0.86);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 18px; font-size: 14px; }
.header-cta .btn span.short { display: none; }
@media (max-width: 560px) {
  .header-cta .btn span.long { display: none; }
  .header-cta .btn span.short { display: inline; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--ink) 0%, var(--plum) 55%, var(--plum-soft) 100%);
  color: var(--text-onDark);
  min-height: 800px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 58%;
}
.hero-bg .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,23,0.6) 0%, rgba(11,9,23,0) 22%, rgba(11,9,23,0) 66%, rgba(11,9,23,0.7) 100%),
    linear-gradient(108deg, rgba(11,9,23,0.94) 0%, rgba(36,18,72,0.74) 34%, rgba(140,63,176,0.26) 58%, rgba(11,9,23,0.08) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 150px;
  padding-bottom: 70px;
}
.hero-glass {
  position: relative;
  max-width: 600px;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 46, 115, 0.18), rgba(140, 63, 176, 0.22)),
    rgba(11, 9, 23, 0.4);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 30px 80px -28px rgba(0, 0, 0, 0.55);
}
.hero-copy { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 14px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(255,46,115,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,46,115,.55)} 70%{box-shadow:0 0 0 8px rgba(255,46,115,0)} 100%{box-shadow:0 0 0 0 rgba(255,46,115,0)} }

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 700;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-onDark-soft);
  max-width: 480px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-microcopy { margin-top: 14px; font-size: 13px; color: var(--text-onDark-soft); font-family: var(--f-mono); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 22px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-fact b { display: block; font-family: var(--f-display); font-size: 19px; font-weight: 600; }
.hero-fact span { font-size: 12.5px; color: var(--text-onDard-soft, var(--text-onDark-soft)); }

@media (max-width: 940px) {
  .hero { min-height: 0; }
  .hero-grid { padding-top: 120px; padding-bottom: 56px; }
  .hero-bg img { object-position: 68% 38%; }
  .hero-glass { max-width: none; padding: 30px 24px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- trust strip ---------- */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 30px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-onDark-soft);
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.trust-row img { height: 26px; width: auto; filter: grayscale(1) brightness(2.4); opacity: 0.85; }
.trust-row .sep { opacity: 0.3; }

/* ---------- value / mechanism ---------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.value-grid .copy p { font-size: 17px; color: var(--text-soft); margin: 0 0 16px; }
.value-grid .copy p strong { color: var(--text-dark); }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card {
  background: white;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}
.stat-card b { font-family: var(--f-display); font-size: 28px; display: block; }
.stat-card span { font-size: 13px; color: var(--text-soft); }
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- dor/solucao ---------- */
.pain-solve {
  background: var(--paper-dim);
}
.pain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pain-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: white; border-radius: var(--radius-sm); padding: 14px 16px;
  border: 1px solid var(--paper-line);
  font-size: 15.5px;
}
.pain-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--pink); width: 18px; height: 18px; }
.solve-card {
  background: linear-gradient(150deg, var(--ink), var(--plum));
  color: var(--text-onDark);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin-top: 32px;
}
.solve-card h3 { font-size: 24px; margin-bottom: 12px; }
.solve-card p { color: var(--text-onDark-soft); font-size: 16px; max-width: auto; }

/* ---------- beneficios ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit-card {
  background: white;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 26px 20px;
}
.benefit-card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--moss-soft); color: var(--moss);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-soft); margin: 0; }
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- autoridade ---------- */
.authority {
  background: linear-gradient(160deg, var(--ink), var(--plum) 70%);
  color: var(--text-onDark);
  position: relative;
}
.authority-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.authority-photo { position: relative; }
.authority-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.authority-photo .tag {
  position: absolute; bottom: -18px; left: 24px;
  background: white; color: var(--text-dark);
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-family: var(--f-mono); font-size: 12.5px;
  box-shadow: var(--shadow-soft);
}
.authority .section-head p { color: var(--text-onDark-soft); }
.authority .section-head h2 { color: var(--text-onDark); }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.person-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
}
.person-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 14px; }
.person-card b { display: block; font-size: 15px; }
.person-card span { font-size: 13px; color: var(--text-onDark-soft); }
@media (max-width: 940px) { .authority-grid { grid-template-columns: 1fr; } .people-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .people-grid { grid-template-columns: 1fr; } }

/* ---------- plantas ---------- */
.plans-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.plan-tab {
  border: 1px solid var(--paper-line);
  background: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-soft);
  transition: all 0.18s ease;
}
.plan-tab.active { background: var(--ink); color: white; border-color: var(--ink); }
.plan-panels { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.plan-panel { display: none; }
.plan-panel.active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; grid-column: 1 / -1; }
.plan-panel img { border-radius: var(--radius-md); border: 1px solid var(--paper-line); }
.plan-specs { display: grid; gap: 10px; }
.plan-specs .area { font-family: var(--f-mono); font-size: 32px; }
.plan-specs ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.plan-specs ul li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--text-soft); }
.plan-specs ul li svg { width: 16px; height: 16px; color: var(--moss); flex-shrink: 0; }
@media (max-width: 820px) {
  .plan-panel.active { grid-template-columns: 1fr; }
}

/* ---------- lazer ---------- */
.leisure { background: var(--paper-dim); }
.leisure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.leisure-img { position: relative; }
.leisure-img img { border-radius: var(--radius-lg); }
.leisure-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.leisure-tags span {
  background: white; border: 1px solid var(--paper-line);
  padding: 7px 13px; border-radius: 100px; font-size: 13px; color: var(--text-soft);
}
@media (max-width: 880px) { .leisure-grid { grid-template-columns: 1fr; } }

/* ---------- mini-cta strip ---------- */
.mini-cta-wrap {
  padding: 32px 0;
  border-top: 1px solid var(--paper-line);
}
.mini-cta-wrap.on-dark {
  border-top-color: rgba(255,255,255,0.12);
  background: var(--ink);
}
.mini-cta-wrap.on-dim {
  background: var(--paper-dim);
  border-top-color: var(--paper-line);
}
.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mini-cta p {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.mini-cta p span {
  color: var(--text-soft);
  font-weight: 400;
  display: block;
  font-size: 13.5px;
  margin-top: 3px;
}
.mini-cta-wrap.on-dark .mini-cta p { color: var(--text-onDark); }
.mini-cta-wrap.on-dark .mini-cta p span { color: var(--text-onDark-soft); }
.mini-cta .btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.mini-cta .btns .btn { padding: 12px 20px; font-size: 14px; }
@media (max-width: 640px) {
  .mini-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- galeria ---------- */
.gallery { background: var(--ink); }
.gallery .section-head h2 { color: var(--text-onDark); }
.gallery .section-head p { color: var(--text-onDark-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 16 / 10;
  background: var(--plum);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(0deg, rgba(11,9,23,0.85), transparent);
  color: white;
  font-size: 13px;
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover .caption { opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11, 9, 23, 0.95);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  font-size: 20px; line-height: 40px; text-align: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 22px; line-height: 48px; text-align: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- localização ---------- */
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-caption { margin-top: 14px; font-size: 13px; color: var(--text-soft); }
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }

/* ---------- diferenciais sustentaveis ---------- */
.sustain { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.sustain-img img { border-radius: var(--radius-lg); }
.sustain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.sustain-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; }
.sustain-list li svg { color: var(--moss); flex-shrink: 0; margin-top: 3px; width: 20px; height: 20px; }
@media (max-width: 880px) { .sustain { grid-template-columns: 1fr; } }

/* ---------- ficha tecnica ---------- */
.specs { background: var(--ink); color: var(--text-onDark); }
.specs .section-head h2 { color: var(--text-onDark); }
.specs .section-head p { color: var(--text-onDark-soft); }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border-radius: var(--radius-md); overflow: hidden; }
.spec-cell { background: rgba(255,255,255,0.04); padding: 26px 20px; }
.spec-cell b { display: block; font-family: var(--f-mono); font-size: 24px; }
.spec-cell span { font-size: 13px; color: var(--text-onDark-soft); }
@media (max-width: 880px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- oferta ---------- */
.offer-card {
  background: white;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.offer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.offer-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.offer-list li svg { color: var(--pink); flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }
.offer-note {
  margin-top: 20px; font-size: 13px; color: var(--text-soft);
  font-family: var(--f-mono); background: var(--paper-dim); padding: 12px 14px; border-radius: var(--radius-sm);
}
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } .offer-card { padding: 26px; } }

/* ---------- objeções ---------- */
.objections { display: grid; gap: 14px; }
.objection {
  background: white; border: 1px solid var(--paper-line); border-radius: var(--radius-md);
  padding: 20px 22px;
}
.objection .q { font-weight: 600; font-size: 15.5px; margin-bottom: 8px; display:flex; gap:8px; }
.objection .a { font-size: 15px; color: var(--text-soft); margin: 0; }

/* ---------- faq ---------- */
.faq-item { border-bottom: 1px solid var(--paper-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; font-family: var(--f-body); color: var(--text-dark);
}
.faq-q svg { transition: transform 0.25s ease; flex-shrink: 0; color: var(--pink); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { font-size: 15px; color: var(--text-soft); padding-bottom: 18px; margin: 0; max-width: 680px; }

/* ---------- form ---------- */
.form-section { background: linear-gradient(160deg, var(--ink), var(--plum)); color: var(--text-onDark); }
.form-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: start; }
.form-grid .section-head h2 { color: var(--text-onDark); }
.form-grid .section-head p { color: var(--text-onDark-soft); }
.form-card {
  background: white; color: var(--text-dark);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-soft); }
.field input {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--paper-line); font-size: 15px; font-family: var(--f-body);
  background: var(--paper);
}
.field input:focus { outline: 2px solid var(--violet); outline-offset: 1px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-soft); margin: 14px 0 20px; }
.consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
.consent a { text-decoration: underline; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-msg { margin-top: 14px; font-size: 14px; display: none; padding: 12px 14px; border-radius: var(--radius-sm); }
.form-msg.show { display: block; }
.form-msg.ok { background: var(--moss-soft); color: #1f5b30; }
.form-msg.err { background: #fde3e3; color: #8a1f1f; }
.divider-or { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--text-onDark-soft); font-family: var(--f-mono); font-size: 12px; }
.divider-or::before, .divider-or::after { content: ""; height: 1px; background: rgba(255,255,255,0.18); flex: 1; }
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 24px; } }

/* ---------- final cta ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(26px, 4vw, 36px); max-width: 680px; margin: 0 auto; }
.final-cta p.ps { max-width: 560px; margin: 18px auto 28px; color: var(--text-soft); font-size: 15px; }
.final-cta .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer { background: var(--ink); color: var(--text-onDark-soft); padding: 48px 0 110px; font-size: 13px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 26px; }
.footer-top img { height: 28px; }
.footer-legal { line-height: 1.7; max-width: 880px; opacity: 0.75; }
.footer-bottom { margin-top: 26px; opacity: 0.6; }

/* ---------- sticky whatsapp ---------- */
.sticky-whatsapp {
  position: fixed; bottom: 20px; right: 20px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
}
.sticky-whatsapp .btn { box-shadow: 0 16px 34px -10px rgba(30,169,82,0.6); }
@media (max-width: 560px) {
  .sticky-whatsapp { right: 14px; bottom: 14px; }
  .sticky-whatsapp .btn span { display: none; }
  .sticky-whatsapp .btn { padding: 16px; border-radius: 50%; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }
.mono { font-family: var(--f-mono); }
.center { text-align: center; }
