/* =============================================================
   Calisbino — Main Stylesheet
   Crazy Diamond Soluções Digitais | crazydiamond.com.br
   ============================================================= */

/* ─── Reset & Root ─────────────────────────────────────────── */
:root {
  --navy:     #223144;
  --navy-dk:  #1a2636;
  --navy-lt:  #2c3f55;
  --gold:     #C9A96E;
  --gray:     #C5C5C5;
  --light:    #F5F3EF;
  --white:    #FFFFFF;
  --text:     #1C1C1C;
  --header-h: 80px;

  --cat-imob:  #C9A96E;
  --cat-arq:   #7E9DB8;
  --cat-eng:   #6B8F71;
  --cat-cred:  #9B7CB6;

  --ff-display: 'FuturaLT', 'Arial Narrow', Arial, sans-serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-accent:  'MovLette', cursive;
  --ff-header:  'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  background: var(--light);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  /* sem padding-top: header flutua transparente sobre o hero */
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* Eyebrow decorativa */
.eyebrow {
  font-family: var(--ff-accent);
  font-size: 36px;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 9999;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  overflow: visible;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

/* Páginas sem hero escuro: header sempre navy */
body:not(.home):not(.single) .site-header {
  background: var(--navy);
  border-bottom-color: rgba(255,255,255,0.07);
}

/* Compensa header fixo em páginas sem hero */
body:not(.home):not(.single) {
  padding-top: var(--header-h);
}

.site-header.scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  height: 60px;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.header-logo img {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
  transition: height 0.35s ease;
}

.site-header.scrolled .header-logo img { height: 36px !important; }

.header-site-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Nav Desktop ── */
.header-nav {
  display: flex;
  justify-content: center;
}

.header-nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list li { margin: 0; padding: 0; }

.header-nav-list li a,
.header-nav a {
  font-family: var(--ff-header);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.header-nav-list li a:hover,
.header-nav a:hover { color: var(--white); }

.site-header.scrolled .header-nav-list li a,
.site-header.scrolled .header-nav a {
  text-shadow: none;
  color: rgba(197,197,197,0.75);
}

.site-header.scrolled .header-nav-list li a:hover,
.site-header.scrolled .header-nav a:hover { color: var(--white); }

/* ── CTAs Header ── */
.header-ctas {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cta-btn {
  font-family: var(--ff-header);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1.5px solid rgba(255,255,255,0.75);
  color: var(--white);
  background: transparent;
  white-space: nowrap;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  cursor: pointer;
}

.cta-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.cta-btn--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.cta-btn--solid:hover {
  background: #d4b47a;
  border-color: #d4b47a;
  color: var(--navy);
}

.site-header.scrolled .cta-btn {
  border-color: var(--gold);
  color: var(--gold);
}

.site-header.scrolled .cta-btn:hover { background: rgba(201,169,110,0.1); }

.site-header.scrolled .cta-btn--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.site-header.scrolled .cta-btn--solid:hover { background: #d4b47a; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10001;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dk);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 44px 28px 52px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li a,
.mobile-nav > a {
  font-family: var(--ff-header);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.mobile-nav-list li a:hover,
.mobile-nav > a:hover { color: var(--gold); }

/* ── Mobile nav topo ── */
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-nav-top__spacer { width: 40px; }

.mobile-nav-logo img {
  height: 52px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
}

.mobile-nav-brand {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-nav-close:hover { color: var(--gold); }

/* ── Mobile nav links ── */
.mobile-nav-ctas {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.mobile-nav-ctas .cta-btn {
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 0.14em;
  border-color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* "Início" não aparece na nav desktop (logo já é o link home) */
.header-nav .menu-item-inicio { display: none; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-dk);
}

/* ── Carousel slides ── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 10s ease;
}

.hero-slide.active .hero-bg { transform: scale(1.0); }
.hero-slide.active:hover .hero-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,38,54,0.95) 0%, rgba(26,38,54,0.30) 48%, rgba(26,38,54,0.04) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 160px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Slide institucional (bg-hero2): sobe o texto para não conflitar com a logo da imagem */
.hero-content--up {
  padding-bottom: 200px;
}

/* ── Dots de navegação ── */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.hero-dot:hover { background: rgba(255,255,255,0.65); }
.hero-dot.active { background: var(--gold); transform: scale(1.4); }

.hero-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  color: var(--white);
  margin-bottom: 22px;
  width: fit-content;
}

.hero-eyebrow {
  font-family: var(--ff-accent);
  font-size: 36px;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 15px;
  color: rgba(210,210,210,0.85);
}

.hero-meta span + span::before { content: '·'; margin: 0 14px; opacity: 0.5; }

.hero-read {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  width: fit-content;
}

.hero-read:hover { border-color: var(--gold); }
.hero-read::after { content: '→'; font-size: 16px; }

/* ─── ÍNDICES / TICKER ──────────────────────────────────── */
.indices-bar {
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 56px;
}

.indices-track {
  display: inline-flex;
  align-items: baseline;
  animation: indices-ticker 32s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes indices-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.indice {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  flex-shrink: 0;
}

.indice:last-child { border-right: none; }

.indice-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.78;
}

.indice-value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.indice-delta { font-size: 12px; font-weight: 600; }
.up   { color: #6FCF97; }
.down { color: #EB5757; }

/* ─── SECTION GENÉRICA ──────────────────────────────────── */
.section-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 88px 40px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
}

.section-link {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: opacity 0.2s;
}

.section-link:hover { opacity: 0.65; }

/* ─── CARD HIGHLIGHT ──────────────────────────────────────── */
.card-highlight {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: var(--navy-dk);
  margin-bottom: 24px;
  cursor: pointer;
}

.card-highlight__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.7s ease;
}

.card-highlight:hover .card-highlight__img { transform: scale(1.04); }

.card-highlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,38,54,0.97) 0%, rgba(26,38,54,0.6) 55%, rgba(26,38,54,0.1) 100%);
}

.card-highlight__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  max-width: 640px;
}

.card-highlight__badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
  color: var(--white);
  width: fit-content;
}

.card-highlight__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.card-highlight__title a { color: var(--white); }

.card-highlight__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(197,197,197,0.75);
  margin-bottom: 28px;
}

.card-highlight__meta {
  font-size: 13px;
  color: rgba(197,197,197,0.5);
  display: flex;
  gap: 0;
}

.card-highlight__meta span + span::before { content: '·'; margin: 0 12px; }

.card-highlight__read {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.card-highlight__read:hover { border-color: var(--gold); }
.card-highlight__read::after { content: '→'; font-size: 15px; }

/* ─── CARDS GRID ─────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(34,49,68,0.13);
}

.card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
  height: 260px;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.card:hover .card__img { transform: scale(1.05); }

.card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
  color: var(--white);
  width: fit-content;
}

.badge--imob   { background: var(--cat-imob); }
.badge--arq    { background: var(--cat-arq); }
.badge--eng    { background: var(--cat-eng); }
.badge--cred   { background: var(--cat-cred); }
.badge--leilao { background: #B85C5C; }

.card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
  flex: 1;
}

.card__title a { color: var(--navy); }
.card__title a:hover { color: var(--gold); }

.card__meta {
  font-size: 13px;
  color: #888;
  display: flex;
  gap: 0;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.card__meta span + span::before { content: '·'; margin: 0 10px; }

/* ─── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 48px;
}

.marquee-item::after { content: '◆'; margin-left: 48px; opacity: 0.3; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── POSTS SECTION ─────────────────────────────────────── */
.posts-section {
  background: var(--light) center/cover no-repeat;
}

/* ─── BAIRROS ──────────────────────────────────────────────── */
.bairros-section {
  background: var(--navy-dk) center/cover no-repeat;
  padding: 88px 0;
}

.bairros-section .section-wrap { padding-top: 0; padding-bottom: 0; }
.bairros-section .section-title { color: var(--white); }
.bairros-section .section-head { border-bottom-color: rgba(255,255,255,0.1); }

.bairros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
}

.bairro-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-left: 3px solid transparent;
  transition: background 0.22s, border-left-color 0.22s;
}

