@import url('/css/fonts-institutional.css');

/* ==========================================================================
   Alicerce Soluções Integradas — Design System (Brand Book)
   ========================================================================== */

:root {
  /* Paleta */
  --blue-deep: #0B2D4A;
  --blue-mid: #134067;
  --orange: #D97706;
  --orange-soft: rgba(217, 119, 6, 0.12);
  --white: #FFFFFF;
  --gray-light: #F0F3F7;
  --gray-mid: #94A3B8;
  --graphite: #1F2937;
  --text-muted: #5C6778;
  --border: #D8E0EA;

  /* Tipografia: fonts-institutional.css */

  /* Grid & espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5.5rem;
  --container: 1140px;

  /* Componentes */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(11, 45, 74, 0.06);
  --shadow-md: 0 12px 40px rgba(11, 45, 74, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 45, 74, 0.1);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Tipografia ---- */
h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--blue-deep);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 var(--space-sm); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); margin: 0 0 var(--space-sm); font-weight: 600; }
h3 { font-size: 1.125rem; margin: 0 0 var(--space-xs); font-weight: 500; }

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 var(--space-xs);
}

.tagline {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--orange);
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.02em;
}

.hero-sub {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue-mid);
  margin: 0 0 var(--space-sm);
}

.section-intro {
  color: var(--text-muted);
  margin: 0;
  max-width: 32em;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-sm);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(52vw, 280px);
}

.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite);
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a:hover { color: var(--blue-deep); }

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.site-nav a.active { color: var(--blue-deep); font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: 0; font: inherit; font-size: 0.9rem; font-weight: 500;
  color: var(--graphite); cursor: pointer; padding: 0.25rem 0;
}
.nav-dropdown-btn:hover { color: var(--blue-deep); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 0.5rem 0; z-index: 50;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1rem; font-size: 0.875rem;
}
.nav-dropdown-menu a:hover { background: var(--gray-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue-deep);
  border-radius: 1px;
}

/* ---- Hero ---- */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, var(--orange-soft), transparent 55%),
    linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-muted);
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

.photo-slot svg {
  width: 48px; height: 48px;
  color: var(--blue-mid);
  opacity: 0.5;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  background: var(--gray-light);
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36em;
  margin: 0;
}

/* ---- Pilares grid (home) ---- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.pillar-card h3 { margin-bottom: 0.35rem; }
.pillar-card p { color: var(--text-muted); font-size: 0.925rem; margin: 0 0 var(--space-sm); }
.pillar-tags {
  list-style: none; margin: 0 0 var(--space-sm); padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.pillar-tags li {
  font-size: 0.75rem; padding: 0.25rem 0.55rem;
  background: var(--gray-light); border-radius: var(--radius-pill);
  color: var(--blue-mid);
}
.card-link {
  margin-top: auto;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--orange);
}
.card-link:hover { color: var(--blue-deep); }

/* ---- Jornada / steps ---- */
.steps {
  list-style: none; margin: var(--space-lg) auto 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  max-width: 900px;
}
.steps li {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-deep);
  padding: 0.65rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  position: relative;
}
.steps li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  color: var(--orange);
  font-size: 0.85rem;
}
.steps-vertical {
  flex-direction: column; align-items: stretch; max-width: 520px;
}
.steps-vertical li:not(:last-child)::after {
  content: "↓";
  position: static;
  display: block;
  text-align: center;
  margin-top: 0.35rem;
  transform: none;
}
.steps-detailed li {
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: grid; gap: 0.25rem;
}
.steps-detailed li span { font-weight: 400; font-size: 0.9rem; color: var(--text-muted); }

/* ---- Métricas ---- */
.metrics {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  margin: var(--space-md) 0;
}
.metric { text-align: center; min-width: 90px; }
.metric-value {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--orange);
  line-height: 1.1;
}
.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: lowercase;
}

