/* ============================================================
   Producto Engenharia — Theme CSS
   Identidade: laranja queimado + grafite + amarelo construção
   ============================================================ */

:root {
  /* ---------- Cores ---------- */
  --prd-orange: #C8501E;
  --prd-orange-dark: #A8401A;
  --prd-orange-darker: #8B3414;
  --prd-yellow: #FFB627;
  --prd-graphite: #0F172A;
  --prd-graphite-2: #1E293B;
  --prd-graphite-3: #334155;
  --prd-ink: #0B1220;
  --prd-text: #1A202C;
  --prd-text-soft: #4A5568;
  --prd-text-mute: #718096;
  --prd-line: #E2E8F0;
  --prd-line-soft: #EDF2F7;
  --prd-bg: #FFFFFF;
  --prd-bg-soft: #F7F8FA;
  --prd-bg-cream: #FAF8F4;

  /* ---------- Tipografia ---------- */
  --prd-font-display: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  --prd-font-body: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  /* ---------- Espaçamento ---------- */
  --prd-container: 1240px;
  --prd-container-narrow: 880px;
  --prd-gutter: clamp(16px, 4vw, 32px);
  --prd-section-y: clamp(56px, 9vw, 112px);

  /* ---------- Outros ---------- */
  --prd-radius: 4px;
  --prd-radius-lg: 8px;
  --prd-shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --prd-shadow: 0 4px 14px rgba(15,23,42,.08);
  --prd-shadow-lg: 0 12px 32px rgba(15,23,42,.12);
  --prd-trans: 200ms cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--prd-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--prd-text);
  background: var(--prd-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

a {
  color: var(--prd-orange);
  text-decoration: none;
  transition: color var(--prd-trans);
}
a:hover { color: var(--prd-orange-dark); }

::selection { background: var(--prd-orange); color: #fff; }

.screen-reader-text {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--prd-font-display);
  font-weight: 700;
  color: var(--prd-graphite);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1em; }

/* ============================================================
   Layout: container, section
   ============================================================ */
.prd-container {
  width: 100%;
  max-width: var(--prd-container);
  margin: 0 auto;
  padding: 0 var(--prd-gutter);
}
.prd-container--narrow { max-width: var(--prd-container-narrow); }

.prd-section {
  padding: var(--prd-section-y) 0;
}
.prd-section--soft { background: var(--prd-bg-soft); }
.prd-section--dark {
  background: var(--prd-graphite);
  color: #E2E8F0;
}
.prd-section--dark h1,
.prd-section--dark h2,
.prd-section--dark h3 { color: #fff; }

.prd-section--center { text-align: center; }

.prd-section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
  max-width: 720px;
}
.prd-section--center .prd-section-head {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

.prd-section-title {
  margin: 0 0 .35em;
}
.prd-section-lead {
  font-size: 1.0625rem;
  color: var(--prd-text-soft);
  margin: 0;
  max-width: 60ch;
}
.prd-section--center .prd-section-lead { margin: 0 auto; }
.prd-section--dark .prd-section-lead { color: #94A3B8; }

/* ---------- Eyebrow ---------- */
.prd-eyebrow {
  display: inline-block;
  font-family: var(--prd-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--prd-orange);
  margin-bottom: 1em;
  position: relative;
  padding-left: 28px;
}
.prd-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: var(--prd-orange);
}
.prd-section--dark .prd-eyebrow { color: var(--prd-yellow); }
.prd-section--dark .prd-eyebrow::before { background: var(--prd-yellow); }

/* ============================================================
   Botões
   ============================================================ */
.prd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--prd-font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--prd-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--prd-trans);
  text-decoration: none;
  line-height: 1;
}
.prd-btn--primary {
  background: var(--prd-orange);
  color: #fff;
  border-color: var(--prd-orange);
}
.prd-btn--primary:hover {
  background: var(--prd-orange-dark);
  border-color: var(--prd-orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 80, 30, .25);
}
.prd-btn--ghost {
  background: transparent;
  color: var(--prd-graphite);
  border-color: var(--prd-line);
}
.prd-btn--ghost:hover {
  border-color: var(--prd-graphite);
  color: var(--prd-graphite);
}
.prd-section--dark .prd-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.prd-section--dark .prd-btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}
.prd-btn--block { display: flex; width: 100%; margin-top: 12px; }

