/* =========================================================================
   Condomínio Vila Mar — Sistema de Design
   Uma identidade sofisticada, litorânea e confiável para uma incorporadora.
   Paleta: petróleo/oceano + areia/champagne + off-white quente.
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Marca — mar profundo (petróleo) */
  --sea-900: #082a33;
  --sea-800: #0c3540;
  --sea-700: #0f4553;
  --sea-600: #145766;
  --sea-500: #1c6f7f;
  --sea-100: #d4e4e6;
  --sea-050: #eef5f5;

  /* Areia / champagne / dourado */
  --gold-700: #9a7738;
  --gold-600: #b48f4e;
  --gold-500: #c6a368;
  --gold-400: #d8bd8c;
  --gold-100: #efe4cf;
  --gold-050: #f8f1e4;

  /* Neutros quentes */
  --ink: #16292c;          /* texto principal */
  --ink-soft: #435457;     /* texto secundário */
  --ink-faint: #6d7d7e;    /* texto suave */
  --line: #e3ddcf;         /* bordas */
  --line-soft: #ede8dd;
  --bg: #ffffff;
  --bg-alt: #f7f4ee;
  --bg-cream: #faf5ec;
  --bg-deep: #0c3540;

  --white: #ffffff;

  /* Efeitos */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(8, 42, 51, 0.06);
  --shadow: 0 14px 34px -14px rgba(8, 42, 51, 0.22);
  --shadow-lg: 0 34px 70px -28px rgba(8, 42, 51, 0.45);

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
}