/* ---- Seções especiais ---- */
.section-dark {
  background: var(--blue-deep);
  color: rgba(255,255,255,.9);
}
.section-dark h2, .section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow { color: var(--orange); }
.section-dark .metric-value { color: #fbbf24; }
.section-dark .metric-label { color: rgba(255,255,255,.7); }
.caso-card .btn-primary { margin-top: var(--space-sm); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-light);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-frame.wide img { aspect-ratio: 21/9; }

/* ---- Páginas internas ---- */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(180deg, var(--gray-light), var(--white));
}
.page-hero-dark {
  background: var(--blue-deep);
  color: var(--white);
}
.page-hero-dark h1, .page-hero-dark .lead { color: var(--white); }
.page-hero-dark .lead { opacity: 0.9; }
.page-content { max-width: 52em; }
.content-block { margin-bottom: var(--space-lg); }
.content-block h2 { margin-bottom: var(--space-sm); }
.values-inline {
  list-style: none; margin: var(--space-sm) 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
}
.values-inline li {
  padding: 0.5rem 0.75rem;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.page-cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.center { text-align: center; }

.blog-list { display: grid; gap: var(--space-md); max-width: 720px; }
.blog-card {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}
.blog-card time { font-size: 0.8rem; color: var(--text-muted); }
.blog-card h2 { font-size: 1.25rem; margin: 0.35rem 0; }
.blog-card h2 a:hover { color: var(--orange); }

.contact-info p { margin: 0 0 0.65rem; color: var(--text-muted); }
.manifesto {
  background: var(--blue-deep);
  color: var(--white);
}

.manifesto-inner blockquote {
  margin: 0;
  max-width: 52em;
}

.manifesto blockquote p {
  margin: 0 0 var(--space-sm);
  font-size: 1.0625rem;
  line-height: 1.75;
  opacity: 0.92;
}

.manifesto blockquote p:last-child { margin-bottom: 0; }
.manifesto blockquote strong { color: var(--white); font-weight: 600; }

/* ---- Sections ---- */
.section { padding: var(--space-xl) 0; }
.section-compact { padding: var(--space-lg) 0; }
.section-alt { background: var(--gray-light); }
.section-contact { background: var(--gray-light); }

.section-head.center { text-align: center; }
.section-head.center .section-intro { margin-inline: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

/* ---- Pilares ---- */
.pillars {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-sm);
  align-items: stretch;
}

.pillar {
  grid-column: span 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pillar-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 600;
}

.pillar-icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: var(--space-sm);
  color: var(--blue-deep);
}

.pillar-icon svg,
.card-icon svg { width: 28px; height: 28px; }

.pillar p,
.card p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* ---- Cards (soluções) ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 45, 74, 0.15);
}

/* ---- Essência ---- */
.essence-list { margin: 0; }

.essence-list > div {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.essence-list > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.essence-list dt {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
  margin-bottom: 0.35rem;
}

.essence-list dd {
  margin: 0;
  color: var(--text-muted);
}

.values-title {
  font-size: 1rem;
  margin: 0 0 var(--space-sm);
}

.values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.values li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--graphite);
}

.values li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---- Ecossistema ---- */
.ecosystem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
}

.ecosystem-hub {
  grid-column: 1 / -1;
  padding: var(--space-md);
  background: var(--blue-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.ecosystem-spoke {
  padding: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--blue-deep);
}

.ecosystem-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: var(--space-xs) 0;
}

.ecosystem-product {
  padding: var(--space-sm);
  background: rgba(11, 45, 74, 0.06);
  border: 1px solid rgba(11, 45, 74, 0.12);
  border-radius: var(--radius-sm);
  color: var(--blue-mid);
}

/* ---- Taglines ---- */
.quotes { background: var(--white); border-top: 1px solid var(--border); }

.taglines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.taglines li {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-mid);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--gray-light);
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
}

.btn-primary:hover { background: var(--blue-mid); }

.btn-ghost {
  background: var(--white);
  border-color: var(--border);
  color: var(--blue-deep);
}

.btn-ghost:hover {
  border-color: var(--blue-deep);
  background: var(--gray-light);
}

/* ---- Contato ---- */
.contact-lead {
  color: var(--text-muted);
  margin: 0;
  max-width: 28em;
}

.contact-form {
  display: grid;
  gap: var(--space-sm);
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--graphite);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(11, 45, 74, 0.1);
}

.form-feedback {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.875rem;
  font-family: var(--font-ui);
}

.form-feedback.ok { color: #0f7a45; }
.form-feedback.err { color: #b42318; }

/* ---- Diagnóstico ICA (formulário nativo + Motor BASE) ---- */
.diagnostico-layout {
  align-items: start;
  gap: var(--space-lg);
}

.diagnostico-side .section-head { margin-bottom: var(--space-sm); }
.diagnostico-side h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); }