/* ============================================================
   Header
   ============================================================ */
.prd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--prd-line-soft);
}

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

.prd-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--prd-graphite);
}
.prd-brand-svg {
  display: block;
  height: 40px;
  width: auto;
}

.prd-nav { display: flex; }
.prd-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.prd-menu li { position: relative; }
.prd-menu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--prd-font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--prd-graphite);
  border-radius: var(--prd-radius);
  transition: all var(--prd-trans);
}
.prd-menu a:hover,
.prd-menu .current-menu-item > a,
.prd-menu .current_page_item > a {
  color: var(--prd-orange);
  background: rgba(200,80,30,.05);
}

/* Submenu */
.prd-menu .sub-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--prd-line);
  border-radius: var(--prd-radius-lg);
  box-shadow: var(--prd-shadow);
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--prd-trans);
}
.prd-menu li:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.prd-menu .sub-menu a {
  padding: 10px 12px;
  font-size: 0.875rem;
}

.prd-header-cta { display: inline-flex; }

/* Mobile toggle */
.prd-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--prd-line);
  border-radius: var(--prd-radius);
  padding: 0;
}
.prd-nav-toggle span,
.prd-nav-toggle span::before,
.prd-nav-toggle span::after {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--prd-graphite);
  position: relative;
  transition: all var(--prd-trans);
}
.prd-nav-toggle span::before { position: absolute; top: -7px; }
.prd-nav-toggle span::after { position: absolute; top: 7px; }
.prd-nav-toggle[aria-expanded="true"] span { background: transparent; }
.prd-nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.prd-nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

/* ============================================================
   Hero (home)
   ============================================================ */
.prd-hero {
  position: relative;
  background: var(--prd-graphite);
  color: #fff;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 140px);
}
.prd-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: .35;
}
.prd-hero-bg svg { width: 100%; height: 100%; }

.prd-hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}
.prd-hero-eyebrow {
  display: inline-block;
  font-family: var(--prd-font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--prd-yellow);
  margin-bottom: 1.5em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 182, 39, .35);
  border-radius: 999px;
}
.prd-hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 .5em;
}
.prd-hero-title em {
  font-style: normal;
  color: var(--prd-yellow);
  position: relative;
  display: inline-block;
}
.prd-hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--prd-orange);
  border-radius: 2px;
}
.prd-hero-lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: #CBD5E1;
  max-width: 60ch;
  margin: 0 0 2em;
}
.prd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3em;
}

.prd-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 700px;
}
.prd-stat {
  text-align: left;
}
.prd-stat-num {
  font-family: var(--prd-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--prd-yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.prd-stat-label {
  font-size: .8125rem;
  color: #94A3B8;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ============================================================
   Grids
   ============================================================ */
.prd-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}
.prd-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.prd-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.prd-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.prd-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.prd-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .prd-grid--4, .prd-grid--5, .prd-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .prd-grid--2, .prd-grid--3, .prd-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .prd-grid--5, .prd-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .prd-grid--3, .prd-grid--4 {
    grid-template-columns: 1fr;
  }
  .prd-grid--5, .prd-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   Cards
   ============================================================ */
.prd-card {
  background: #fff;
  border-radius: var(--prd-radius-lg);
  overflow: hidden;
  transition: all var(--prd-trans);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--prd-line-soft);
}
.prd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--prd-shadow-lg);
  border-color: transparent;
}

.prd-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--prd-bg-soft);
}
.prd-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.4, 0, .2, 1);
}
.prd-card:hover .prd-card-img { transform: scale(1.05); }

.prd-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--prd-text-mute);
  background: linear-gradient(135deg, var(--prd-bg-soft), var(--prd-line-soft));
}

.prd-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--prd-font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.85);
  color: #fff;
  backdrop-filter: blur(4px);
}

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

.prd-card-eyebrow { margin-bottom: 8px; padding-left: 0; }
.prd-card-eyebrow::before { display: none; }

.prd-card-title {
  font-size: 1.25rem;
  margin: 0 0 8px;
  line-height: 1.3;
}
.prd-card-title a {
  color: var(--prd-graphite);
  transition: color var(--prd-trans);
}
.prd-card-title a:hover { color: var(--prd-orange); }