.bairro-item:hover {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
}

.bairro-item:nth-child(4n) { border-right: none; }

.bairro-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.bairro-info {
  font-size: 13px;
  color: var(--gray);
  opacity: 0.88;
  line-height: 1.5;
}

.bairro-arrow {
  margin-top: 24px;
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.bairro-item:hover .bairro-arrow { opacity: 1; transform: translateX(0); }

.bairro-item--more {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.12);
  margin: -1px;
}

.bairro-item--more span {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.6;
}

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  background: var(--navy) center/cover no-repeat;
  padding: 96px 40px;
}

.newsletter-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nl-eyebrow {
  font-family: var(--ff-accent);
  font-size: 36px;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}

.nl-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}

.nl-sub {
  margin-top: 20px;
  font-size: 15px;
  color: #d8d8d8;
  line-height: 1.8;
}

.nl-form { display: flex; flex-direction: column; gap: 14px; }

.nl-input {
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.nl-input::placeholder { color: rgba(255,255,255,0.28); }
.nl-input:focus { border-color: var(--gold); }

.nl-btn {
  padding: 18px 28px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nl-btn:hover { opacity: 0.85; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dk) center/cover no-repeat;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 40px 36px;
}

.footer-inner { max-width: 1360px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}

.footer-logo-img,
.footer-logo img {
  height: 140px !important;
  width: auto !important;
  max-width: none !important;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) !important;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--gray);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-desc {
  font-size: 14px;
  color: var(--gray);
  opacity: 0.80;
  line-height: 1.85;
}