.diagnostico-bullets {
  margin: var(--space-md) 0 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.diagnostico-bullets li { margin-bottom: 0.45rem; }

.diagnostico-fases-label,
.diagnostico-section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-mid);
  font-weight: 700;
  margin: var(--space-md) 0 0.5rem;
}

.diagnostico-section-label { margin-top: var(--space-sm); }

.diagnostico-fases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.diagnostico-fase {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--orange-soft);
  color: var(--orange);
}

.diagnostico-fase strong { margin-right: 0.15rem; }

.diagnostico-info {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.diagnostico-info p { margin: 0.35rem 0; }

.diagnostico-form-head {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.diagnostico-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.diagnostico-form-lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.diagnostico-fases--compact { margin-top: 0.5rem; }

.diagnostico-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.diagnostico-form .dim-block {
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  border: 1px solid var(--border);
}

.diagnostico-form .dim-block label {
  display: block;
  margin-bottom: 0.35rem;
}

.diagnostico-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
}

.diagnostico-form .req { color: #b42318; }

.diagnostico-faixas {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
}

.diagnostico-success {
  background: #ecfdf5;
  border-left: 4px solid #0f7a45;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
}

.diagnostico-success h3 {
  margin: 0 0 0.5rem;
  color: #065f46;
  font-family: var(--font-display);
}

.diagnostico-success p { margin: 0; color: var(--graphite); }

.diagnostico-loading,
.diagnostico-fallback {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--gray-light);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.diagnostico-privacy {
  text-align: center;
  margin: 0;
}

/* Consentimento LGPD nos formulários */
.form-consent-block {
  margin: var(--space-sm) 0 var(--space-md);
  padding: var(--space-sm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue-deep);
  border-radius: var(--radius-sm);
  background: var(--gray-light);
}

.form-aviso {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-aviso a { color: var(--blue-deep); font-weight: 600; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--graphite);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--blue-deep);
}

.form-consent .req { color: #b42318; }

@media (max-width: 700px) {
  .diagnostico-grid-2 { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-lg) 0;
  font-size: 0.875rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-lg);
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.55);
  margin: 0 0 0.65rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
}
.footer-col a:hover { color: var(--white); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}
.footer-social a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  text-decoration: underline;
}
.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer-brand p {
  margin: var(--space-sm) 0 0;
  max-width: 20em;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-logo {
  max-height: 40px;
  max-width: 220px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-copy {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ---- Responsivo ---- */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .pillars {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
  .pillar-arrow { padding: 0.25rem 0; }
}

@media (max-width: 768px) {
  .logo { max-width: min(58vw, 220px); }
  .logo-img { max-height: 40px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .values-inline { grid-template-columns: 1fr; }

  .hero-grid,
  .grid-2 { grid-template-columns: 1fr; }

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

  .values { grid-template-columns: 1fr; }

  .ecosystem { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
    display: none;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.75rem 1.25rem;
  }

  .site-nav a::after { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Reforma 2026: maturidade operacional ---- */
.narrow { max-width: 720px; margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--text-muted); font-size: 0.95rem; }
.pillar-quote { font-style: italic; color: var(--blue-mid); margin: 0.5rem 0 1rem; font-size: 0.95rem; }
.hero-quote { font-size: 1.15rem; margin-top: 1rem; }
.highlight-quote { font-size: 1.05rem; color: var(--graphite); max-width: 640px; margin: 1.5rem auto 0; line-height: 1.7; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.check-list li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; }
.check-list li::before { content: '✔'; position: absolute; left: 0; color: var(--orange); font-weight: 600; }
.beliefs-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; }
.beliefs-list li { padding: 1rem 1.25rem; background: var(--gray-light); border-left: 4px solid var(--orange); border-radius: var(--radius-sm); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.75rem; }
.product-logo { min-height: 56px; display: flex; align-items: center; }
.product-logo img { max-height: 48px; width: auto; max-width: 100%; object-fit: contain; }
.product-logo--hero img { max-height: 64px; }
.product-tagline { font-size: 0.85rem; color: var(--orange); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin: 0; }
.page-hero-penha { background: linear-gradient(135deg, #1a1028 0%, #2d1f45 100%); color: var(--white); }
.page-hero-penha .lead, .page-hero-penha .muted { color: rgba(255,255,255,0.85); }
.confidential-note { margin: 2rem 0; padding: 1rem; background: var(--gray-light); border-radius: var(--radius-sm); }
.blog-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.blog-cat { background: var(--orange-soft); color: var(--orange); padding: 0.15rem 0.6rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.75rem; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--space-lg); }
.blog-cat-tag { font-size: 0.8rem; padding: 0.35rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--text-muted); }
.blog-column-banner { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--orange-soft); border-radius: var(--radius-md); text-align: left; }
.blog-column-author { margin: 0.35rem 0 0; font-size: 0.9rem; color: var(--text-muted); font-style: italic; }
.caso-list-card { border-left: 4px solid var(--orange); }
.display-title { font-size: clamp(2.25rem, 5vw, 3.25rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
.center-block { text-align: center; }
.sustenta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); margin-top: var(--space-lg); }
.sustenta-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.sustenta-media { aspect-ratio: 16/10; overflow: hidden; }
.sustenta-media img { width: 100%; height: 100%; object-fit: cover; }
.sustenta-body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.sustenta-body h3 { font-size: 1.15rem; margin: 0; }
.sustenta-body .card-link { margin-top: auto; padding-top: 0.75rem; }
.eco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-lg); margin-top: var(--space-lg); }
.eco-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.eco-logo img { max-height: 48px; width: auto; }
.eco-name { font-weight: 700; font-size: 1.1rem; margin: 0; }
.eco-role { font-weight: 600; color: var(--orange); margin: 0; font-size: 0.95rem; }
.eco-card .card-link { margin-top: 0.5rem; }
.product-grid-minimal { max-width: 720px; margin-inline: auto; }
.product-card-minimal { text-align: center; align-items: center; padding: var(--space-xl) var(--space-lg); border: none; box-shadow: var(--shadow-md); }
.product-card-minimal .product-logo { justify-content: center; min-height: 64px; }
.product-pitch { font-size: 1.05rem; color: var(--text-muted); margin: 0; max-width: 28ch; margin-inline: auto; }
.product-cta { margin-top: 0.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-lg); margin-top: var(--space-lg); }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; background: var(--gray-light); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-role { font-weight: 600; color: var(--orange); font-size: 0.9rem; margin: 0.25rem 0; }
.team-context { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.result-footnote { max-width: 640px; margin: 2rem auto 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.page-hero-revista { padding-bottom: 0; }
.revista-layout { display: grid; gap: var(--space-xl); max-width: 820px; }
.column-feature { padding: var(--space-xl); background: var(--gray-light); border-radius: var(--radius-lg); border-left: 4px solid var(--orange); }
.column-title { font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 0.25rem 0 0.5rem; letter-spacing: -0.02em; }
.column-byline { font-size: 1.05rem; color: var(--text-muted); margin: 0 0 1.25rem; font-style: italic; }
.column-subtitle { margin: 0 0 1.25rem; padding: 0 0 0 1.25rem; border-left: 3px solid var(--orange); font-size: 1.05rem; line-height: 1.7; color: var(--graphite); font-style: normal; }
.column-editorial { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; padding-top: 1rem; border-top: 1px solid var(--border); }
.column-list-head { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: var(--space-md); }
.column-list { display: grid; gap: var(--space-lg); }
.column-card { padding: var(--space-lg); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); }
.column-card h4 { margin: 0.35rem 0 0.5rem; font-size: 1.15rem; line-height: 1.45; }
.column-card h4 a { color: inherit; text-decoration: none; }
.column-card h4 a:hover { color: var(--orange); }
.column-num { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.column-num-hero { margin-bottom: 0.75rem; }
.page-hero-essay h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); line-height: 1.35; max-width: 42rem; }
.essay-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.essay-author { font-style: italic; }
.article-body.essay-article { max-width: 680px; font-size: 1.0625rem; line-height: 1.8; }
.article-body.essay-article p { margin-bottom: 1.35rem; }
.essay-quote { margin: 1.75rem 0; padding: 0.75rem 0 0.75rem 1.5rem; border-left: 3px solid var(--orange); color: var(--graphite); }
.essay-quote p { margin: 0; font-size: 1.05rem; line-height: 1.65; }
.essay-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.section-dor { background: var(--gray-light); }
.whatsapp-float { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 900; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: transform .2s; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.06); color: #fff; }
@media (max-width: 640px) { .whatsapp-float { bottom: 1rem; right: 1rem; width: 3.25rem; height: 3.25rem; } }
.servico-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.servicos-group { margin-bottom: var(--space-xl); }
.servicos-group-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: var(--space-md); }
.servicos-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.servico-list-card { padding: var(--space-lg); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); }
.servico-list-card h3 { font-size: 1.05rem; line-height: 1.45; margin: 0 0 0.5rem; }
.servico-list-card h3 a { color: inherit; text-decoration: none; }
.servico-list-card h3 a:hover { color: var(--orange); }
.article-body p { margin-bottom: 1rem; line-height: 1.75; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Reforma 2026 — Jornada da Obra (estética revista de arquitetura)
   Branco/grafite/preto; azul e laranja apenas como acento.
   ========================================================================== */

/* Ícones lineares — família única */
.icon { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: middle; stroke: currentColor; }
.btn .icon { width: 1em; height: 1em; margin-left: 0.4rem; }
.card-link .icon { width: 0.95em; height: 0.95em; margin-left: 0.25rem; transition: transform 0.2s ease; }
a:hover > .card-link .icon, .card-link:hover .icon { transform: translateX(3px); }
.lin-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--blue-deep); }
.lin-icon .icon { width: 30px; height: 30px; stroke-width: 1.4; }