.prd-card-meta {
  font-size: 0.8125rem;
  color: var(--prd-text-mute);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.prd-card-meta-sep { margin: 0 6px; opacity: .6; }

.prd-card-excerpt {
  font-size: 0.9375rem;
  color: var(--prd-text-soft);
  margin: 0 0 16px;
  flex: 1;
  line-height: 1.55;
}

.prd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--prd-font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--prd-orange);
  margin-top: auto;
  letter-spacing: 0.02em;
}
.prd-card-link span { transition: transform var(--prd-trans); }
.prd-card-link:hover span { transform: translateX(4px); }

/* Card cliente (logo) */
.prd-card-cliente {
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid var(--prd-line-soft);
  border-radius: var(--prd-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: all var(--prd-trans);
  text-decoration: none;
}
.prd-card-cliente:hover {
  border-color: var(--prd-orange);
  transform: translateY(-2px);
}
.prd-card-cliente img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: .7;
  transition: all var(--prd-trans);
  width: auto;
}
.prd-card-cliente:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.prd-card-cliente-text {
  font-family: var(--prd-font-display);
  font-weight: 700;
  color: var(--prd-graphite);
  text-align: center;
  font-size: 0.9375rem;
}

/* ============================================================
   Badges (status empreendimento)
   ============================================================ */
.prd-badge {
  display: inline-block;
  font-family: var(--prd-font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.prd-badge--destaque { background: var(--prd-yellow); color: var(--prd-graphite); }
.prd-badge--lancamento { background: var(--prd-orange); color: #fff; }
.prd-badge--em-andamento { background: #0EA5E9; color: #fff; }
.prd-badge--finalizado { background: #10B981; color: #fff; }

.prd-emp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* ============================================================
   Áreas de atuação (home, dark section)
   ============================================================ */
.prd-area-card {
  display: block;
  padding: 32px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--prd-radius-lg);
  color: inherit;
  text-decoration: none;
  transition: all var(--prd-trans);
  position: relative;
  overflow: hidden;
}
.prd-area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--prd-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}
.prd-area-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-3px);
  color: inherit;
}
.prd-area-card:hover::before { transform: scaleX(1); }

.prd-area-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}
.prd-area-title {
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: #fff;
}
.prd-area-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   Empreendimento single - sidebar
   ============================================================ */
.prd-emp-header {
  position: relative;
  min-height: 480px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 60px;
  background: var(--prd-graphite);
}
.prd-emp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.prd-emp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.4) 0%, rgba(15,23,42,.9) 100%);
  z-index: 1;
}
.prd-emp-hero-content { position: relative; z-index: 2; }
.prd-emp-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin: 8px 0 12px;
}
.prd-emp-location {
  font-size: 1.0625rem;
  color: #CBD5E1;
  margin: 0;
}

.prd-emp-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .prd-emp-grid { grid-template-columns: 1fr; gap: 40px; }
}

.prd-emp-sidebar { position: sticky; top: 100px; }
@media (max-width: 900px) { .prd-emp-sidebar { position: static; } }

.prd-emp-card {
  background: var(--prd-bg-cream);
  border: 1px solid var(--prd-line-soft);
  border-radius: var(--prd-radius-lg);
  padding: 28px;
}
.prd-emp-card-title {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prd-orange);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--prd-orange);
  display: inline-block;
}
.prd-emp-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 24px;
}
.prd-emp-dl dt {
  font-family: var(--prd-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prd-text-mute);
  margin-bottom: 2px;
}
.prd-emp-dl dd {
  font-size: 0.9375rem;
  color: var(--prd-graphite);
  font-weight: 500;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--prd-line-soft);
}
.prd-emp-dl dd:last-of-type { border-bottom: none; padding-bottom: 0; }

.prd-emp-areas {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--prd-line);
}
.prd-emp-areas h3 {
  font-size: 1.125rem;
  margin: 0 0 16px;
}
.prd-emp-areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0; padding: 0;
}
.prd-emp-areas-list a {
  display: inline-block;
  padding: 8px 14px;
  background: var(--prd-bg-soft);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--prd-graphite);
  transition: all var(--prd-trans);
}
.prd-emp-areas-list a:hover {
  background: var(--prd-orange);
  color: #fff;
}

/* ============================================================
   Page header / breadcrumbs
   ============================================================ */
