/* cidade/city.css — Stile condiviso per tutte le pagine città */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:  #FAFAF8;
  --white:  #FFFFFF;
  --black:  #1C1C1E;
  --gold:   #B09A7A;
  --navy:   #1A2B4A;
  --border: #E8E4DE;
  --text:   #3D3D3F;
  --muted:  #8A8A8E;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── Masthead (sticky, replaces top-bar) ─────────────────── */
.masthead {
  background: var(--black);
  height: 52px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.masthead-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ── Floating hamburger button ───────────────────────────── */
.city-float-btn {
  position: fixed;
  top: 148px;
  left: 16px;
  z-index: 250;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  color: var(--navy, #1A2B4A);
  transition: box-shadow 150ms, transform 150ms;
}
.city-float-btn:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.30);
  transform: translateY(-1px);
}
.masthead-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: #FFF;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.masthead-logo span { color: var(--gold); }
.masthead-back {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 150ms;
  text-align: right;
}
.masthead-back:hover { opacity: 0.7; }

/* ── Language selector ───────────────────────────────────── */
.masthead-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.masthead-lang { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  padding: 3px 6px;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: color 150ms, border-color 150ms;
}
.lang-btn:hover { color: #fff; }
.lang-btn--active { color: var(--gold); border-color: rgba(196,160,80,.4); }

/* ── City Sidebar ────────────────────────────────────────── */
.city-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 400;
  backdrop-filter: blur(2px);
}
.city-overlay.show { display: block; }
.city-sidebar {
  position: fixed;
  top: 0; left: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #e8e4de;
  z-index: 500;
  transition: left 280ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.city-sidebar.open { left: 0; }
.city-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e8e4de;
  flex-shrink: 0;
}
.city-sidebar-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.2;
}
.city-sidebar-logo span { color: var(--gold, #B09A7A); }
.city-sidebar-close {
  background: none;
  border: none;
  color: #999;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 150ms, background 150ms;
}
.city-sidebar-close:hover { color: #1a1a1a; background: #f2efe9; }
.city-sidebar-city {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #B09A7A);
  padding: 16px 24px 4px;
  pointer-events: none;
}
.city-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  color: #8a8a8e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: all 140ms;
}
.city-sidebar-link:hover {
  color: #1a1a1a;
  background: #f2efe9;
  border-left-color: var(--gold, #B09A7A);
}
.city-sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 140ms;
}
.city-sidebar-link:hover .city-sidebar-icon { opacity: 1; }
.city-sidebar-divider {
  height: 1px;
  background: #e8e4de;
  margin: 10px 24px;
}
.city-sidebar-footer-link {
  display: block;
  padding: 10px 24px;
  color: #999;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: color 150ms;
}
.city-sidebar-footer-link:hover { color: #1a1a1a; }
@media (max-width: 600px) {
  .masthead { padding: 0 16px; height: 48px; }
  .masthead-date { visibility: hidden; }
  .masthead-right { gap: 8px; justify-content: flex-end; padding-right: 28px; }
  .masthead-back {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    letter-spacing: 0;
  }
  .masthead-back::before {
    content: "←";
    font-size: 14px;
    font-weight: 400;
    color: var(--gold);
    display: inline;
  }
}

/* ── Desktop: sidebar sempre visível ─────────────────────── */
@media (min-width: 901px) {
  /* Esconde o botão flutuante e o overlay */
  .city-float-btn { display: none; }
  .city-overlay   { display: none !important; }

  /* Sidebar fixa à esquerda, abaixo do masthead */
  .city-sidebar {
    left: 0;
    top: 52px;
    height: calc(100vh - 52px);
    box-shadow: 1px 0 0 rgba(0,0,0,.10);
    transition: none;
  }

  /* Conteúdo principal deslocado para a direita */
  .city-main { margin-left: 280px; }
}

/* ── City ticker bar ─────────────────────────────────────── */
.ct-ticker-wrap {
  background: #EFECE7;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
#ct-ticker {
  overflow: hidden;
  flex: 1;
  cursor: grab;
  user-select: none;
}
#ct-ticker.tc-dragging { cursor: grabbing; }
#ct-ticker-inner {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
/* Reuse portal ticker-item styles on city pages */
#ct-ticker-inner .ticker-item {
  padding-right: 52px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#ct-ticker-inner a.ticker-item:hover { opacity: .72; }
#ct-ticker-inner .tk-city  { color: var(--black); font-weight: 600; }
#ct-ticker-inner .tk-temp  { color: var(--navy);  font-weight: 700; }
#ct-ticker-inner .tk-sep   { color: var(--muted); font-size: 10px; }
#ct-ticker-inner .tk-label { color: var(--navy);  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 10px; }
#ct-ticker-inner .tk-val   { color: var(--black); font-weight: 600; }

/* ── Anchors navigation bar ──────────────────────────────── */
.anchors-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  position: sticky;
  top: 92px; /* masthead(52) + util-bar(40) */
  z-index: 150;
}
.anchors-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.anchors-inner::-webkit-scrollbar { display: none; }
.anchor-pill {
  flex-shrink: 0;
  padding: 13px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.anchor-pill:hover { color: var(--navy); }
.anchor-pill.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Section anchor offset (masthead 52 + util-bar 40 + breathing 24) ── */
.section-block {
  scroll-margin-top: 116px;
}

/* ── Utility bar (sticky under masthead) ─────────────────── */
.util-bar {
  background: var(--navy);
  position: sticky;
  top: 52px;           /* masthead height */
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.util-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  height: 40px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: color 150ms, background 150ms;
}
.util-link:first-child { border-left: 1px solid rgba(255,255,255,.07); }
.util-link:hover {
  color: var(--gold);
  background: rgba(255,255,255,.04);
}
.util-icon { display: flex; align-items: center; flex-shrink: 0; }
.util-icon svg { width: 13px; height: 13px; stroke: currentColor; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 56px 48px 44px;
  max-width: 1040px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero-city {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.hero-province {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 18px;
  color: var(--text);
  max-width: 580px;
  line-height: 1.72;
  font-weight: 300;
}

/* ── Stats strip ─────────────────────────────────────────── */
.stats-strip {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  gap: 56px;
  border-bottom: 1px solid var(--border);
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.stat-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: var(--black);
}

/* ── Content grid ────────────────────────────────────────── */
.content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.content-block h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 14px;
  font-weight: 700;
}
.content-block p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.content-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 150ms, border-color 150ms;
}
.content-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Live meteo widget ───────────────────────────────────── */
.live-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 28px;
}
.live-widget-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.live-temp {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.live-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.live-divider { height: 1px; background: var(--border); margin: 20px 0; }
.live-cta { font-size: 13px; color: var(--text); line-height: 1.6; }
.live-cta a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────── */
.city-footer {
  background: #141414;
  padding: 52px 48px 32px;
}
.city-footer-inner {
  max-width: 1040px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.city-footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}
.city-footer-logo span { color: var(--gold); }
.city-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 360px;
}
.city-footer-col--right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.city-footer-partner {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 150ms;
}
.city-footer-partner:hover { opacity: 0.7; }
.city-footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.city-footer-legal a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 150ms;
}
.city-footer-legal a:hover { color: var(--gold); }
.city-footer-bottom {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 11px;
  color: rgba(255,255,255,.50);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════════════
   PARTNER CARD
══════════════════════════════════════════════════════════ */
.pc-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(.4,0,.2,1),
              transform 400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.pc-wrapper.pc-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pc-card {
  background: var(--white);
  width: 316px;
  border-top: 3px solid var(--gold);
  box-shadow:
    0 24px 80px rgba(0,0,0,.13),
    0  4px 16px rgba(0,0,0,.07);
  position: relative;
}
.pc-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
}
.pc-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  color: #CCC;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color 150ms;
}
.pc-close:hover { color: var(--black); }
.pc-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.pc-monogram {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 3px;
  line-height: 1;
}
.pc-brand-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.pc-partner-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-tagline {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.2px;
}
.pc-body { padding: 18px 24px 20px; }
.pc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.pc-form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pc-form { display: flex; flex-direction: column; gap: 8px; }
.pc-field input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--black);
  outline: none;
  transition: border-color 200ms;
}
.pc-field input:focus { border-color: var(--gold); }
.pc-field input::placeholder { color: #C0BDB8; }
.pc-submit {
  background: var(--navy);
  color: #FFF;
  border: none;
  padding: 11px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms;
  margin-top: 4px;
}
.pc-submit:hover:not(:disabled) { background: var(--gold); }
.pc-submit:disabled { opacity: 0.5; cursor: default; }
.pc-note {
  font-size: 11px;
  color: var(--muted);
  min-height: 14px;
  margin-top: 4px;
}
.pc-note.error { color: #C0392B; }
.pc-success { text-align: center; padding: 8px 0 4px; }
.pc-success-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #FFF;
}
.pc-success-icon svg { width: 18px; height: 18px; }
.pc-success h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pc-success p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.pc-footnote {
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: #CCC;
  text-align: center;
  letter-spacing: 0.3px;
}
.pc-footnote a { color: var(--gold); text-decoration: none; }

/* ════════════════════════════════════════════════════════════
   LEAD CAPTURE CARD  (.lc-*)
════════════════════════════════════════════════════════════ */
.lc-card { width: 320px; }

/* Header */
.lc-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
}
.lc-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.lc-logo span { color: var(--gold); }
.lc-question {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 5px;
}
.lc-question--sm { font-size: .95rem; }
.lc-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Interests grid */
.lc-interests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.lc-int-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px 16px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 150ms;
}
.lc-int-btn:hover { background: #F7F5F1; }
.lc-int-icon {
  display: flex;
  align-items: center;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}
.lc-int-icon svg { display: block; }
.lc-int-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.1px;
}