/* Botões extra */
.btn-outline { background: transparent; border-color: var(--graphite); color: var(--graphite); }
.btn-outline:hover { background: var(--graphite); color: var(--white); border-color: var(--graphite); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Fundo de planta arquitetônica (CSS puro, leve) */
.blueprint-bg {
  background-color: var(--white);
  background-image:
    linear-gradient(to right, rgba(11, 45, 74, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 45, 74, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  position: relative;
}
.blueprint-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, transparent 55%, var(--white) 100%);
  pointer-events: none;
}
.blueprint-bg > * { position: relative; z-index: 1; }
.blueprint-bg-soft {
  background-image:
    linear-gradient(to right, rgba(11, 45, 74, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 45, 74, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Tipografia narrativa — grafite, acento contido */
.home-narrative h1, .home-narrative h2, .home-narrative h3,
.deep-page h1, .deep-page h2 { color: var(--graphite); }
.punchline {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--graphite);
  max-width: 20ch;
}
.section-head.center .punchline, .center .punchline { max-width: 22ch; margin-inline: auto; }
.sub-tech {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 1rem 0 0;
  font-family: var(--font-body);
}
.section-head.center .sub-tech, .center .sub-tech { margin-inline: auto; }
.section-head { margin-bottom: var(--space-lg); }
.section-head.narrow { max-width: 760px; }

/* Hero narrativo */
.hero-narrative { padding: var(--space-xl) 0 var(--space-lg); max-width: 900px; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.5rem 0 1.25rem;
  max-width: 16ch;
}
.hero-sub-tech {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}
.hero-scroll { margin-top: var(--space-lg); color: var(--gray-mid); }
.hero-scroll .icon { width: 26px; height: 26px; animation: bobble 1.8s ease-in-out infinite; }
@keyframes bobble { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* 01 — O Problema */
.section-problema { background: var(--white); }
.problema-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md);
  margin-top: var(--space-lg);
}
.problema-card {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex; flex-direction: column; gap: 0.9rem;
}
.problema-card .lin-icon .icon { width: 26px; height: 26px; color: var(--orange); }
.problema-card p { margin: 0; color: var(--graphite); font-size: 0.975rem; line-height: 1.5; }
.problema-closing {
  margin: var(--space-lg) auto 0; text-align: center; max-width: 30ch;
  font-family: var(--font-title); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--blue-deep); line-height: 1.35;
}

/* 02 — Método ICA (fluxo vertical) */
.fluxo-ica {
  list-style: none; margin: var(--space-lg) auto 0; padding: 0;
  max-width: 640px; display: grid; gap: 1.75rem;
}
.fluxo-step {
  position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 1.25rem; align-items: start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}
.fluxo-letra {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-title); font-weight: 700; font-size: 1.5rem;
  color: var(--white); background: var(--blue-deep);
}
.fluxo-body h3 { margin: 0 0 0.35rem; font-size: 1.15rem; color: var(--graphite); font-weight: 600; }
.fluxo-body p { margin: 0; color: var(--text-muted); }
.fluxo-arrow {
  position: absolute; left: 34px; bottom: -1.55rem; color: var(--orange);
  display: grid; place-items: center;
}
.fluxo-arrow .icon { width: 22px; height: 22px; }
.fluxo-ica + .center { margin-top: var(--space-xl); }