.prd-page-header {
  padding: 64px 0 48px;
  background: var(--prd-bg-cream);
  border-bottom: 1px solid var(--prd-line-soft);
}
.prd-page-header--post { background: var(--prd-bg-soft); }

.prd-page-title { margin: .25em 0; }

.prd-page-lead {
  font-size: 1.125rem;
  color: var(--prd-text-soft);
  max-width: 65ch;
  margin: 1em 0 0;
  line-height: 1.6;
}

.prd-breadcrumbs {
  font-size: 0.8125rem;
  color: var(--prd-text-mute);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.prd-breadcrumbs a {
  color: var(--prd-text-mute);
  text-decoration: none;
}
.prd-breadcrumbs a:hover { color: var(--prd-orange); }
.prd-breadcrumbs-sep { margin: 0 8px; opacity: .5; }

.prd-page-thumb { background: var(--prd-bg-soft); padding: 32px 0; }
.prd-page-thumb-img {
  border-radius: var(--prd-radius-lg);
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.prd-post-meta {
  font-size: 0.875rem;
  color: var(--prd-text-mute);
  margin-top: 16px;
}
.prd-post-meta-sep { margin: 0 8px; opacity: .5; }

/* ============================================================
   Prose (conteúdo do artigo)
   ============================================================ */
.prd-prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--prd-text);
}
.prd-prose > * + * { margin-top: 1.25em; }
.prd-prose h2 {
  font-size: 1.75rem;
  margin-top: 2em;
  margin-bottom: .6em;
}
.prd-prose h3 {
  font-size: 1.375rem;
  margin-top: 1.75em;
  margin-bottom: .5em;
}
.prd-prose a {
  color: var(--prd-orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prd-prose a:hover { color: var(--prd-orange-dark); }
.prd-prose img {
  border-radius: var(--prd-radius);
  margin: 1.5em 0;
}
.prd-prose blockquote {
  border-left: 4px solid var(--prd-orange);
  padding: 8px 0 8px 24px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--prd-text-soft);
  font-size: 1.125rem;
}
.prd-prose ul, .prd-prose ol {
  padding-left: 1.5em;
}
.prd-prose li { margin-bottom: .4em; }
.prd-prose code {
  background: var(--prd-bg-soft);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}
.prd-prose hr {
  border: none;
  height: 1px;
  background: var(--prd-line);
  margin: 2.5em 0;
}

/* Post tags & nav */
.prd-tags {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid var(--prd-line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.prd-tags-label {
  font-family: var(--prd-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prd-text-mute);
}
.prd-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--prd-bg-soft);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--prd-graphite);
}
.prd-tag:hover { background: var(--prd-orange); color: #fff; }

.prd-post-nav {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid var(--prd-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .prd-post-nav { grid-template-columns: 1fr; } }
.prd-post-nav-next { text-align: right; }
.prd-post-nav a {
  display: block;
  padding: 16px;
  border: 1px solid var(--prd-line);
  border-radius: var(--prd-radius-lg);
  color: var(--prd-graphite);
  transition: all var(--prd-trans);
}
.prd-post-nav a:hover { border-color: var(--prd-orange); }
.prd-post-nav-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--prd-text-mute);
  margin-bottom: 4px;
  font-weight: 600;
}
.prd-post-nav-title {
  display: block;
  font-family: var(--prd-font-display);
  font-weight: 600;
}

/* ============================================================
   Filters (archive empreendimento)
   ============================================================ */
.prd-filters-bar {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid var(--prd-line-soft);
  position: sticky;
  top: 76px;
  z-index: 50;
}
.prd-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prd-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.prd-filter-label {
  font-family: var(--prd-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prd-text-mute);
  margin-right: 4px;
}
.prd-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--prd-bg-soft);
  color: var(--prd-graphite);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--prd-trans);
  text-decoration: none;
}
.prd-chip:hover { background: var(--prd-line); }
.prd-chip.is-active {
  background: var(--prd-orange);
  color: #fff;
}
.prd-chip--ghost {
  background: transparent;
  border: 1px solid var(--prd-line);
}
.prd-chip--ghost.is-active {
  background: var(--prd-orange);
  border-color: var(--prd-orange);
  color: #fff;
}