.footer-col-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links li { margin-bottom: 13px; }

.footer-links a {
  font-size: 14px;
  color: var(--gray);
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
  opacity: 0.68;
}

.footer-bottom a {
  color: var(--gray);
  border-bottom: 1px solid rgba(197,197,197,0.25);
  transition: opacity 0.2s;
}

.footer-bottom a:hover { opacity: 1; }

/* ─── WHATSAPP BUTTON ────────────────────────────────────── */
.wa-btn {
  position: fixed !important;
  bottom: 28px;
  right: 24px;
  z-index: 9998; /* abaixo do mobile-nav (10000) */
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  transition: transform 0.25s, box-shadow 0.25s;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.58);
}

.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ─── INNER PAGES (single, archive, 404, index) ──────────── */
.inner-page-wrap { padding-top: var(--header-h); }

/* ── Archive hero ── */
.archive-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.archive-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.archive-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,38,54,0.96) 0%, rgba(26,38,54,0.45) 55%, rgba(26,38,54,0.18) 100%);
}

.archive-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.archive-hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 10px;
}

.archive-hero__sub {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ── Article Hero ── */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: var(--navy-dk) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,38,54,0.95) 0%, rgba(26,38,54,0.5) 50%, rgba(26,38,54,0.15) 100%);
}

.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 40px;
}

/* ── Article body ── */
.article-wrap { background: var(--white); }

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.article-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 0;
  font-size: 14px;
  color: rgba(210,210,210,0.78);
}

.article-meta span + span::before { content: '·'; margin: 0 12px; }

.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.article-content h2, .article-content h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 48px 0 20px;
}

.article-content h2 { font-size: clamp(22px, 2.5vw, 32px); }
.article-content h3 { font-size: clamp(18px, 2vw, 24px); }

.article-content p { margin-bottom: 24px; }

.article-content a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.article-content a:hover { border-bottom-color: var(--gold); }

.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 24px; }
.article-content li { margin-bottom: 8px; }

.article-content img {
  width: 100%;
  height: auto;
  margin: 32px 0;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: rgba(201,169,110,0.06);
  font-style: italic;
  color: #444;
}