/* 03 — Arquiteturas */
.section-arquiteturas { background: var(--white); }
.arq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.arq-card {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: var(--space-lg);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); color: var(--graphite);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.arq-card:hover { border-color: var(--blue-deep); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.arq-card .lin-icon .icon { width: 30px; height: 30px; color: var(--blue-deep); }
.arq-card-title { font-family: var(--font-title); font-weight: 700; font-size: 1.25rem; color: var(--graphite); margin-top: 0.4rem; }
.arq-card-h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); font-weight: 600; margin: 0; }
.arq-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.arq-card .card-link { margin-top: auto; padding-top: 0.5rem; }

/* 03 — Estruturas Digitais */
.estrutura-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); margin-top: var(--space-lg); }
.estrutura-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); display: flex; flex-direction: column;
}
.estrutura-media {
  position: relative; aspect-ratio: 16 / 9; background: var(--gray-light);
  display: grid; place-items: center; overflow: hidden;
}
.estrutura-media img { width: 100%; height: 100%; object-fit: cover; }
.estrutura-media.is-placeholder {
  background:
    linear-gradient(135deg, #12283f 0%, #0B2D4A 100%);
}
.estrutura-media.is-placeholder .estrutura-ph { color: rgba(255,255,255,0.5); }
.estrutura-ph .icon { width: 48px; height: 48px; stroke-width: 1.1; }
.estrutura-badge {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: var(--orange); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: var(--radius-pill);
}
.estrutura-body { padding: var(--space-lg); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.estrutura-body h3 { font-size: 1.35rem; font-weight: 700; margin: 0; color: var(--graphite); font-family: var(--font-title); }
.estrutura-tagline { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); font-weight: 600; margin: 0; }
.estrutura-body p { color: var(--text-muted); margin: 0; }
.estrutura-body .btn { margin-top: auto; align-self: flex-start; }

/* 04 — Resultados (editorial) */
.section-resultados { background: var(--gray-light); }
.big-metrics {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md);
  margin-top: var(--space-lg); border-top: 1px solid var(--border); padding-top: var(--space-lg);
}
.big-metric { text-align: left; }
.big-metric-value {
  display: block; font-family: var(--font-title); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem); color: var(--blue-deep); line-height: 1; letter-spacing: -0.02em;
}
.big-metric-label { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.result-groups { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); margin-top: var(--space-xl); }
.result-group { padding-left: 1.25rem; border-left: 3px solid var(--orange); }
.result-group h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-deep); margin: 0 0 0.4rem; }
.result-group p { color: var(--text-muted); margin: 0; }