/* ---- Reset / base ----------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 17px base */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--sea-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Respeita reduce-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---- Layout helpers --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--cream { background: var(--bg-cream); }
.section--deep { background: var(--bg-deep); color: #dbeaea; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section--deep .eyebrow { color: var(--gold-400); }

.section-head { max-width: 740px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.3rem; }

.lead { font-size: 1.2rem; color: var(--ink-soft); }
.section--deep .lead { color: #b9d2d2; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sea-700);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 300;
}
.skip-link:focus { left: 0; }

/* ---- Badge / status --------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-800);
  background: var(--gold-100);
  border: 1px solid var(--gold-400);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(198, 163, 104, 0.3);
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--sea-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 20px; height: 20px; }

.btn--accent { --btn-bg: var(--gold-600); --btn-fg: #241a08; }
.btn--accent:hover { background: var(--gold-500); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--sea-800);
  border-color: var(--sea-100);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--sea-050); box-shadow: none; }

.btn--white { --btn-bg:#fff; --btn-fg: var(--sea-800); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- Header ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar {
  background: var(--sea-800);
  color: #dcefef;
  font-size: 0.88rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .topbar__group { display: flex; flex-wrap: wrap; gap: 0.25rem 1.5rem; align-items: center; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar svg { width: 16px; height: 16px; color: var(--gold-400); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.8rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 48px; height: 48px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.nav__links a:hover { color: var(--sea-700); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav__toggle svg { width: 26px; height: 26px; color: var(--sea-800); }

/* ---- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 520px at 82% -12%, var(--sea-050), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.75rem, 6vw, 5rem);
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--sea-700); font-style: italic; }
.hero__lead { font-size: 1.22rem; color: var(--ink-soft); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.9rem 0 1.6rem; }
.hero__reassure {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  font-weight: 600; color: var(--ink-soft); font-size: 0.96rem;
}
.hero__reassure span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__reassure svg { width: 20px; height: 20px; color: var(--sea-600); flex:none; }

.hero__art { position: relative; }
.hero__card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero__card svg { width: 34px; height: 34px; }
.hero__card--tl { top: 7%; left: -4%; }
.hero__card--br { bottom: 6%; right: -3%; }
.hero__card small { display:block; font-weight: 600; color: var(--ink-faint); font-size: 0.78rem; }
.hero__caption {
  text-align: center; font-size: 0.78rem; color: var(--ink-faint);
  margin-top: 0.75rem; font-style: italic;
}

/* ---- Trust strip ------------------------------------------------------ */
.trust {
  background: var(--sea-800);
  color: #dbeaea;
}
.trust .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: 2.25rem;
}
.trust__item { display: flex; gap: 0.85rem; align-items: flex-start; }
.trust__item svg { width: 32px; height: 32px; color: var(--gold-400); flex: none; }
.trust__item strong { display: block; font-size: 1.02rem; font-family: var(--font-display); font-weight: 500; color: #fff; }
.trust__item span { font-size: 0.9rem; color: #a9c9c9; }

/* ---- Cards / grids ---------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--sea-050);
  color: var(--sea-700);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: 1rem; }
.card--gold .card__icon { background: var(--gold-050); color: var(--gold-700); }

/* ---- Sobre / incorporadora -------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__art { position: relative; }
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; }
.stat b {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--sea-700);
  display: block;
  line-height: 1.1;
}
.stat span { font-size: 0.9rem; color: var(--ink-faint); font-weight: 600; }

.checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 500; color: var(--ink-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--sea-600); flex: none; margin-top: 2px; }

/* ---- Diferenciais / feature split ------------------------------------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-list { display: grid; gap: 1.25rem; }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; align-items: start; }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-050); color: var(--gold-700);
  display: grid; place-items: center;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.1rem; margin-bottom: 0.15rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---- Lazer (amenity grid) --------------------------------------------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.amenity {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.amenity svg { width: 34px; height: 34px; color: var(--sea-600); margin: 0 auto 0.7rem; }
.amenity span { font-weight: 700; font-size: 0.98rem; color: var(--ink); }

/* ---- Plantas / tipologias --------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.plan {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan__art { background: var(--sea-050); padding: 1.5rem; border-bottom: 1px solid var(--line-soft); }
.plan__art svg { width: 100%; height: auto; }
.plan__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.plan__body h3 { margin-bottom: 0.3rem; }
.plan__tag { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-700); }
.plan__specs { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.55rem; }
.plan__specs li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; border-bottom: 1px dashed var(--line); padding-bottom: 0.5rem; color: var(--ink-soft); }
.plan__specs li:last-child { border-bottom: none; }
.plan__specs b { color: var(--ink); font-weight: 700; }

/* ---- Localização ------------------------------------------------------ */
.loc__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.loc__map {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft);
  box-shadow: var(--shadow); background: var(--sea-050);
}
.loc__map svg { width: 100%; height: auto; display: block; }
.poi { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.7rem; }
.poi li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.poi svg { width: 22px; height: 22px; color: var(--gold-600); flex: none; margin-top: 2px; }

/* ---- Galeria / perspectivas ------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--sea-050); position: relative; }
.gallery svg { width: 100%; height: auto; display: block; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(8,42,51,0.72));
  color: #fff; font-size: 0.78rem; padding: 1.4rem 0.9rem 0.7rem; font-style: italic;
}
.gallery figure:first-child { grid-column: span 2; }

/* ---- Band / CTA intermediária ----------------------------------------- */
.band {
  background: linear-gradient(120deg, var(--sea-800), var(--sea-600));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(198,163,104,0.35), transparent 70%);
}
.band h2 { color: #fff; position: relative; }
.band p { color: #cfe6e6; margin: 0; font-size: 1.1rem; position: relative; }
.band__actions { display: flex; flex-direction: column; gap: 0.8rem; position: relative; }

/* ---- Contato ---------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact__cards { display: grid; gap: 1rem; }
.contact-card {
  display: grid; grid-template-columns: 52px 1fr; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
}
.contact-card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--sea-050);
  color: var(--sea-700); display: grid; place-items: center;
}
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card h4 { margin: 0 0 0.15rem; font-family: var(--font-body); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }
.contact-card a, .contact-card p { margin: 0; font-size: 1.08rem; font-weight: 700; color: var(--ink); }
.contact-card a:hover { color: var(--sea-700); }
.contact-card .muted { font-weight: 500; font-size: 0.92rem; color: var(--ink-soft); }

.form-card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sea-500); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1rem;
}
.consent input { margin-top: 0.25rem; width: 18px; height: 18px; flex: none; accent-color: var(--sea-700); }
.consent label { font-weight: 500; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin: 0.5rem 0 0; }
.form-status { margin-top: 0.75rem; font-weight: 700; }

/* ---- Horários / listas ------------------------------------------------ */
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; border-bottom: 1px dashed var(--line); }
.hours-list li:last-child { border-bottom: none; }
.hours-list b { color: var(--ink); font-weight: 800; }
.hours-list span { color: var(--ink-soft); font-weight: 600; }

/* ---- FAQ -------------------------------------------------------------- */
.faq { display: grid; gap: 1rem; max-width: 840px; margin-inline: auto; }
details.qa {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 0.25rem 1.4rem;
}
details.qa summary {
  cursor: pointer; list-style: none; font-family: var(--font-display);
  font-weight: 500; font-size: 1.12rem; padding: 1.1rem 0; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 800; font-size: 1.5rem;
  color: var(--gold-600); transition: transform 0.2s ease;
}
details.qa[open] summary::after { content: "–"; }
details.qa p { color: var(--ink-soft); margin: 0 0 1.1rem; }

/* ---- CTA banner ------------------------------------------------------- */
.cta {
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 0%, var(--gold-050), transparent 70%),
    var(--bg-cream);
}
.cta h2 { max-width: 20ch; margin-inline: auto; }
.cta p { max-width: 56ch; margin: 0 auto 1.75rem; font-size: 1.15rem; color: var(--ink-soft); }
.cta__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: var(--sea-900); color: #bcd6d6; padding-top: 3.5rem; }
.site-footer a { color: #e6f2f2; }
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: var(--gold-400); }
.footer__brand p { color: #96b8b8; margin-top: 1rem; max-width: 32ch; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; color: #bcd6d6; }
.footer__contact svg { width: 20px; height: 20px; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.86rem; color: #8bb0b0;
}
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* Bloco de informações legais (repetido em todas as páginas) */
.legal-block {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0 2.25rem;
  font-size: 0.8rem; color: #7ba3a3; line-height: 1.65; max-width: 100ch;
}
.legal-block strong { color: #a9c9c9; }
.legal-block p { margin: 0 0 0.6rem; }

/* ---- Páginas de conteúdo / legais ------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--sea-050), #fff);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.page-hero .crumb { font-weight: 700; color: var(--gold-700); font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; }
.legal { max-width: 840px; margin-inline: auto; }
.legal h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.legal h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 800; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 1.2rem; display: grid; gap: 0.4rem; }
.legal a { font-weight: 700; }
.legal .updated { color: var(--ink-faint); font-weight: 700; font-size: 0.95rem; }
.legal .callout {
  background: var(--gold-050); border: 1px solid var(--gold-100);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
  color: var(--ink-soft);
}

/* ---- Cookie banner ---------------------------------------------------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 250;
  max-width: 720px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.3rem;
  display: none;
  gap: 1rem; align-items: center; flex-wrap: wrap;
}
.cookie[data-show="true"] { display: flex; }
.cookie p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); flex: 1 1 300px; }
.cookie a { font-weight: 700; }
.cookie__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie .btn { padding: 0.7rem 1.2rem; font-size: 0.92rem; }

/* ---- WhatsApp / botão flutuante --------------------------------------- */
.float-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--gold-600); color: #241a08;
  font-weight: 800; font-size: 0.95rem;
  padding: 0.85rem 1.3rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.float-cta:hover { transform: translateY(-3px); text-decoration: none; }
.float-cta svg { width: 22px; height: 22px; }

/* ---- Responsivo ------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 480px; margin-inline: auto; }
  .hero__card--tl { left: 2%; }
  .hero__card--br { right: 2%; }
  .about__grid, .feature-split, .contact__grid, .band, .loc__grid { grid-template-columns: 1fr; }
  .band { text-align: left; }
  .trust .container { grid-template-columns: repeat(2, 1fr); }
  .grid--4, .amenities { grid-template-columns: repeat(2, 1fr); }
  .plans, .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:first-child { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--nav { display: none; }
  .nav__toggle { display: inline-flex; }
  .site-header:has(.nav[data-open="true"]) .nav__mobile { display: block; }
  .grid--3, .grid--2, .plans, .amenities, .gallery { grid-template-columns: 1fr; }
  .gallery figure:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .float-cta span { display: none; }
  .float-cta { padding: 0.9rem; }
}

/* Painel de navegação mobile */
.nav__mobile {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  padding: 1rem 24px 1.5rem;
}
.nav__mobile a {
  display: block; padding: 0.7rem 0; font-weight: 700; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile .btn { margin-top: 1rem; }