/* ============================================================
   Paginação
   ============================================================ */
.prd-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.prd-pagination .nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.prd-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px; height: 42px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--prd-line);
  border-radius: var(--prd-radius);
  font-family: var(--prd-font-display);
  font-weight: 600;
  color: var(--prd-graphite);
  text-decoration: none;
  transition: all var(--prd-trans);
}
.prd-pagination .page-numbers:hover { border-color: var(--prd-orange); color: var(--prd-orange); }
.prd-pagination .page-numbers.current {
  background: var(--prd-orange);
  border-color: var(--prd-orange);
  color: #fff;
}

/* ============================================================
   Empty / 404
   ============================================================ */
.prd-empty {
  text-align: center;
  padding: 64px 24px;
}
.prd-empty h2 { font-size: 1.5rem; }
.prd-empty p { color: var(--prd-text-soft); }

.prd-404 {
  padding: 120px 0;
  text-align: center;
}
.prd-404-code {
  display: block;
  font-family: var(--prd-font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  color: var(--prd-orange);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.prd-404-title { font-size: clamp(1.5rem, 3vw, 2rem); }
.prd-404-text {
  max-width: 50ch;
  margin: 0 auto 32px;
  color: var(--prd-text-soft);
}
.prd-404-search { max-width: 480px; margin: 0 auto 32px; }
.prd-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Search form */
.prd-search-form {
  display: flex;
  background: #fff;
  border: 2px solid var(--prd-line);
  border-radius: var(--prd-radius);
  overflow: hidden;
  transition: border-color var(--prd-trans);
}
.prd-search-form:focus-within { border-color: var(--prd-orange); }
.prd-search-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  outline: none;
}
.prd-search-submit {
  background: var(--prd-orange);
  border: none;
  color: #fff;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--prd-trans);
}
.prd-search-submit:hover { background: var(--prd-orange-dark); }

/* ============================================================
   Contato info / mapa (shortcodes)
   ============================================================ */
.prd-contato-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.prd-contato-item {
  padding: 24px;
  background: var(--prd-bg-cream);
  border-radius: var(--prd-radius-lg);
  border: 1px solid var(--prd-line-soft);
}
.prd-contato-item-label {
  font-family: var(--prd-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prd-orange);
  margin: 0 0 8px;
}
.prd-contato-item-value {
  font-size: 1rem;
  color: var(--prd-graphite);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.prd-contato-item-value a { color: var(--prd-graphite); }
.prd-contato-item-value a:hover { color: var(--prd-orange); }

.prd-mapa {
  border-radius: var(--prd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--prd-line-soft);
}
.prd-mapa iframe { width: 100%; display: block; }

/* CTA Section */
.prd-cta {
  text-align: center;
  padding: clamp(60px, 9vw, 100px) 0;
  background: linear-gradient(135deg, var(--prd-graphite) 0%, var(--prd-graphite-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.prd-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,80,30,.18) 0%, transparent 70%);
}
.prd-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.prd-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.prd-cta p {
  color: #CBD5E1;
  font-size: 1.0625rem;
  margin-bottom: 2em;
}
.prd-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
.prd-footer {
  background: var(--prd-ink);
  color: #94A3B8;
  padding: 72px 0 0;
}
.prd-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 900px) {
  .prd-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 520px) {
  .prd-footer-grid { grid-template-columns: 1fr; }
}

.prd-footer h4 {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.prd-footer-brand .prd-brand-svg {
  height: 44px;
  margin-bottom: 16px;
}
.prd-footer-tagline {
  font-size: 0.9375rem;
  color: #94A3B8;
  max-width: 32ch;
  line-height: 1.55;
}

.prd-footer-list {
  list-style: none;
  margin: 0; padding: 0;
}
.prd-footer-list li { margin-bottom: 10px; }
.prd-footer-list a {
  color: #94A3B8;
  font-size: 0.9375rem;
  transition: color var(--prd-trans);
}
.prd-footer-list a:hover { color: var(--prd-yellow); }

.prd-footer-address {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
  font-style: normal;
}

.prd-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.prd-footer-social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border-radius: var(--prd-radius);
  color: #94A3B8;
  transition: all var(--prd-trans);
}
.prd-footer-social a:hover {
  background: var(--prd-orange);
  color: #fff;
  transform: translateY(-2px);
}

.prd-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: #64748B;
}
@media (max-width: 600px) {
  .prd-footer-bottom { flex-direction: column; text-align: center; }
}

