.logo-item {
  transition: filter 0.25s ease;
  cursor: default;
}
.logo-item:hover {
  filter: brightness(10);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes hero-symbol-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-symbol-float {
  animation: hero-symbol-float 6s ease-in-out infinite;
}
.hero .fade-in-up { cursor: default; }
.fade-in-up.cta-row { cursor: default; }
.atuacao .fade-in-up,
.lideranca .fade-in-up,
.compromisso .fade-in-up,
#como-pensamos .fade-in-up {
  cursor: default;
}
@media (prefers-reduced-motion: reduce) {
  .hero-symbol-float { animation: none; }
}

.carbon-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
}
.carbon-icon svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

/* Animação de entrada + hover das perguntas */
.fade-in-up {
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.25s ease;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.q-left:hover, .q-right:hover {
  border-top-color: var(--brand) !important;
  border-bottom-color: var(--brand) !important;
  background: transparent;
  transform: none;
  box-shadow: none;
}
.q-left:hover {
  border-right: 1px solid var(--brand) !important;
}
.q-right:hover {
  border-left: 1px solid var(--brand) !important;
}

@keyframes border-draw {
  0%   { background-size: 0% 1px, 1px 0%,   0% 1px, 1px 0%; }
  25%  { background-size: 100% 1px, 1px 0%,  0% 1px, 1px 0%; }
  50%  { background-size: 100% 1px, 1px 100%, 0% 1px, 1px 0%; }
  75%  { background-size: 100% 1px, 1px 100%, 100% 1px, 1px 0%; }
  100% { background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%; }
}
/* Hover cards realidade */
.realidade-card-hover {
  position: relative;
}
.realidade-card-hover::after {
  content: '';
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(#6535E8,#6535E8) top left/0% 1px no-repeat,
    linear-gradient(#6535E8,#6535E8) top right/1px 0% no-repeat,
    linear-gradient(#6535E8,#6535E8) bottom right/0% 1px no-repeat,
    linear-gradient(#6535E8,#6535E8) bottom left/1px 0% no-repeat;
  pointer-events: none;
  z-index: 3;
}
.realidade-card-hover:hover::after {
  animation: border-draw 0.8s ease forwards;
}
.realidade-card-hover:hover {
  border-color: transparent !important;
  box-shadow: 0 8px 32px rgba(101,53,232,0.25);
  transform: translateY(-3px);
  background: #fff !important;
  z-index: 2;
}

/* Hover linhas O Problema */
.problema-row-1, .problema-row-2, .problema-row-3 {
  cursor: pointer;
  position: relative;
}
.problema-row-1::after, .problema-row-2::after, .problema-row-3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.problema-row-1:hover::after, .problema-row-2:hover::after, .problema-row-3:hover::after {
  width: 100%;
}

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

:root {
  --brand: #6535E8;
  --dark: #0C0D25;
  --mid: #3E4047;
  --light: #3E4047;
  --border: #D8DCE8;
  --bg: #ffffff;
  --bg-alt: #D8DCE8;
  --bg-dark: #0C0D25;
  --font: 'IBM Plex Sans', sans-serif;
  --grid: 60px;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { font-family: var(--font); color: var(--dark); background: var(--bg); font-size: 16px; line-height: 1.5; margin: 0; padding: 0; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 14px; font-weight: 600; color: var(--brand); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; height: 100%; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: #0C0D25;
  text-decoration: none; padding: 0 16px; height: 100%;
  display: flex; align-items: center;
  border-left: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--bg-alt); color: var(--dark); }
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  border-left: none !important;
  padding: 0 24px !important;
}
.nav-cta:hover { background: #0C0D25 !important; }

.nav-toggle-checkbox { display: none; }
.nav-toggle-wrap { display: none; align-items: center; gap: 10px; height: 48px; }
.nav-links-footer { display: none; }
.mq-cta-line-break { display: none; }
.nav-close-label { display: none; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); }
.nav-hamburger { position: relative; width: 24px; height: 48px; cursor: pointer; z-index: 101; }
.nav-hamburger span {
  display: block; position: absolute; left: 0; width: 24px; height: 2px; background: var(--dark);
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.25s ease, top 0.25s ease;
}
.nav-hamburger span:nth-child(1) { top: 18px; }
.nav-hamburger span:nth-child(2) { top: 24px; }
.nav-hamburger span:nth-child(3) { top: 30px; }

/* LAYOUT */
.container { max-width: 1312px; margin: 0 auto; padding: 0 var(--grid); }

/* HERO */
.hero {
  padding: 140px var(--grid) 0;
  border-bottom: none;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 400; color: var(--light);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -1px; color: var(--dark);
  max-width: 780px; margin-bottom: 24px;
}
.hero h1 strong { font-weight: 600; color: var(--brand); }
.hero-sub {
  font-size: 20px; font-weight: 300; line-height: 1.6;
  color: #0C0D25; max-width: 580px;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 0; margin-bottom: 48px; }
.btn-primary {
  font-family: var(--font); font-size: 14px; font-weight: 400;
  background: var(--brand); color: #fff;
  border: 1px solid var(--brand);
  padding: 14px 24px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; transition: background 0.15s;
}
.btn-primary:hover { background: #0C0D25; border-color: #0C0D25; }
.btn-primary .carbon-icon svg,
.btn-secondary .carbon-icon svg,
.insights-link .carbon-icon svg,
.realidade-card-hover .carbon-icon svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary:hover .carbon-icon svg,
.btn-secondary:hover .carbon-icon svg,
.insights-link:hover .carbon-icon svg,
.realidade-card-hover:hover .carbon-icon svg {
  transform: translate(3px, -3px) scale(1.1);
}
.insights-card:hover .insight-arrow,
.insights-ver-todos:hover .insight-arrow {
  transform: translate(3px, -3px) scale(1.1);
}
.atuacao-plus, .realidade-plus {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.atuacao-card:hover .atuacao-plus,
.realidade-card-hover:hover .realidade-plus {
  transform: scale(1.25);
}
.realidade-card-hover:hover .duvida-num {
  color: var(--brand) !important;
}
.realidade-card-hover:hover .duvida-text {
  font-weight: 400 !important;
  transition: font-weight 0.25s ease;
}
.btn-secondary {
  font-family: var(--font); font-size: 14px; font-weight: 400;
  background: transparent; color: var(--brand);
  border: 1px solid var(--brand);
  padding: 14px 24px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; transition: background 0.15s;
}
.btn-secondary:hover { background: var(--bg-alt); }

/* HERO BOXES */
.hero-boxes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.hero-box {
  padding: 32px 24px 0 0;
}

.hero-box-label {
  font-size: 12px; font-weight: 600; color: var(--brand);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.hero-box-label::before {
  content: ''; display: block;
  width: 16px; height: 1px; background: var(--brand);
}
.hero-box p { font-size: 18px; font-weight: 300; color: #0C0D25; line-height: 1.6; }

/* SECTIONS */
section { border-bottom: none; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 80px var(--grid); }

.eyebrow {
  font-size: 12px; font-weight: 600; color: var(--brand);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--brand); }

/* A REALIDADE */
.realidade { border-bottom: 1px solid var(--border); border-top: none; background: var(--bg-alt); }
.realidade h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; line-height: 1.3;
  letter-spacing: -0.5px; max-width: 100%;
  margin-bottom: 48px;
}
.realidade h2 em { font-style: normal; font-weight: 500; }
.realidade-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.realidade-card {
  padding: 48px 40px;
  background: var(--bg);
  border-radius: 2px;
}

.realidade-tag {
  font-size: 22px; font-weight: 600; color: #0C0D25;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.realidade-card p { font-size: 20px; font-weight: 300; color: #0C0D25; line-height: 1.6; }
.realidade-closing {
  font-size: 28px; font-weight: 400; color: var(--brand);
}

/* O PROBLEMA */
.problema { border-bottom: 1px solid var(--border); background: var(--bg-dark); }
.problema h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; line-height: 1.3;
  letter-spacing: -0.5px; max-width: 100%;
  margin-bottom: 48px;
  color: #fff;
}
.problema h2 em { font-style: normal; font-weight: 500; color: #fff; }
.problema-list { border-top: 1px solid rgba(255,255,255,0.1); }
.problema-item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 32px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.problema-num { font-size: 12px; font-weight: 400; color: var(--brand); padding-top: 3px; }
.problema-item h3 { font-size: 15px; font-weight: 500; margin-bottom: 6px; color: #fff; }
.problema-item p { font-size: 18px; font-weight: 300; color: #3E4047; line-height: 1.6; }

/* ONDE VOCÊ ESTÁ */
.onde { background: var(--bg); border-bottom: 1px solid var(--border); }
.onde .eyebrow { color: var(--brand); }
.onde .eyebrow::before { background: var(--brand); }
.onde h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -0.3px; color: #0C0D25;
  max-width: 1000px; margin-bottom: 48px;
}
.onde h2 em { font-style: normal; font-weight: 500; }
.onde-list { border-top: 1px solid var(--border); }
.onde-item {
  display: grid; grid-template-columns: 80px 1fr 280px;
  gap: 32px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.onde-num {
  font-size: 28px; font-weight: 300; color: var(--brand); line-height: 1;
}
.onde-num span {
  display: block; font-size: 10px; font-weight: 500;
  color: #3E4047; letter-spacing: 1.5px;
  text-transform: uppercase; margin-top: 6px;
}
.onde-item h3 { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.onde-item p { font-size: 18px; font-weight: 300; color: #3E4047; line-height: 1.6; }
.onde-tag { font-size: 13px; font-style: italic; color: var(--brand); text-align: right; padding-top: 4px; line-height: 1.5; }
.onde-closing {
  margin-top: 40px; font-size: 15px; font-weight: 300;
  color: #3E4047;
}

/* A SOLUÇÃO */
.solucao { background: var(--brand); border-bottom: none; }
.solucao .eyebrow { color: #3E4047; }
.solucao .eyebrow::before { background: var(--brand); }
.solucao-lines { margin-bottom: 48px; }
.solucao-lines p {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -1px; color: #3E4047;
}
.solucao-lines p + p { margin-top: 4px; }
.solucao-lines p.active { color: #fff; }
.solucao-tag {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.2); padding-top: 32px;
}
.solucao-tag strong { font-weight: 600; color: #fff; }

/* A ATUAÇÃO */
.atuacao { border-bottom: 1px solid var(--border); background: var(--bg); }
.atuacao h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; letter-spacing: -1px; line-height: 1.3; margin-bottom: 8px;
}
.atuacao-intro { font-size: 15px; color: #0C0D25; font-weight: 300; margin-bottom: 48px; }
.atuacao-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); margin-bottom: 32px;
}
.atuacao-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.atuacao-card:last-child { border-right: none; }
.atuacao-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 12px; }
.atuacao-card p { font-size: 18px; font-weight: 300; color: #0C0D25; line-height: 1.6; }
.atuacao-notes { display: flex; flex-direction: column; gap: 6px; }
.atuacao-note { font-size: 13px; font-style: italic; color: var(--light); }

/* A TRAJETÓRIA */
.trajetoria { background: var(--bg-dark); border-bottom: none; }
.problema .eyebrow, .problema-eyebrow { color: #9DA0AA; }
.problema .eyebrow::before, .problema-eyebrow::before { background: #9DA0AA; }
.trajetoria .eyebrow { color: #9DA0AA; }
.trajetoria .eyebrow::before { background: #9DA0AA; }
.trajetoria-layout {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 64px; align-items: start; margin-bottom: 48px;
}
.trajetoria-num {
  font-size: 80px; font-weight: 300; color: var(--brand);
  line-height: 1; letter-spacing: -4px;
}
.trajetoria-text h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300; color: #fff; margin-bottom: 16px;
  letter-spacing: -0.5px; line-height: 1.2;
}
.trajetoria-text p { font-size: 18px; color: #3E4047; font-weight: 300; line-height: 1.7; }
.logos-strip {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  display: flex; align-items: center; gap: 0;
}
.logo-ph {
  flex: 1; height: 32px;
  background: rgba(255,255,255,0.06);
  margin: 0 12px;
}

/* OS INSIGHTS */
.insights { border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.insights-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}
.insights-header h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300; letter-spacing: -0.5px;
}
.insights-link {
  font-size: 14px; font-weight: 400; color: var(--brand);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.insight-card { border-right: 1px solid var(--border); background: var(--bg); }
.insight-card:last-child { border-right: none; }
.insight-img {
  height: 160px; background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 12px;
}
.insight-body { padding: 24px; }
.insight-cat {
  font-size: 12px; font-weight: 500; color: var(--brand);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
}
.insight-body h3 { font-size: 15px; font-weight: 400; line-height: 1.4; margin-bottom: 16px; }
.insight-date { font-size: 12px; color: var(--light); }

/* A LIDERANÇA */
.lideranca { border-bottom: 1px solid var(--border); background: var(--bg); }
.lideranca h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 16px;
}
.lideranca h2 em { font-style: normal; font-weight: 500; }
.lideranca-sub {
  font-size: 18px; color: #0C0D25; font-weight: 300;
  line-height: 1.7; max-width: 600px; margin-bottom: 48px;
}
.lideranca-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}
.lideranca-card {
  padding: 40px 32px; background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 24px;
}
.lideranca-card:last-child { border-right: none; }
.lideranca-foto {
  width: 72px; height: 72px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 11px;
}
.lideranca-info h3 { font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.lideranca-role {
  font-size: 12px; font-weight: 500; color: var(--brand);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.lideranca-info p { font-size: 13px; color: #0C0D25; font-weight: 300; line-height: 1.6; }

/* O COMPROMISSO */
.compromisso { border-bottom: 1px solid var(--border); background: #fff; }
.compromisso-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.compromisso h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300; line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 20px;
}
.compromisso h2 em { font-style: normal; font-weight: 500; }
.compromisso p { font-size: 18px; color: #0C0D25; font-weight: 300; line-height: 1.7; }
.selos { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.selo {
  padding: 28px 16px; text-align: center; background: var(--bg);
  border-right: 1px solid var(--border);
}
.selo:last-child { border-right: none; }
.selo-name { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.selo-type { font-size: 12px; font-weight: 400; color: var(--brand); letter-spacing: 2.5px; text-transform: uppercase; }

/* O CTA */
.cta-final { border-bottom: none !important;
  background: var(--bg-dark); color: #fff;
  padding: 80px 0;
  border-bottom: none;
}
.cta-final-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--grid); }
.cta-final .eyebrow { color: #9DA0AA; }
.cta-final .eyebrow::before { background: #9DA0AA; }
.cta-final h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; letter-spacing: -1.5px;
  line-height: 1.05; margin-bottom: 32px; color: #fff;
  max-width: 640px;
}
.cta-final h2 strong { font-weight: 600; color: var(--brand); }
.cta-final .cta-body { max-width: 480px; margin-bottom: 48px; }
.cta-final .cta-body p {
  font-size: 15px; color: #3E4047;
  font-weight: 300; margin-bottom: 8px; line-height: 1.7;
}
.cta-final .cta-body p strong { color: rgba(255,255,255,0.8); font-weight: 400; }
.cta-final .btn-primary { font-size: 15px; padding: 16px 32px; }
.cta-final .btn-primary:hover { background: #fff !important; color: #0C0D25 !important; }

/* FORMULÁRIO DE CONTATO */
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font); font-size: 14px; color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 14px; width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9DA0AA; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--brand); }
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form button { align-self: flex-start; border: none; }
.contact-form .form-msg { font-size: 13px; margin: 0; display: none; }
.contact-form .form-msg.success { color: #fff; display: block; }
.contact-form .form-msg.error { color: #FF8A8A; display: block; }
.contact-form .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* FOOTER */
footer {
  background: var(--bg-dark);
  padding: 24px var(--grid);
  display: flex; justify-content: space-between; align-items: center;
}
footer p { font-size: 12px; color: #3E4047; font-weight: 300; }

/* FOOTER NOVO */
#site-footer { background: #0C0D25; padding: 0; border-top: none; }
#site-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--grid); }
#footer-top { display: flex; justify-content: space-between; align-items: center; padding: 48px 0 40px; }
#footer-brand { display: flex; align-items: center; gap: 16px; }
#footer-logo { height: 28px; width: auto; }
#footer-divider { display: inline-block; width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
#footer-tagline { font-size: 14px; color: #9DA0AA; font-weight: 400; }
#footer-social { display: flex; gap: 32px; }
#footer-social a { font-size: 14px; color: #9DA0AA; text-decoration: none; font-weight: 400; }
#footer-social a:hover { color: #fff; }
#footer-rule { height: 1px; background: rgba(255,255,255,0.12); }
#footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
#footer-legal, #footer-certs { font-size: 13px; color: #555862; font-weight: 400; margin: 0; }

/* PÁGINAS DE CONTEÚDO LEGAL */
.legal-page { padding: 140px var(--grid) 100px; max-width: 820px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 300; letter-spacing: -0.5px; margin-bottom: 8px; }
.legal-page .legal-updated { font-size: 13px; color: var(--light); font-weight: 300; margin-bottom: 48px; }
.legal-page h2 { font-size: 20px; font-weight: 600; color: var(--dark); margin: 40px 0 12px; letter-spacing: -0.2px; }
.legal-page p { font-size: 15px; font-weight: 300; color: #3E4047; line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { margin: 0 0 16px; padding-left: 20px; }
.legal-page li { font-size: 15px; font-weight: 300; color: #3E4047; line-height: 1.8; margin-bottom: 8px; }
.legal-page a { color: var(--brand); }

.legal-toc {
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.legal-toc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.legal-toc summary::-webkit-details-marker { display: none; }
.legal-toc summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--mid);
  border-radius: 50%;
  background:
    linear-gradient(var(--mid), var(--mid)) center / 8px 1px no-repeat,
    linear-gradient(var(--mid), var(--mid)) center / 1px 8px no-repeat;
}
.legal-toc[open] summary::after {
  background: linear-gradient(var(--mid), var(--mid)) center / 8px 1px no-repeat;
}
.legal-toc[open] summary { border-bottom: 1px solid var(--border); }
.legal-toc ol {
  margin: 0;
  padding: 12px 20px 20px 40px;
}
.legal-toc li { font-size: 14px; font-weight: 300; color: #3E4047; line-height: 2; margin: 0; }
.legal-toc a { color: #3E4047; text-decoration: none; }
.legal-toc a:hover { color: var(--brand); }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  :root { --grid: 24px; }

  /* Nav com menu hambúrguer em tela cheia (fundo claro) */
  .nav-toggle-wrap { display: flex; }
  .nav-toggle-checkbox:checked ~ .nav-toggle-wrap .nav-close-label { display: inline-block; }
  .nav-toggle-checkbox:checked ~ .nav-toggle-wrap .nav-hamburger span:nth-child(1) { top: 24px; transform: rotate(45deg); }
  .nav-toggle-checkbox:checked ~ .nav-toggle-wrap .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle-checkbox:checked ~ .nav-toggle-wrap .nav-hamburger span:nth-child(3) { top: 24px; transform: rotate(-45deg); }
  body:has(.nav-toggle-checkbox:checked) { overflow: hidden; }

  .nav-links {
    display: none;
    position: fixed; top: 48px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: var(--bg);
    padding: 0 var(--grid);
    gap: 4px;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  .nav-links a {
    height: auto;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 22px 0;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: var(--dark);
  }
  .nav-links a:first-child { border-top: none; }
  .nav-links a:hover { background: transparent; color: var(--brand); }
  .nav-cta {
    background: transparent !important;
    color: var(--brand) !important;
    font-weight: 300 !important;
    border-top: 1px solid var(--border) !important;
    padding: 22px 0 !important;
  }
  .nav-cta:hover { background: transparent !important; color: #0C0D25 !important; }

  .nav-links-footer {
    border-top: 1px solid var(--border);
    margin-top: 0;
    padding: 48px 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .nav-links-footer-symbol { height: 136px; width: auto; display: block; flex-shrink: 0; }
  .nav-links-footer-tagline { font-size: 22px; color: var(--dark); font-weight: 300; letter-spacing: -0.2px; margin: 0; line-height: 1.4; }
  .mq-ctas-equal > a { flex: 1 1 0; min-width: 0; justify-content: center; text-align: center; }

  .hero { padding-top: 96px !important; }
  .section-inner { padding: 56px var(--grid) !important; }
  .cta-final { padding: 56px 0 !important; }
  .legal-page { padding: 96px var(--grid) 64px !important; }

  /* Empilha grids que eram lado a lado */
  .mq-2col, .mq-3col, .mq-2col-auto, .mq-princ-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .cta-grid > * {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .mq-hide { display: none !important; }
  .mq-full { width: 100% !important; max-width: 100% !important; }
  .mq-no-padtop { padding-top: 0 !important; margin-left: 0 !important; }
  .mq-wrap { flex-wrap: wrap !important; }
  .mq-wrap-text { white-space: normal !important; width: 100% !important; justify-content: space-between !important; text-align: left !important; }
  .mq-cta-line-break { display: block; }
  .mq-col { flex-direction: column !important; align-items: flex-start !important; }

  .trajetoria-layout, [style*="grid-template-columns:auto 1fr"] { grid-template-columns: 1fr !important; }

  /* Mais respiro entre os blocos empilhados de "O Problema" */
  .problema-row-1.mq-3col, .problema-row-2.mq-3col {
    padding: 42px 0 !important;
    gap: 14px !important;
  }

  /* Mais respiro entre os cards empilhados de "A Atuação" */
  .atuacao-grid.mq-3col {
    gap: 36px !important;
  }

  /* Mais respiro entre os cards empilhados de "Os Insights" e "A Liderança" */
  .insights-grid.mq-3col, .lideranca-pair.mq-2col {
    gap: 36px !important;
  }

  /* Selos (ABAP/ABRADI/CENP) empilhados em coluna única no mobile */
  .selos-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }
  .compromisso-grid.mq-2col {
    gap: 32px !important;
  }
  .cta-grid.mq-2col {
    gap: 40px !important;
  }
  .footer-legal-links {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .selo-icon-box {
    align-items: center !important;
  }

  /* Símbolo 3D de "O Princípio": inteiro, com margem leve, no canto inferior direito no mobile */
  .mq-hide-desktop-symbol { display: none !important; }
  .mq-symbol-crop { display: block !important; }

  /* Textos dos 3 blocos do hero maiores no mobile (não precisam mais caber numa linha só) */
  .hero-box-title { font-size: 20px !important; }
  .hero-box-desc { font-size: 16px !important; }

  /* Linhas dos 3 blocos do hero: mais coladas ao próprio conteúdo, mais espaço entre blocos */
  .hero-boxes-row.mq-3col {
    gap: 44px !important;
  }
  .hero-boxes-row > .fade-in-up {
    padding-top: 16px !important;
  }
}

@media (max-width: 560px) {
  .hero h1 { letter-spacing: -0.5px; }
  .cta-final h2 { letter-spacing: -0.5px !important; }
  #footer-top { flex-direction: column; align-items: flex-start !important; gap: 28px; padding: 32px 0 24px !important; }
  #footer-brand { flex-direction: column; align-items: flex-start !important; gap: 20px; }
  #footer-bottom { flex-direction: column; align-items: flex-start !important; gap: 8px; }
}

/* ==================================================================
   INSIGHTS (blog) — home, artigo, categoria/tag e busca
   ================================================================== */
.ins-wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--grid); }
.ins-breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--mid); margin-bottom:24px; }
.ins-breadcrumb a { text-decoration:none; color:var(--mid); }
.ins-breadcrumb a:hover { color:var(--brand); }

/* topo: eyebrow + busca */
.ins-top { padding:24px 0 24px; }
.ins-top-row { display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.ins-top-row .eyebrow { margin-bottom:0; }
.ins-search { display:flex; align-items:center; gap:12px; border:1px solid var(--border); border-radius:2px; padding:12px 16px; background:#fff; }
.ins-search.compact { max-width:280px; width:100%; }
.ins-search input { border:none; outline:none; font-family:var(--font); font-size:14px; flex:1; color:var(--dark); background:transparent; }
.ins-search input::placeholder { color:#9DA0AA; }
.ins-search button { background:none; border:none; padding:0; cursor:pointer; display:flex; color:#9DA0AA; }
.ins-search button:hover { color:var(--brand); }
@media (max-width:600px){ .ins-top-row{ flex-direction:column; align-items:stretch; } .ins-search.compact{ max-width:none; } }

/* cabeçalho de página (categoria/tag e busca) */
.ins-page-head { padding:24px 0 28px; }
.ins-page-head h1 { font-size:clamp(28px,3.6vw,40px); font-weight:400; letter-spacing:-0.5px; margin:0 0 14px; }
.ins-page-head h1 strong { color:var(--brand); font-weight:600; }
.ins-page-desc { font-size:16px; color:var(--mid); font-weight:300; line-height:1.6; max-width:62ch; margin:0 0 12px; }
.ins-page-count { font-size:13px; color:var(--mid); }

/* destaques: 1 grande (55/45) + 2 secundários empilhados */
.ins-destaques { padding-bottom:56px; }
.ins-destaques-grid { display:grid; grid-template-columns:55fr 45fr; gap:20px; align-items:stretch; }
@media (max-width:860px){ .ins-destaques-grid{ grid-template-columns:1fr; } }
.ins-dest-main { position:relative; display:block; min-height:555px; border-radius:2px; overflow:hidden; text-decoration:none; color:#fff; cursor:pointer; }
@media (max-width:860px){ .ins-dest-main{ min-height:340px; } }
.ins-dest-media { position:absolute; inset:0; background:linear-gradient(135deg,#6535E8 0%,#4A1FA8 55%,#2D1B69 100%); }
.ins-dest-overlay { position:absolute; left:0; right:0; bottom:0; padding:44px 40px 36px; background:linear-gradient(to top, rgba(10,11,30,0.94) 0%, rgba(10,11,30,0.55) 60%, rgba(10,11,30,0) 100%); }
.ins-dest-overlay .ins-cat { color:#C4B5FD; margin-bottom:14px; }
.ins-dest-overlay h2 { font-size:clamp(24px,2.6vw,32px); font-weight:400; line-height:1.3; margin:0 0 14px; letter-spacing:-0.3px; max-width:20ch; }
.ins-dest-overlay p { font-size:15px; color:rgba(255,255,255,0.65); font-weight:300; line-height:1.6; margin:0 0 22px; max-width:38ch; }
.ins-dest-side { display:flex; flex-direction:column; gap:20px; height:100%; }
.ins-dest-side-card { flex:1; display:grid; grid-template-columns:1fr 1.1fr; border:1px solid var(--border); border-radius:2px; overflow:hidden; text-decoration:none; color:inherit; cursor:pointer; }
@media (max-width:500px){ .ins-dest-side-card{ grid-template-columns:1fr; grid-template-rows:140px auto; } }
.ins-dest-side-media { background:linear-gradient(135deg,#2D1B69 0%,#1A1A2E 60%,#4A1FA8 100%); }
.ins-dest-side-media.alt { background:linear-gradient(135deg,#1A3A7A 0%,#0D1A3D 60%,#1A1B3A 100%); }
.ins-dest-side-body { padding:24px 24px 20px; display:flex; flex-direction:column; justify-content:center; }
.ins-dest-side-body .ins-cat { margin-bottom:10px; }
.ins-dest-side-body h3 { font-size:18px; font-weight:400; line-height:1.35; margin:0 0 10px; letter-spacing:-0.1px; }
.ins-dest-side-body p { font-size:13px; color:var(--mid); font-weight:300; line-height:1.55; margin:0 0 16px; }

.ins-read-more { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--brand); width:fit-content; }
.ins-read-more.on-dark { color:#C4B5FD; }
.ins-read-more svg { width:10px; height:10px; transition:transform 0.25s ease; }
a:hover .ins-read-more svg { transform:translate(2px,-2px); }

/* listagem: fundo cinza, cards brancos, dois dropdowns (Categoria/Ordenar) */
.ins-listing { background:var(--bg-alt); padding:48px 0 64px; }
.ins-listing-head { display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; margin-bottom:32px; }
.ins-listing-head .eyebrow { margin-bottom:0; }
.ins-listing-controls { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }

.ins-dd { position:relative; }
.ins-dd summary { list-style:none; cursor:pointer; display:flex; align-items:center; gap:6px; font-size:13px; font-weight:500; color:var(--dark); white-space:nowrap; padding:10px 16px; border-radius:2px; border:1px solid var(--border); background:#fff; }
.ins-dd summary::-webkit-details-marker { display:none; }
.ins-dd summary:hover { border-color:var(--brand); color:var(--brand); }
.ins-dd[open] summary { border-color:var(--brand); color:var(--brand); }
.ins-dd-panel { position:absolute; top:calc(100% + 6px); left:0; z-index:30; min-width:180px; background:#fff; border:1px solid var(--border); border-radius:2px; padding:6px; display:flex; flex-direction:column; box-shadow:0 8px 24px rgba(12,13,37,0.12); }
.ins-dd-panel a { font-size:13px; color:var(--dark); text-decoration:none; padding:9px 12px; border-radius:2px; white-space:nowrap; }
.ins-dd-panel a.active { color:var(--brand); font-weight:600; }
.ins-dd-panel a:hover { background:var(--bg-alt); color:var(--brand); }

.ins-listing-body { display:grid; grid-template-columns:1fr 300px; gap:32px; align-items:start; }
@media (max-width:900px){ .ins-listing-body{ grid-template-columns:1fr; } }

/* cards horizontais da listagem */
.ins-cards { display:flex; flex-direction:column; gap:16px; }
.ins-card { background:#fff; border:1px solid var(--border); border-radius:2px; overflow:hidden; cursor:pointer; display:grid; grid-template-columns:minmax(220px,34%) 1fr; align-items:stretch; text-decoration:none; color:inherit; }
@media (max-width:640px){ .ins-card{ grid-template-columns:1fr; grid-template-rows:170px auto auto; } .ins-card-media{ grid-row:1; } .ins-card-body{ grid-row:2; } .ins-card-foot{ grid-row:3; } }
.ins-card-media { grid-column:1; grid-row:1/3; background:linear-gradient(135deg,#1A3A7A 0%,#0D1A3D 60%,#1A1B3A 100%); }
.ins-card-media.alt1 { background:linear-gradient(135deg,#2D1B69 0%,#1A1A2E 60%,#4A1FA8 100%); }
.ins-card-media.alt2 { background:linear-gradient(135deg,#6535E8 0%,#4A1FA8 60%,#2D1B69 100%); }
.ins-card-body { grid-column:2; grid-row:1; padding:20px 24px 0; display:flex; flex-direction:column; justify-content:center; }
.ins-cat { font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--brand); margin-bottom:10px; }
.ins-card-body h4 { font-size:17px; font-weight:400; line-height:1.4; margin:0 0 12px; letter-spacing:-0.1px; color:var(--dark); }
.ins-card-body h4 mark, .ins-card-snippet mark { background:rgba(101,53,232,0.16); color:var(--dark); border-radius:1px; padding:0 1px; }
.ins-card-snippet { font-size:13px; color:var(--mid); font-weight:300; line-height:1.55; margin:0; }
.ins-card-foot { grid-column:2; grid-row:2; display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border); margin:14px 24px 0; padding:14px 0 18px; font-size:12px; color:var(--mid); }
.ins-card-foot .ins-foot-arrow { color:var(--brand); transition:transform 0.25s ease; }
.ins-card:hover .ins-foot-arrow { transform:translate(2px,-2px); }

/* paginação */
.ins-pagination { display:flex; justify-content:center; align-items:center; gap:8px; margin-top:48px; }
.ins-pagination a { width:34px; height:34px; display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--mid); text-decoration:none; border:1px solid var(--border); border-radius:2px; }
.ins-pagination a.active { background:var(--brand); border-color:var(--brand); color:#fff; }

/* estado vazio (categoria/tag ou busca sem resultado) */
.ins-empty { background:#fff; border:1px dashed var(--border); border-radius:2px; padding:56px 32px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:16px; }
.ins-empty p { font-size:15px; color:var(--mid); font-weight:300; margin:0; max-width:44ch; }
.ins-empty p strong { color:var(--dark); font-weight:600; }
.ins-empty-suggestions { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.ins-empty-suggestions a { font-size:12px; color:var(--mid); text-decoration:none; border:1px solid var(--border); padding:7px 14px; border-radius:2px; background:#fff; }
.ins-empty-suggestions a:hover { border-color:var(--brand); color:var(--brand); }

/* sidebar institucional: 4 blocos (institucional + 3 frentes) */
.ins-sidebar { position:sticky; top:104px; display:flex; flex-direction:column; gap:16px; }
@media (max-width:900px){ .ins-sidebar{ position:static; } }
.ins-sidebar-card { background:#fff; border-radius:2px; padding:28px 26px; }
.ins-sidebar-intro { display:flex; flex-direction:column; gap:14px; }
.ins-sidebar-intro .ins-mark { width:22px; height:22px; display:block; }
.ins-sidebar-intro .ins-brandname { font-size:15px; font-weight:600; color:var(--dark); letter-spacing:-0.1px; margin-top:2px; }
.ins-sidebar-intro .ins-tagline-big { font-size:14px; font-weight:400; color:var(--dark); line-height:1.4; letter-spacing:-0.2px; margin:0; }
.ins-sidebar-intro .btn-mini { font-family:var(--font); font-size:13px; font-weight:500; text-align:center; text-decoration:none; background:var(--brand); color:#fff; border-radius:2px; padding:12px 18px; margin-top:6px; display:inline-flex; align-items:center; justify-content:center; gap:8px; transition:background 0.15s; }
.ins-sidebar-intro .btn-mini:hover { background:var(--dark); }
.ins-sidebar-intro .btn-mini svg { width:12px; height:12px; transition:transform 0.25s ease; }
.ins-sidebar-intro .btn-mini:hover svg { transform:translate(2px,-2px); }
.ins-sidebar-group-label { font-size:11px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--mid); padding:4px 4px 0; }
.ins-sidebar-pillar { display:flex; flex-direction:column; gap:14px; text-decoration:none; color:inherit; border:1px solid transparent; transition:border-color 0.2s ease, transform 0.2s ease; }
.ins-sidebar-pillar:hover { border-color:var(--brand); transform:translateY(-2px); }
.ins-sidebar-pillar svg { flex-shrink:0; }
.ins-sidebar-pillar h5 { font-size:15px; font-weight:600; color:var(--dark); margin:0; letter-spacing:-0.1px; }
.ins-sidebar-pillar p { font-size:14px; color:var(--dark); font-weight:300; line-height:1.55; margin:0; }

/* página do artigo */
.ins-article-head { padding:24px 0 0; }
.ins-article-head h1 { font-size:clamp(32px,4vw,48px); font-weight:400; line-height:1.2; letter-spacing:-0.8px; margin:0 0 20px; max-width:22ch; color:var(--dark); }
.ins-article-lead { font-size:19px; color:var(--mid); font-weight:300; line-height:1.6; max-width:62ch; margin:0 0 28px; }
.ins-article-meta { display:flex; align-items:center; gap:14px; padding-bottom:32px; border-bottom:1px solid var(--border); flex-wrap:wrap; }
.ins-avatar { width:38px; height:38px; border-radius:50%; background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:600; flex-shrink:0; }
.ins-article-meta .ins-who strong { display:block; font-size:14px; font-weight:600; color:var(--dark); }
.ins-article-meta .ins-who span { font-size:13px; color:var(--mid); }
.ins-meta-sep { width:3px; height:3px; border-radius:50%; background:var(--mid); flex-shrink:0; }
.ins-article-meta .ins-when { font-size:13px; color:var(--mid); }
.ins-share { display:flex; align-items:center; gap:8px; margin-left:auto; }
.ins-share a { width:34px; height:34px; display:flex; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:2px; color:var(--mid); text-decoration:none; transition:border-color 0.2s ease, color 0.2s ease; }
.ins-share a:hover { border-color:var(--brand); color:var(--brand); }

.ins-article-cover { padding:32px 0; }
.ins-cover-media { height:420px; border-radius:2px; background:linear-gradient(135deg,#6535E8 0%,#4A1FA8 55%,#2D1B69 100%); }
@media (max-width:720px){ .ins-cover-media{ height:240px; } }

.ins-article-body { padding:16px 0 64px; }
.ins-body-grid { display:grid; grid-template-columns:1fr 300px; gap:56px; align-items:start; }
@media (max-width:900px){ .ins-body-grid{ grid-template-columns:1fr; gap:40px; } }

.ins-prose { max-width:720px; font-size:17px; color:var(--mid); font-weight:300; line-height:1.8; }
.ins-prose h2 { font-size:26px; font-weight:400; color:var(--dark); letter-spacing:-0.3px; margin:40px 0 18px; line-height:1.3; }
.ins-prose h2:first-child { margin-top:0; }
.ins-prose p { margin:0 0 22px; }
.ins-prose strong { color:var(--dark); font-weight:600; }
.ins-prose ul { margin:0 0 22px; padding-left:20px; }
.ins-prose li { margin-bottom:10px; }
.ins-pull { margin:36px 0; padding:4px 0 4px 24px; border-left:2px solid var(--brand); font-size:22px; font-weight:300; font-style:italic; color:var(--dark); line-height:1.5; }

.ins-tags { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:44px; padding-top:28px; border-top:1px solid var(--border); }
.ins-tags .ins-tags-label { font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--dark); margin-right:4px; }
.ins-tags a { font-size:12px; color:var(--mid); text-decoration:none; border:1px solid var(--border); padding:6px 12px; border-radius:2px; background:#fff; }
.ins-tags a:hover { border-color:var(--brand); color:var(--brand); }

.ins-author-card { display:flex; gap:20px; align-items:flex-start; background:var(--bg-alt); border-radius:2px; padding:26px; margin-top:28px; }
.ins-author-card .ins-avatar { width:56px; height:56px; font-size:16px; }
.ins-author-card .ins-who strong { font-size:16px; }
.ins-author-card .ins-who span { display:block; margin-top:2px; margin-bottom:10px; }
.ins-author-card .ins-who p { font-size:14px; color:var(--mid); font-weight:300; line-height:1.6; margin:0; }

.ins-feedback { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:32px; padding-top:28px; border-top:1px solid var(--border); }
.ins-feedback .ins-fb-q { font-size:14px; font-weight:600; color:var(--dark); margin-right:4px; }
.ins-feedback .ins-fb-btn { font-family:var(--font); font-size:13px; font-weight:500; color:var(--mid); background:#fff; border:1px solid var(--border); border-radius:2px; padding:9px 20px; cursor:pointer; transition:border-color 0.2s ease, color 0.2s ease; }
.ins-feedback .ins-fb-btn:hover { border-color:var(--brand); color:var(--brand); }
.ins-feedback .ins-fb-thanks { font-size:13px; color:var(--brand); font-style:italic; display:none; }
.ins-feedback.answered .ins-fb-btn { display:none; }
.ins-feedback.answered .ins-fb-thanks { display:inline; }

.ins-article-cta { background:var(--dark); padding:64px 0; }
.ins-cta-box { display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap; }
.ins-cta-box h3 { color:#fff; font-size:28px; font-weight:300; margin:0 0 8px; letter-spacing:-0.4px; max-width:20ch; }
.ins-cta-box p { color:rgba(255,255,255,0.5); font-size:15px; font-weight:300; margin:0; max-width:44ch; }

.ins-continue { padding:64px 0; }
.ins-cl-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:32px; }
@media (max-width:860px){ .ins-cl-cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .ins-cl-cards{ grid-template-columns:1fr; } }
.ins-cl-card { background:#fff; border:1px solid var(--border); border-radius:2px; overflow:hidden; text-decoration:none; color:inherit; display:flex; flex-direction:column; }
.ins-cl-media { height:160px; background:linear-gradient(135deg,#1A3A7A 0%,#0D1A3D 60%,#1A1B3A 100%); }
.ins-cl-media.alt1 { background:linear-gradient(135deg,#2D1B69 0%,#1A1A2E 60%,#4A1FA8 100%); }
.ins-cl-media.alt2 { background:linear-gradient(135deg,#6535E8 0%,#4A1FA8 60%,#2D1B69 100%); }
.ins-cl-body { padding:20px 20px 18px; flex:1; display:flex; flex-direction:column; }
.ins-cl-body h4 { font-size:15.5px; font-weight:400; line-height:1.4; margin:0 0 14px; flex:1; letter-spacing:-0.1px; color:var(--dark); }

@media (max-width: 900px) {
  .ins-listing-body, .ins-body-grid { grid-template-columns: 1fr !important; }
}