/* Step 2 back + tag */
.lc-back-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.lc-back {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.3px;
  transition: color 150ms;
}
.lc-back:hover { color: var(--navy); }
.lc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 2px 8px;
}

/* Form */
.lc-body { padding: 16px 22px 18px; }
.lc-form { display: flex; flex-direction: column; gap: 8px; }

/* WhatsApp — 3 campos */
.lc-phone-wrap { display: flex; flex-direction: column; gap: 4px; }
.lc-phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.lc-phone-label span { font-weight: 400; text-transform: none; letter-spacing: 0; }
.lc-phone-hint {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 0.3px;
}
.lc-phone-row { display: flex; gap: 5px; }
.lc-phone-cc   { width: 54px !important; flex-shrink: 0; text-align: center; }
.lc-phone-area { width: 64px !important; flex-shrink: 0; text-align: center; }
.lc-phone-num  { flex: 1; }
.lc-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--black);
  outline: none;
  box-sizing: border-box;
  transition: border-color 200ms;
}
.lc-input:focus { border-color: var(--gold); }
.lc-input::placeholder { color: #C0BDB8; }
.lc-submit {
  background: var(--navy);
  color: #FFF;
  border: none;
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition: background 200ms;
}
.lc-submit:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.lc-submit:disabled { opacity: 0.5; cursor: default; }
.lc-err {
  font-size: 11px;
  color: #C0392B;
  min-height: 14px;
}
.lc-privacy {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}
.lc-privacy a { color: var(--muted); text-decoration: underline; }

/* Success state */
.lc-success {
  padding: 32px 22px 28px;
  text-align: center;
}
.lc-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.lc-success-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.lc-success p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.lc-close-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
}
.lc-close-btn:hover { border-color: var(--navy); color: var(--navy); }