/* 05 — Nossa forma de pensar */
.section-pensamento { background: var(--white); }
.pensamento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.pensamento-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-lg); border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); color: var(--graphite); min-height: 220px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pensamento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pensamento-card blockquote {
  margin: 0; font-family: var(--font-title); font-weight: 600;
  font-size: 1.2rem; line-height: 1.35; color: var(--graphite);
}
.pensamento-card blockquote::before { content: "“"; color: var(--orange); font-size: 1.4em; line-height: 0; vertical-align: -0.2em; margin-right: 0.1em; }

/* 05 — Quem somos */
.section-equipe { background: var(--gray-light); }
.pessoas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-top: var(--space-lg); max-width: 860px; }
.pessoa-card { text-align: left; }
.pessoa-foto {
  aspect-ratio: 4 / 5; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0.9rem; background: var(--white);
  display: grid; place-items: center;
}
.pessoa-foto img { width: 100%; height: 100%; object-fit: cover; }
.pessoa-foto.is-placeholder { background: linear-gradient(160deg, #e9eef4, #f7f9fb); }
.pessoa-foto.is-placeholder .icon { width: 48px; height: 48px; color: var(--gray-mid); stroke-width: 1; }
.pessoa-card h3 { margin: 0; font-size: 1.15rem; color: var(--graphite); font-weight: 600; }
.pessoa-role { margin: 0.2rem 0 0; color: var(--orange); font-weight: 600; font-size: 0.9rem; }

/* 05 — CTA final */
.section-cta-final { background: var(--white); text-align: center; }
.cta-final-title { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; color: var(--graphite); margin: 0 0 0.75rem; }
.cta-final-text { font-size: 1.15rem; color: var(--text-muted); max-width: 40ch; margin: 0 auto var(--space-lg); }

/* Trilho lateral — Breadcrumb da Obra */
.obra-rail {
  position: fixed; left: 1.5rem; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 1.35rem;
}
.obra-node {
  display: flex; align-items: center; gap: 0.75rem; background: none; border: 0;
  cursor: pointer; padding: 0; color: var(--gray-mid); font-family: var(--font-ui);
}
.obra-dot {
  width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--gray-mid);
  background: transparent; flex-shrink: 0; transition: all 0.25s ease;
}
.obra-meta { display: flex; flex-direction: column; line-height: 1.1; opacity: 0; transform: translateX(-4px); transition: opacity 0.25s ease, transform 0.25s ease; }
.obra-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gray-mid); }
.obra-label { font-size: 0.72rem; font-weight: 600; color: var(--graphite); }
.obra-rail:hover .obra-meta, .obra-node.is-active .obra-meta { opacity: 1; transform: translateX(0); }
.obra-node.is-done .obra-dot { border-color: var(--blue-deep); background: var(--blue-deep); }
.obra-node.is-active .obra-dot { border-color: var(--orange); background: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.obra-node.is-active .obra-num { color: var(--orange); }

/* Rodapé — ecossistema */
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--space-lg); align-items: start; }
.footer-tagline { max-width: 24em; }
.footer-eco { margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.12); }
.footer-eco-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin: 0 0 0.75rem; }
.footer-eco-chain { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.85rem; }
.footer-eco-node { display: flex; flex-direction: column; }
.footer-eco-name { font-family: var(--font-title); font-weight: 700; color: var(--white); font-size: 0.95rem; }
.footer-eco-role { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.footer-eco-sep { color: var(--orange); font-weight: 700; }

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-bottom .footer-copy { margin: 0; }
.footer-cookie-prefs {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.footer-cookie-prefs:hover { border-color: var(--orange); color: var(--white); }

/* Páginas profundas (metodo-ica, arquiteturas/*, produtos/*) */
.deep-page .page-hero { background: var(--white); border-bottom: 1px solid var(--border); }
.deep-hero-title { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.02em; color: var(--graphite); max-width: 18ch; }
.deep-hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 52ch; margin: 1rem 0 0; }
.cap-list { list-style: none; padding: 0; margin: var(--space-md) 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.cap-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.6rem 0.85rem; background: var(--gray-light); border-radius: var(--radius-sm); font-size: 0.95rem; }
.cap-list li .icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 0.15rem; }
.deep-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.deep-block { margin-bottom: var(--space-lg); }
.deep-block h2 { color: var(--graphite); }
.prod-shot { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-light); aspect-ratio: 16/10; display: grid; place-items: center; }
.prod-shot img { width: 100%; height: 100%; object-fit: cover; }
.prod-shot.is-placeholder { background: linear-gradient(135deg, #12283f, #0B2D4A); }
.prod-shot.is-placeholder .icon { width: 64px; height: 64px; color: rgba(255,255,255,0.45); stroke-width: 1; }
.deep-fases { display: grid; gap: var(--space-md); margin-top: var(--space-lg); }

/* Responsivo — Reforma 2026 */
@media (max-width: 1080px) {
  .obra-rail { left: 1rem; }
}
@media (max-width: 900px) {
  .problema-grid { grid-template-columns: repeat(2, 1fr); }
  .arq-grid, .estrutura-grid, .result-groups, .deep-split { grid-template-columns: 1fr; }
  .big-metrics { grid-template-columns: repeat(2, 1fr); }
  .pensamento-grid, .pessoas-grid { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .obra-rail { display: none; }
}
@media (max-width: 560px) {
  .problema-grid { grid-template-columns: 1fr; }
  .big-metrics { grid-template-columns: 1fr; }
}