/* WhatsApp flutuante */
.prd-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  transition: all var(--prd-trans);
}
.prd-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
}

/* ============================================================
   Mobile navigation
   ============================================================ */
@media (max-width: 980px) {
  .prd-nav-toggle { display: inline-flex; }
  .prd-header-cta { display: none; }

  .prd-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 24px var(--prd-gutter) 32px;
    border-top: 1px solid var(--prd-line-soft);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(.4, 0, .2, 1);
    visibility: hidden;
  }
  .prd-nav.is-open { transform: translateX(0); visibility: visible; }

  .prd-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .prd-menu li { width: 100%; }
  .prd-menu a {
    padding: 14px 8px;
    font-size: 1rem;
    border-bottom: 1px solid var(--prd-line-soft);
    border-radius: 0;
  }
  .prd-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--prd-bg-soft);
    padding: 4px 16px;
    margin: 0;
    border-radius: 0;
  }
}

/* ============================================================
   Seção "Acompanhe seu Projeto" (sistema externo) — home
   ============================================================ */
.prd-sistema {
  background: linear-gradient(135deg, #FAF8F4 0%, #FFFFFF 100%);
}

.prd-sistema-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px);
  background: #fff;
  border-radius: var(--prd-radius-lg);
  border: 1px solid var(--prd-line-soft);
  box-shadow: var(--prd-shadow);
  position: relative;
  overflow: hidden;
}
.prd-sistema-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--prd-orange), var(--prd-yellow));
}
@media (max-width: 880px) {
  .prd-sistema-card { grid-template-columns: 1fr; }
  .prd-sistema-visual { order: -1; }
}

.prd-sistema-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 16px;
}

.prd-sistema-text {
  font-size: 1.0625rem;
  color: var(--prd-text-soft);
  margin: 0 0 24px;
  line-height: 1.65;
}

.prd-sistema-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.prd-sistema-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 0.9375rem;
  color: var(--prd-text);
}
.prd-sistema-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--prd-orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.prd-sistema-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.prd-sistema-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prd-sistema-visual svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(15,23,42,.18));
}

/* Botão "Acompanhe seu projeto" no header */
.prd-header-sistema {
  padding: 10px 18px;
  font-size: 0.875rem;
}
@media (max-width: 1100px) {
  .prd-header-sistema { display: none; }
}

/* ============================================================
   Formulários (canal de comunicação + outros)
   ============================================================ */
.prd-form {
  background: #fff;
  border: 1px solid var(--prd-line);
  border-radius: var(--prd-radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.prd-form-title {
  font-size: 1.375rem;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--prd-orange);
  display: inline-block;
}
.prd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .prd-form-row { grid-template-columns: 1fr; }
}
.prd-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.prd-field label {
  font-family: var(--prd-font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--prd-graphite);
  margin-bottom: 6px;
}
.prd-field input,
.prd-field select,
.prd-field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--prd-text);
  background: #fff;
  border: 1.5px solid var(--prd-line);
  border-radius: var(--prd-radius);
  transition: all var(--prd-trans);
  font-family: inherit;
}
.prd-field input:focus,
.prd-field select:focus,
.prd-field textarea:focus {
  outline: none;
  border-color: var(--prd-orange);
  box-shadow: 0 0 0 3px rgba(200, 80, 30, .12);
}
.prd-field textarea { resize: vertical; min-height: 120px; }

.prd-field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
}
.prd-field--check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--prd-orange);
}
.prd-field--check label {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--prd-text-soft);
  line-height: 1.5;
}

/* Honeypot (escondido visualmente, acessível para bots) */
.prd-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

/* ============================================================
   Alertas (após submit de formulário)
   ============================================================ */
.prd-alert {
  padding: 14px 18px;
  border-radius: var(--prd-radius);
  margin-bottom: 24px;
  font-size: 0.9375rem;
  border-left: 4px solid;
}
.prd-alert--success {
  background: #ECFDF5;
  color: #047857;
  border-left-color: #10B981;
}
.prd-alert--error {
  background: #FEF2F2;
  color: #B91C1C;
  border-left-color: #EF4444;
}