/* ── CTA Inline ── */
.article-cta-inline {
  background: rgba(34,49,68,0.04);
  border: 1px solid rgba(34,49,68,0.1);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.article-cta-inline p {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.cta-btn-dark {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s;
}

.cta-btn-dark:hover { background: var(--navy-lt); }

/* ── Share ── */
.article-share {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.share-label {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.share-btns { display: flex; gap: 12px; }

.share-btn {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.share-btn:hover { background: var(--navy); color: var(--white); }
.share-btn--wa { border-color: #25D366; color: #25D366; }
.share-btn--wa:hover { background: #25D366; color: var(--white); }

/* ── CTA Cruzado article ── */
.article-cta-cross {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-cross__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  background: var(--navy);
  color: var(--white);
  transition: background 0.2s;
}

.cta-cross__item:hover { background: var(--navy-lt); }

.cta-cross__item strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-cross__item span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ── CTA Cruzado archive ── */
.cta-cruzado {
  background: var(--navy);
  padding: 56px 40px;
}

.cta-cruzado__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-cruzado__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s;
}

.cta-cruzado__item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}

.cta-cruzado__label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-cruzado__sub { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── Pagination ── */
.archive-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.archive-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.archive-pagination ul li a,
.archive-pagination ul li span {
  display: block;
  min-width: 40px;
  padding: 10px 14px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(34,49,68,0.15);
  transition: background 0.2s, color 0.2s;
}

.archive-pagination ul li a:hover,
.archive-pagination ul li span.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── No posts ── */
.no-posts-msg {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  padding: 64px 0;
}

/* ─── RELATED POSTS ──────────────────────────────────────── */
.related-posts { background: var(--light); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .bairros-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-cruzado__inner { grid-template-columns: 1fr; }
  .article-cta-cross { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* ── Header mobile: logo centralizada, hamburger absoluto à direita ── */
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    gap: 0;
  }

  .header-nav  { display: none; }
  .header-ctas { display: none; }

  .header-logo img { height: 36px !important; }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* ── Hero ── */
  .hero             { height: 62svh; min-height: 460px; }
  .hero-content     { padding: 60px 20px 52px; }
  .hero-content--up { padding-bottom: 80px; }
  .hero-title       { font-size: clamp(26px, 7vw, 40px); line-height: 1.05; }
  .hero-meta        { flex-wrap: wrap; gap: 4px; font-size: 13px; }
  .hero-read        { margin-top: 20px; font-size: 11px; }
  .hero-dots        { bottom: 14px; gap: 8px; }

  /* ── Archive hero ── */
  .archive-hero             { height: 240px; }
  .archive-hero__content    { padding: 28px 20px 32px; }
  .archive-hero__title      { font-size: clamp(28px, 7vw, 42px); }

  /* ── Cards / Sections ── */
  .card-highlight {
    height: auto;
    min-height: 320px;
  }
  .card-highlight__overlay {
    background: linear-gradient(to top, rgba(26,38,54,0.97) 0%, rgba(26,38,54,0.60) 55%, rgba(26,38,54,0.22) 100%);
  }
  .card-highlight__body  { height: auto; padding: 32px 20px; max-width: 100%; }
  .card-highlight__title { font-size: clamp(22px, 5vw, 34px); }

  .cards-grid   { grid-template-columns: 1fr; }
  .bairros-grid { grid-template-columns: 1fr 1fr; }

  .section-head { flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
  .section-wrap { padding: 56px 20px; }
  .indices-bar  { padding: 0; }

  /* ── Newsletter / Footer ── */
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .newsletter       { padding: 56px 20px; }
  .nl-input, .nl-btn { width: 100%; }

  .footer-top     { grid-template-columns: 1fr; padding-bottom: 36px; margin-bottom: 24px; }
  .footer-bottom  { flex-direction: column; gap: 10px; text-align: center; }
  .site-footer    { padding: 48px 20px 28px; }
  .footer-logo-img, .footer-logo img { height: 80px !important; }

  .bairros-section { padding: 56px 0; }

  /* ── Single post ── */
  .article-body          { padding: 40px 20px 56px; }
  .article-hero__content { padding: 40px 20px; }
  .article-cta-cross     { grid-template-columns: 1fr; }

  /* ── CTA cruzado ── */
  .cta-cruzado        { padding: 40px 20px; }
  .cta-cruzado__inner { grid-template-columns: 1fr; }

  /* ── AOS: neutraliza animações horizontais no mobile (evitam overflow) ── */
  [data-aos="fade-left"],
  [data-aos="fade-right"],
  [data-aos="slide-left"],
  [data-aos="slide-right"] {
    transform: none !important;
    opacity: 1 !important;
  }

  /* ── WhatsApp: menor, discreto, mas presente ── */
  .wa-btn {
    bottom: 16px;
    right: 14px;
    width: 44px;
    height: 44px;
    box-shadow: 0 3px 14px rgba(37,211,102,0.32);
  }
  .wa-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .bairros-grid  { grid-template-columns: 1fr; border: none; }
  .bairro-item   { border: 1px solid rgba(255,255,255,0.07); border-left: 3px solid transparent; }
  .card__img-wrap { height: 200px; }
  .card-highlight { min-height: 280px; }
  .hero-content  { padding: 72px 16px 40px; }
  .hero-content--up { padding-bottom: 60px; }
  .section-wrap  { padding: 48px 16px; }
  .section-head  { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-top    { gap: 28px; }
  .footer-logo-img, .footer-logo img { height: 70px !important; }
  .footer-bottom { font-size: 12px; }
  .indices-bar   { height: 48px; }
  .nl-eyebrow    { font-size: 28px; }
  .nl-title      { font-size: clamp(22px, 6vw, 32px); }
  .marquee-item  { padding: 0 24px; }
  .indice        { padding: 0 16px 0 0; margin-right: 16px; }
  .cta-cruzado__item { padding: 20px 20px; }
}

/* =============================================================

/* =============================================================
   PÁGINA DE CONTATO — page-contato.php
   ============================================================= */

.contact-section { background: #f5f3ef; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* -- Info lateral -- */
.contact-info__title {
  font-family: 'FuturaLT', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-item__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: #223144;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item__icon svg { width: 16px; height: 16px; fill: #C9A96E; }
.contact-item__body { display: flex; flex-direction: column; gap: 3px; padding-top: 3px; }
.contact-item__label {
  font-size: 10px;
  font-family: 'FuturaLT', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}
.contact-item__value {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #223144;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
a.contact-item__value:hover { color: #C9A96E; }
.contact-hours {
  border-top: 1px solid rgba(34,49,68,0.1);
  padding-top: 18px;
  margin: 4px 0 20px;
}
.contact-hours__title {
  font-size: 10px;
  font-family: 'FuturaLT', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}
.contact-hours__line {
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: #223144;
  margin: 0 0 3px;
}
.contact-social-links { display: flex; flex-direction: column; gap: 10px; }
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: #223144;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-social-link svg { width: 15px; height: 15px; fill: #C9A96E; flex-shrink: 0; }
.contact-social-link:hover { color: #C9A96E; }

/* -- Caixa do formulario -- */
.contact-form-box {
  background: #fff;
  border-radius: 3px;
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(34,49,68,0.07);
  border-top: 3px solid #C9A96E;
}

/* -- Progress bar -- */
.cbf-progress { margin-bottom: 20px; }
.cbf-progress__bar {
  height: 2px;
  background: rgba(34,49,68,0.08);
  border-radius: 2px;
  margin-bottom: 10px;
}
.cbf-progress__fill {
  height: 100%;
  background: #C9A96E;
  border-radius: 2px;
  width: 33.33%;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cbf-progress__steps {
  display: flex;
  justify-content: space-between;
}
.cbf-step-label {
  font-size: 10px;
  font-family: 'FuturaLT', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.3s;
}
.cbf-step-label.active  { color: #C9A96E; }
.cbf-step-label.current { color: #223144; font-weight: 700; }

/* -- Steps -- */
.cbf-step { display: none; border: none; padding: 0; margin: 0; animation: cbfIn 0.25s ease; }
.cbf-step.active { display: block; }
@keyframes cbfIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cbf-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  color: #223144;
  margin: 0 0 3px;
  padding: 0;
}
.cbf-step__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #999;
  margin: 0 0 18px;
}

/* -- Campos -- */
.cbf-field { margin-bottom: 13px; }
.cbf-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #223144;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.cbf-req  { color: #C9A96E; }
.cbf-opt  { color: #bbb; font-weight: 400; font-size: 11px; }
.cbf-input {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1C1C1C;
  background: #f8f7f5;
  border: 1.5px solid #e0ddd8;
  border-radius: 2px;
  padding: 9px 13px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.cbf-input:focus {
  border-color: #C9A96E;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.cbf-input--error { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192,57,43,0.08) !important; }
.cbf-textarea { min-height: 90px; resize: vertical; line-height: 1.6; }
.cbf-error {
  display: none;
  font-size: 11px;
  color: #c0392b;
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
}

/* -- Chips -- */
.cbf-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.cbf-chip  { cursor: pointer; user-select: none; }
.cbf-chip input[type="radio"],
.cbf-chip input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.cbf-chip span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #223144;
  background: #f0ede8;
  border: 1.5px solid transparent;
  border-radius: 40px;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}
.cbf-chip:hover span { background: #e8e4dd; border-color: rgba(201,169,110,0.3); }
.cbf-chip input:checked + span,
.cbf-chip.selected span { background: #223144; color: #C9A96E; border-color: #223144; font-weight: 500; }

/* -- Botoes -- */
.cbf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(34,49,68,0.07);
}
.cbf-nav--right { justify-content: flex-end; }
.cbf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'FuturaLT', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 11px 20px;
  border-radius: 2px;
  line-height: 1;
}
.cbf-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.cbf-btn--next, .cbf-btn--submit { background: #223144; color: #C9A96E; }
.cbf-btn--next:hover, .cbf-btn--submit:hover { background: #C9A96E; color: #223144; }
.cbf-btn--back { background: transparent; color: #aaa; padding-left: 0; }
.cbf-btn--back:hover { color: #223144; }

/* -- Loading -- */
.cbf-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #888;
}
.cbf-spinner {
  width: 28px; height: 28px;
  border: 2px solid rgba(201,169,110,0.2);
  border-top-color: #C9A96E;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -- Sucesso -- */
.cbf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 16px 12px;
  animation: cbfIn 0.4s ease;
}
.cbf-success__icon svg { width: 44px; height: 44px; stroke: #C9A96E; }
.cbf-success__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  color: #223144; margin: 0;
}
.cbf-success__msg {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: #777;
  margin: 0 0 10px; max-width: 300px;
}

/* -- Erro global -- */
.cbf-form-error {
  display: none;
  background: #fdf3f2;
  border: 1px solid #f5c6c2;
  border-radius: 2px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #c0392b;
  margin-top: 10px;
}

/* -- CTA cruzado -- */
.cta-cross-section { background: #223144; padding: 0; }
.cta-cross-section .section-wrap { padding-top: 0; padding-bottom: 0; }
.cta-cross-grid { display: grid; grid-template-columns: 1fr 1fr; }
.cta-cross-grid .cta-cross__item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 32px 40px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.cta-cross-grid .cta-cross__item:last-child { border-right: none; }
.cta-cross-grid .cta-cross__item:hover { background: rgba(201,169,110,0.07); }
.cta-cross-grid .cta-cross__item strong {
  font-family: 'FuturaLT', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #C9A96E;
}
.cta-cross-grid .cta-cross__item span {
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: #C5C5C5;
}

/* -- page.php generica -- */
.page-content-section { background: #f5f3ef; }
.page-content-body {
  max-width: 760px; margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; line-height: 1.8; color: #1C1C1C;
}

/* -- Mobile -- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .contact-form-box { padding: 20px 16px; }
  .cta-cross-grid { grid-template-columns: 1fr; }
  .cta-cross-grid .cta-cross__item { padding: 24px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 600px) {
  .cbf-chips { gap: 5px; }
  .cbf-chip span { font-size: 11px; padding: 5px 9px; }
  .cbf-btn { font-size: 10px; padding: 10px 14px; }
  .cbf-progress__steps { display: none; }
}