/* Mobile */
@media (max-width: 480px) {
  .pc-wrapper { bottom: 0; right: 0; left: 0; }
  .lc-card { width: 100%; }
}

/* ════════════════════════════════════════════════════════════
   CITIES HUB PAGE  (/cidade/)
════════════════════════════════════════════════════════════ */

/* ── Hub hero ────────────────────────────────────────────── */
.cities-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 52px 48px 36px;
  border-bottom: 1px solid var(--border);
}
.cities-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cities-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.cities-hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cities-hero-desc {
  font-size: 16px;
  color: var(--text);
  max-width: 560px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Cities grid ─────────────────────────────────────────── */
.cities-grid-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 48px 56px;
}
.cities-grid-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.city-card {
  background: var(--white);
  padding: 28px 24px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 180ms;
  position: relative;
}
.city-card:hover { background: #F4F1EC; }
.city-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.city-card:hover::after { transform: scaleX(1); }
.city-card-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.city-card-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}
.city-card-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.city-card-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.city-card-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 12px;
  transition: color 150ms;
}
.city-card:hover .city-card-cta { color: var(--gold); }

/* ── Coming-soon strip ───────────────────────────────────── */
.more-comuni {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px 72px;
}
.more-comuni-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.more-comuni-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.more-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  letter-spacing: 0.3px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .anchors-bar    { top: 88px; /* masthead(48) + util-bar(40) */ }
  .section-block  { scroll-margin-top: 180px; }
  .anchors-inner  {
    padding: 0 16px;
    /* fade right edge — sugere scroll horizontal */
    -webkit-mask-image: linear-gradient(to right, black 82%, transparent 100%);
    mask-image: linear-gradient(to right, black 82%, transparent 100%);
  }
  .anchor-pill    { padding: 12px 12px; font-size: 9.5px; letter-spacing: 1.2px; }
  .masthead       { padding: 0 20px; height: 48px; }
  .masthead-date  { display: none; }
  .masthead-back  { min-width: auto; }
  .util-bar       { overflow-x: auto; justify-content: flex-start; padding: 0; top: 48px; }
  .util-link      { padding: 0 16px; flex-shrink: 0; font-size: 9px; letter-spacing: 1px; }
  .util-link:first-child { border-left: none; }
  .hero           { padding: 48px 20px 36px; }
  .stats-strip    { padding: 20px 20px; gap: 24px; flex-wrap: wrap; }
  .content        { padding: 32px 20px 56px; }
  .content-grid   { grid-template-columns: 1fr; gap: 32px; }
  .city-footer    { padding: 40px 20px 28px; }
  .city-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .city-footer-col--right { align-items: flex-start; text-align: left; }
  .city-footer-legal { justify-content: flex-start; }
  .pc-wrapper     { bottom: 0; right: 0; left: 0; }
  .pc-card        { width: 100%; }
  .cities-hero    { padding: 48px 20px 40px; }
  .cities-grid-wrap { padding: 40px 20px 60px; }
  .cities-grid    { grid-template-columns: repeat(2, 1fr); }
  .more-comuni    { padding: 0 20px 56px; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
}
