/* ════════════════════════════════════════════════════════════
   inner.css — estilos específicos das páginas internas
   (cases, blog, sobre, contato). Reaproveita variáveis e
   componentes globais definidos em site.css.
   ════════════════════════════════════════════════════════════ */

body.is-inner { padding-top: 70px; }

/* ═══════════════════════════════════════════════════════════════════
   BLOG PORTAL — bp-* components
   Portal editorial premium: fundo branco, tipografia forte,
   preto / branco / cyan da marca. Público: C-Level, empreendedores,
   devs.
═══════════════════════════════════════════════════════════════════ */

/* ── Variáveis de portal ── */
.blog-portal {
  --bp-bg:        #FFFFFF;
  --bp-surface:   #F7F8FA;
  --bp-border:    #E8ECF2;
  --bp-text:      #0A1628;
  --bp-muted:     #5C7691;
  --bp-faded:     #9BAAB8;
  --bp-cyan:      #00A8B8;
  --bp-cyan-soft: rgba(0,168,184,.08);
  background: var(--bp-bg);
}

/* ── Utilities ── */
.bp-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bp-cyan);
  margin-bottom: 16px;
}
.bp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--bp-cyan);
  background: var(--bp-cyan-soft);
  padding: 4px 10px;
  border-radius: 4px;
}
.bp-meta {
  font-size: 12px;
  color: var(--bp-faded);
  letter-spacing: .04em;
}
.bp-arrow-link {
  font-size: 16px;
  color: var(--bp-cyan);
  text-decoration: none;
  transition: transform .2s;
  display: inline-block;
}
.bp-arrow-link:hover { transform: translateX(4px); }

/* ── Hero ── */
.bp-hero {
  background: var(--bp-bg);
  border-bottom: 1px solid var(--bp-border);
  padding: 80px 0 60px;
}
.bp-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.bp-hero__h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--bp-text);
  margin: 0 0 20px;
}
.bp-hero__h1 strong {
  font-weight: 700;
}
.bp-hero__sub {
  font-size: 17px;
  color: var(--bp-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}
.bp-hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.bp-cat-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--bp-muted);
  border: 1px solid var(--bp-border);
  border-radius: 100px;
  padding: 6px 16px;
  cursor: default;
  transition: all .2s;
  white-space: nowrap;
}
.bp-cat-pill--active,
.bp-cat-pill:hover {
  color: var(--bp-cyan);
  border-color: var(--bp-cyan);
  background: var(--bp-cyan-soft);
}

/* ── Featured post ── */
.bp-featured {
  background: var(--bp-bg);
  padding: 64px 0 0;
}
.bp-feat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--bp-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .3s;
}
.bp-feat-card:hover {
  box-shadow: 0 24px 64px -16px rgba(10,22,40,.10);
}
.bp-feat-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bp-surface);
}
.bp-feat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.bp-feat-card:hover .bp-feat-card__img img { transform: scale(1.04); }
.bp-feat-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E8ECF2, #F7F8FA);
}
.bp-feat-card__body {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--bp-bg);
}
.bp-feat-card__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--bp-text);
  margin: 0;
}
.bp-feat-card__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bp-muted);
  margin: 0;
  flex: 1;
}
.bp-feat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bp-border);
  padding-top: 20px;
  margin-top: auto;
}
.bp-read-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-cyan);
  letter-spacing: .02em;
}

/* ── Grid section ── */
.bp-grid-section {
  background: var(--bp-bg);
  padding: 64px 0 80px;
}
.bp-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bp-faded);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bp-border);
}
.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Post card ── */
.bp-card {
  background: var(--bp-bg);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.bp-card:hover {
  box-shadow: 0 16px 48px -12px rgba(10,22,40,.09);
  transform: translateY(-3px);
}
.bp-card__cover {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bp-surface);
}
.bp-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bp-card:hover .bp-card__cover img { transform: scale(1.05); }
.bp-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E8ECF2, #F7F8FA);
}
.bp-card__body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bp-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--bp-text);
  margin: 0;
}
.bp-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.bp-card__title a:hover { color: var(--bp-cyan); }
.bp-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bp-muted);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bp-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--bp-border);
  margin-top: auto;
}

/* ── Empty state ── */
.bp-empty { padding: 80px 0; color: var(--bp-muted); }

/* ── Pagination ── */
.bp-pagination {
  background: var(--bp-bg);
  border-top: 1px solid var(--bp-border);
  padding: 40px 0;
}
.bp-pagination .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bp-pag-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-text);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  transition: all .2s;
}
.bp-pag-btn:hover {
  border-color: var(--bp-cyan);
  color: var(--bp-cyan);
}
.bp-pag-nums { display: flex; gap: 4px; }
.bp-pag-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--bp-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s;
}
.bp-pag-num:hover { background: var(--bp-cyan-soft); color: var(--bp-cyan); }
.bp-pag-num--active {
  background: var(--bp-text);
  color: #fff;
  font-weight: 700;
}

/* ── CTA ── */
.bp-cta {
  background: var(--bp-text);
  padding: 100px 0;
}
.bp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.bp-cta .bp-label { color: rgba(255,255,255,.45); }
.bp-cta__h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0;
}
.bp-cta__h2 strong { font-weight: 700; }
.bp-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--bp-text);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-dark:hover {
  background: var(--bp-cyan);
  color: #fff;
}
.bp-cta__link {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.bp-cta__link:hover { color: rgba(255,255,255,.8); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .bp-hero__inner { flex-direction: column; align-items: flex-start; }
  .bp-hero__categories { justify-content: flex-start; }
  .bp-feat-card { grid-template-columns: 1fr; }
  .bp-feat-card__img { aspect-ratio: 16/9; }
  .bp-feat-card__body { padding: 36px 32px; }
  .bp-cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .bp-hero { padding: 56px 0 40px; }
  .bp-grid { grid-template-columns: 1fr; }
  .bp-feat-card__body { padding: 28px 24px; }
  .bp-cta { padding: 72px 0; }
}

.inner-main { position: relative; z-index: 1; }

/* ───── Hero interno ───── */
.inner-hero {
  padding: 120px 0 80px;
  position: relative;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  background: radial-gradient(circle, var(--cyan-glow), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}
.inner-hero h1 .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
}
.inner-hero .lead {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 720px;
}

/* ───── Section padrão interna ───── */
.inner-section { padding: 100px 0; }
.inner-section h2 { margin-bottom: 24px; }

/* ───── CTA interno ───── */
.inner-cta {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.inner-cta h2 { margin-bottom: 24px; }
.inner-cta .hero-actions {
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 0;
}

/* ───── Voltar ───── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--cyan); }

/* ════════════════════════════════════════════════════════════
   CASES
   ════════════════════════════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.case-card {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-surface));
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(0, 212, 232, 0.18);
}
.case-card__cover {
  display: block;
  aspect-ratio: 16/10;
  background: var(--bg-deep);
  overflow: hidden;
  text-decoration: none;
}
.case-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.case-card:hover .case-card__cover img { transform: scale(1.04); }
.case-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-elevated));
  border-bottom: 1px solid var(--border);
}
.case-card__placeholder span {
  font-size: 64px;
  font-weight: 200;
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.4;
}
.case-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.case-card__tags {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.case-card__sector { color: var(--text-muted); font-size: 14px; }
.case-card h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.case-card h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.case-card h3 a:hover { color: var(--cyan); }
.case-card__body p { color: var(--text-muted); font-size: 14.5px; line-height: 1.5; }
.case-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 8px;
}
.case-card__link:hover .btn-arrow { transform: translateX(3px); }

/* ── Single ── */
.case-single { padding: 80px 0 0; }
.case-single__head { max-width: 880px; margin: 0 auto 48px; }
.case-single__head h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
}
.case-single__meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case-single__meta li { display: flex; flex-direction: column; gap: 6px; }
.case-single__meta span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faded);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.case-single__meta strong { color: var(--text); font-weight: 500; font-size: 15px; }
.case-single__meta a { color: var(--cyan); text-decoration: none; }
.case-single__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 64px;
  border: 1px solid var(--border);
}
.case-single__content { max-width: 760px; margin: 0 auto 80px; }

/* ════════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.post-card {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-surface));
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.post-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.post-card__cover {
  display: block;
  aspect-ratio: 16/9;
  background: var(--bg-deep);
  overflow: hidden;
}
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card__placeholder {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, var(--bg-elevated), var(--bg-mid)),
    radial-gradient(circle at 30% 30%, var(--cyan-glow), transparent 50%);
}
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.post-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.post-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.post-card h3 a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.post-card h3 a:hover { color: var(--cyan); }
.post-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }
.post-card__meta {
  margin-top: auto;
  padding-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faded);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Single post — layout 2 colunas dentro do container 1240px ── */
/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — bps-* (blog-post-single)
   Mesmo visual branco do portal de blog.
═══════════════════════════════════════════════════════════════════ */

/* ── Header ── */
.bps-header {
  background: var(--bp-bg, #fff);
  border-bottom: 1px solid var(--bp-border, #E8ECF2);
  padding: 64px 0 56px;
}
.bps-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bp-muted, #5C7691);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s;
}
.bps-back:hover { color: var(--bp-cyan, #00A8B8); }
.bps-header__inner { max-width: 800px; display: flex; flex-direction: column; gap: 16px; }
.bps-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--bp-text, #0A1628);
  margin: 8px 0 0;
}
.bps-excerpt {
  font-size: 18px;
  line-height: 1.65;
  color: var(--bp-muted, #5C7691);
  margin: 0;
  max-width: 680px;
}
.bps-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--bp-faded, #9BAAB8);
}
.bps-meta__sep { opacity: .5; }

/* ── Cover ── */
.bps-cover-wrap {
  background: var(--bp-bg, #fff);
  padding: 0 0 0;
}
.bps-cover {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  border: 1px solid var(--bp-border, #E8ECF2);
  margin-top: 40px;
}

/* ── Body layout ── */
.bps-body {
  background: var(--bp-bg, #fff);
  padding: 64px 0 80px;
}
.bps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: start;
}

/* ── Prose ── */
.bps-content { min-width: 0; }
.bps-prose {
  font-size: 17px;
  line-height: 1.8;
  color: #1A2B3C;
}
.bps-prose > * + * { margin-top: 24px; }
.bps-prose h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--bp-text, #0A1628);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bp-border, #E8ECF2);
}
.bps-prose h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--bp-text, #0A1628);
  margin-top: 40px;
  margin-bottom: 12px;
}
.bps-prose p { color: #334155; }
.bps-prose a {
  color: var(--bp-cyan, #00A8B8);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.bps-prose strong { color: var(--bp-text, #0A1628); font-weight: 700; }
.bps-prose ul, .bps-prose ol { padding-left: 1.5em; color: #334155; }
.bps-prose li + li { margin-top: 8px; }
.bps-prose blockquote {
  border-left: 3px solid var(--bp-cyan, #00A8B8);
  padding: 8px 24px;
  color: var(--bp-muted, #5C7691);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  background: var(--bp-cyan-soft, rgba(0,168,184,.06));
  border-radius: 0 8px 8px 0;
}
.bps-prose code {
  font-family: 'JetBrains Mono', monospace;
  font-size: .875em;
  padding: 2px 7px;
  background: #F1F5F9;
  border: 1px solid var(--bp-border, #E8ECF2);
  border-radius: 4px;
  color: var(--bp-cyan, #00A8B8);
}
.bps-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--bp-border, #E8ECF2);
}
.bps-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.bps-prose th, .bps-prose td {
  padding: 12px 16px;
  border: 1px solid var(--bp-border, #E8ECF2);
  text-align: left;
}
.bps-prose th {
  background: #F7F8FA;
  color: var(--bp-text, #0A1628);
  font-weight: 600;
}

/* ── Aside ── */
.bps-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.bps-aside-box {
  background: #fff;
  border: 1px solid var(--bp-border, #E8ECF2);
  border-radius: 14px;
  padding: 24px;
}
.bps-aside-box--cta {
  background: var(--bp-text, #0A1628);
  border-color: var(--bp-text, #0A1628);
}
.bps-aside-box--cta .bp-label { color: rgba(255,255,255,.45); }
.bps-aside-box--cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 8px 0 10px;
}
.bps-aside-box--cta p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin: 0 0 20px;
}
.bps-aside-btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
}
.bps-aside-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  margin-top: 10px;
  transition: color .2s;
}
.bps-aside-link:hover { color: rgba(255,255,255,.8); }
.bps-aside-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bp-faded, #9BAAB8);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bp-border, #E8ECF2);
}

/* ── Share ── */
.bps-share {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bps-share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #F7F8FA;
  border: 1px solid var(--bp-border, #E8ECF2);
  border-radius: 8px;
  color: var(--bp-muted, #5C7691);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}
.bps-share-btn svg { color: var(--bp-cyan, #00A8B8); flex-shrink: 0; }
.bps-share-btn:hover {
  border-color: var(--bp-cyan, #00A8B8);
  color: var(--bp-cyan, #00A8B8);
  background: var(--bp-cyan-soft, rgba(0,168,184,.06));
}

/* ── Related ── */
.bps-related { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.bps-related__link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: flex-start;
}
.bps-related__link img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--bp-border, #E8ECF2);
}
.bps-related__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bps-related__text .bp-tag { font-size: 10px; padding: 2px 7px; }
.bps-related__title {
  font-size: 13px;
  line-height: 1.4;
  color: var(--bp-text, #0A1628);
  font-weight: 600;
  transition: color .2s;
}
.bps-related__link:hover .bps-related__title { color: var(--bp-cyan, #00A8B8); }
.bps-related__meta { font-size: 11px; color: var(--bp-faded, #9BAAB8); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bps-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 48px; }
}
@media (max-width: 880px) {
  .bps-layout { grid-template-columns: 1fr; }
  .bps-aside { position: static; }
  .bps-cover { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .bps-header { padding: 48px 0 40px; }
  .bps-body { padding: 48px 0 60px; }
}

/* ── Pagination ── */
.pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination a, .pagination .current {
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--cyan); color: var(--cyan); }
.pagination .current { background: var(--cyan); color: var(--bg-deep); border-color: var(--cyan); font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   SOBRE
   ════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-stats .stat {
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.value-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 32px; margin-bottom: 32px; }
.contact-item { margin-bottom: 24px; }
.contact-item__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faded);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.contact-item__value {
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  display: block;
}
a.contact-item__value:hover { color: var(--cyan); }
.contact-socials { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s;
}
.contact-socials a:hover { border-color: var(--cyan); color: var(--cyan); }

.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form h2 { font-size: 26px; margin-bottom: 24px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.contact-form label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faded);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact-form input,
.contact-form textarea {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--bg-elevated);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.form-feedback--ok  { border-color: rgba(0, 212, 232, 0.4); color: var(--cyan); background: var(--cyan-faint); }
.form-feedback--err { border-color: rgba(239, 68, 68, 0.4); color: #fda4af; background: rgba(239, 68, 68, 0.06); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .post-single__layout { grid-template-columns: 1fr; gap: 56px; }
  .post-single__aside { position: static; max-width: 760px; }
}
@media (max-width: 880px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .inner-hero { padding: 80px 0 60px; }
  .inner-section { padding: 60px 0; }
  .post-single { padding: 56px 0 64px; }
  .post-single__cover { aspect-ratio: 16/10; margin-bottom: 36px; }
}

/* ════════════════════════════════════════════════════════════
   CONTATO — Cards de canais, FAQ e refinamentos do form
   ════════════════════════════════════════════════════════════ */

/* ── Channels grid ── */
.contact-channels { padding: 40px 0 80px; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-surface));
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.channel-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(0, 212, 232, 0.25);
}
.channel-card:hover::before { opacity: 1; }
.channel-card--featured {
  background: linear-gradient(180deg, rgba(0, 212, 232, 0.08), rgba(0, 212, 232, 0.02));
  border-color: rgba(0, 212, 232, 0.35);
}
.channel-card--featured:hover { box-shadow: 0 20px 40px -16px rgba(0, 212, 232, 0.35); }

.channel-card__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 232, 0.12);
  border: 1px solid rgba(0, 212, 232, 0.25);
  border-radius: 12px;
  color: var(--cyan);
}
.channel-card__body { flex: 1; min-width: 0; }
.channel-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.channel-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2px;
}
.channel-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}
.channel-card__arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}
.channel-card:hover .channel-card__arrow { color: var(--cyan); transform: translateX(4px); }

@media (max-width: 880px) {
  .channels-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Form refinements ── */
.contact-form-section { padding: 40px 0 100px; }

.contact-info-side h2 { font-size: 28px; margin-bottom: 28px; }
.trust-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
  padding: 16px;
  background: var(--cyan-faint);
  border: 1px solid rgba(0, 212, 232, 0.2);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.trust-line svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.form-intro {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  margin-top: -12px;
}
.contact-form select {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300D4E8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: border-color 0.2s, background-color 0.2s;
}
.contact-form select:focus {
  outline: none;
  border-color: var(--cyan);
  background-color: var(--bg-elevated);
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  margin-top: 8px;
  font-size: 15px;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.form-privacy {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-faded);
  text-align: center;
  line-height: 1.5;
}

/* ── FAQ ── */
.contact-faq { padding: 100px 0; border-top: 1px solid var(--border); background: var(--bg-mid); }
.contact-faq .section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.contact-faq .section-header .section-eyebrow { justify-content: center; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] {
  border-color: var(--cyan);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-surface));
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--cyan); }
.faq-icon {
  font-size: 22px;
  font-weight: 200;
  color: var(--cyan);
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-content {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-content p { color: var(--text-muted); }

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; }
  .contact-faq { padding: 64px 0; }
  .contact-channels { padding: 20px 0 40px; }
}

/* ════════════════════════════════════════════════════════════
   PÁGINA DE SERVIÇO — premium
   ════════════════════════════════════════════════════════════ */

.service-page { position: relative; }

/* ─── Hero ─── */
.service-hero {
  padding: 120px 0 80px;
  position: relative;
  isolation: isolate;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, var(--cyan-glow), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.service-hero .eyebrow { margin-bottom: 28px; }
.service-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 1000px;
}
.service-hero h1 .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
}
.service-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 10px 18px;
  background: var(--cyan-faint);
  border: 1px solid rgba(0, 212, 232, 0.15);
  border-radius: 100px;
  display: inline-block;
}
.service-hero .hero-actions { margin-bottom: 0; }

/* ─── Overview (O que é + Pra quem) ─── */
.service-overview { padding: 80px 0; }
.service-overview__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-lead {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.service-for-who {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 14px;
  padding: 28px 30px;
}
.service-for-who p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ─── Process (como funciona) ─── */
.service-process {
  padding: 100px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-process .section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.service-process .section-header .section-eyebrow { justify-content: center; }
.service-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: step;
  max-width: 880px;
  margin: 0 auto;
}
.service-steps li {
  display: flex;
  gap: 32px;
  padding: 32px 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-items: flex-start;
  transition: all 0.25s;
}
.service-steps li:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
}
.service-step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 200;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}
.service-steps h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-steps p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Features ─── */
.service-features { padding: 100px 0; }
.service-features .section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.service-features .section-header .section-eyebrow { justify-content: center; }
.service-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-feature {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-surface));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.25s;
}
.service-feature:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(0, 212, 232, 0.18);
}
.service-feature__icon {
  width: 40px; height: 40px;
  background: rgba(0, 212, 232, 0.12);
  border: 1px solid rgba(0, 212, 232, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 18px;
}
.service-feature h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-feature p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Cases relacionados ─── */
.service-cases {
  padding: 100px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.service-cases .section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.service-cases .section-header .section-eyebrow { justify-content: center; }

/* ─── CTA final + pricing ─── */
.service-cta-final {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.service-pricing {
  display: inline-block;
  text-align: center;
  margin-bottom: 56px;
  padding: 28px 48px;
  background: var(--cyan-faint);
  border: 1px solid rgba(0, 212, 232, 0.25);
  border-radius: 16px;
}
.service-pricing .section-eyebrow { justify-content: center; margin-bottom: 8px; }
.service-pricing__value {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service-pricing__note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.service-cta-box h2 { margin-bottom: 16px; }
.service-cta-box .lead { margin: 0 auto 36px; max-width: 600px; }
.service-cta-box .hero-actions { justify-content: center; margin: 0; }

/* ─── Responsive ─── */
@media (max-width: 880px) {
  .service-hero { padding: 80px 0 60px; }
  .service-overview__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-process, .service-features, .service-cases, .service-cta-final { padding: 64px 0; }
  .service-steps li { flex-direction: column; gap: 12px; padding: 24px 22px; }
  .service-pricing { padding: 22px 28px; }
}


/* ═══════════════════════════════════════════
   DISCOVERY PAGE
═══════════════════════════════════════════ */
.discovery-page { position: relative; }

/* ── Hero ── */
.disc-hero {
  padding: 100px 0 80px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.disc-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(0,212,232,0.06), transparent 65%);
  pointer-events: none;
}
.disc-hero .container { position: relative; }

.disc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.disc-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cyan);
}

.disc-hero__h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 800px;
  color: var(--text);
}
.disc-hero__h1 .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
}
.disc-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}
.disc-hero__actions { margin-bottom: 64px; }

.disc-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.disc-hero__stat {
  padding: 0 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.disc-hero__stat:first-child { padding-left: 0; }
.disc-hero__stat + .disc-hero__stat {
  padding-left: 48px;
  border-left: 1px solid var(--border);
}
.disc-hero__stat-num {
  font-size: 36px;
  font-weight: 200;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.03em;
}
.disc-hero__stat-label {
  font-size: 13px;
  color: var(--text-faded);
  letter-spacing: 0.2px;
}

/* ── O que é (light) ── */
.disc-what {
  padding: 100px 0;
}
.disc-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.disc-what__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan-deep);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.disc-what__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cyan-deep);
}
.disc-what h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--light-text);
}
.disc-what h2 .accent { color: var(--cyan-deep); font-style: italic; }
.disc-what__text p {
  font-size: 16px;
  color: var(--light-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.disc-what__text p:last-child { margin-bottom: 0; }
.disc-what__text em { color: var(--light-text-soft); font-style: italic; }

.disc-for-who-title {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-text-faded);
  margin-bottom: 24px;
}
.disc-for-who {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.disc-for-who li {
  font-size: 15px;
  color: var(--light-text-muted);
  line-height: 1.5;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disc-for-who li:first-child { border-top: 1px solid var(--light-border); }
.disc-for-who li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan-deep);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Entregáveis (light) ── */
.disc-deliverables {
  padding: 100px 0;
  border-top: 1px solid var(--light-border);
}
.disc-del-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.disc-del-header .disc-what__eyebrow { margin-bottom: 20px; }
.disc-del-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--light-text);
}
.disc-del-header h2 .accent { color: var(--cyan-deep); font-style: italic; }

.disc-del-list {
  display: flex;
  flex-direction: column;
}
.disc-del-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--light-border);
}
.disc-del-item:first-child { border-top: 1px solid var(--light-border); }
.disc-del-item__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--cyan-deep);
  letter-spacing: 1px;
  padding-top: 4px;
  opacity: 0.7;
}
.disc-del-item__body h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--light-text);
  margin-bottom: 10px;
}
.disc-del-item__body p {
  font-size: 15px;
  color: var(--light-text-muted);
  line-height: 1.75;
  max-width: 640px;
}
.disc-del-item__badge {
  display: inline-flex;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan-deep);
  background: rgba(0,168,184,0.08);
  border: 1px solid rgba(0,168,184,0.2);
  border-radius: 100px;
  padding: 4px 14px;
}

/* ── Como funciona (dark) ── */
.disc-process {
  padding: 100px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.disc-process__header {
  max-width: 560px;
  margin-bottom: 64px;
}
.disc-process__header .disc-tag { margin-bottom: 24px; }
.disc-process__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.disc-process__header h2 .accent { color: var(--cyan); font-style: italic; }
.disc-process__header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.disc-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.disc-step {
  background: var(--bg-mid);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.disc-step:hover { background: var(--bg-elevated); }
.disc-step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2px;
  opacity: 0.7;
}
.disc-step h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.disc-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Por que a Inundaweb (light) ── */
.disc-why {
  padding: 100px 0;
  border-top: 1px solid var(--light-border);
}
.disc-why__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.disc-why__header .disc-what__eyebrow { margin-bottom: 20px; }
.disc-why__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--light-text);
}
.disc-why__header h2 .accent { color: var(--cyan-deep); font-style: italic; }

.disc-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--light-border);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
}
.disc-why__item {
  background: var(--light-surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.disc-why__item:hover { background: var(--light-elevated); }
.disc-why__item-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan-deep);
  letter-spacing: 2px;
  opacity: 0.6;
}
.disc-why__item h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--light-text);
}
.disc-why__item p {
  font-size: 14px;
  color: var(--light-text-muted);
  line-height: 1.75;
}

/* ── CTA Final ── */
.disc-cta {
  padding: 120px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.disc-cta::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,232,0.08), transparent 65%);
  pointer-events: none;
}
.disc-cta .container { position: relative; }
.disc-cta__note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faded);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.disc-cta h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.disc-cta__lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.disc-cta .hero-actions { justify-content: center; margin: 0; }

/* ── Responsive ── */
@media (max-width: 880px) {
  .disc-hero { padding: 72px 0 60px; }
  .disc-hero__stat { padding: 0 32px 0 0; }
  .disc-hero__stat + .disc-hero__stat { padding-left: 32px; }
  .disc-hero__stat-num { font-size: 28px; }
  .disc-what__grid { grid-template-columns: 1fr; gap: 48px; }
  .disc-del-item { grid-template-columns: 56px 1fr; gap: 0 24px; }
  .disc-steps { grid-template-columns: 1fr; }
  .disc-why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .disc-hero__h1 { font-size: 36px; }
  .disc-hero__stats { gap: 24px; }
  .disc-hero__stat + .disc-hero__stat { border-left: none; padding-left: 0; }
  .disc-del-item { grid-template-columns: 1fr; gap: 8px; }
  .disc-step, .disc-why__item { padding: 28px 24px; }
  .disc-cta { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   WEBSITES PAGE — wb-* components
   Premium Apple-inspired layout: typography as hero, whitespace as
   luxury, business-first communication, technical specs last.
═══════════════════════════════════════════════════════════════════ */

/* ── Shared utilities ── */
.wb-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep, #00A8B8);
  margin-bottom: 16px;
}
.wb-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.wb-accent { color: var(--cyan-deep, #00A8B8); }
.wb-accent-light { color: var(--cyan-deep, #00A8B8); }

/* ── Hero ── */
.wb-hero {
  background: var(--bg, #0A1628);
  padding: 120px 0 100px;
}
.wb-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.wb-hero__pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 16px;
}
.wb-hero__h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0;
}
.wb-hero__accent {
  color: var(--cyan-deep, #00A8B8);
}
.wb-hero__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.wb-hero__sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  margin: 0;
}

/* ── Impact ── */
.wb-impact {
  padding: 100px 0;
}
.wb-impact__pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep, #00A8B8);
  margin-bottom: 56px;
}
.wb-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-border, #E2E8F0);
}
.wb-impact__item {
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--light-border, #E2E8F0);
}
.wb-impact__item:first-child { padding-left: 0; }
.wb-impact__item:last-child { border-right: none; padding-right: 0; padding-left: 48px; }
.wb-impact__item:nth-child(2) { padding-left: 48px; }
.wb-impact__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cyan-deep, #00A8B8);
  margin-bottom: 20px;
}
.wb-impact__item h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--light-text, #0A1628);
  margin: 0 0 12px;
}
.wb-impact__item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-text-muted, #5C7691);
  margin: 0;
}

/* ── Statement ── */
.wb-statement {
  background: var(--bg, #0A1628);
  padding: 100px 0;
  text-align: center;
}
.wb-statement__quote {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin: 0 auto 20px;
  letter-spacing: -.01em;
  font-style: italic;
}
.wb-statement__attr {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  margin: 0;
}

/* ── Delivers ── */
.wb-delivers {
  padding: 100px 0;
}
.wb-delivers__header {
  margin-bottom: 64px;
}
.wb-delivers__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--light-text, #0A1628);
  margin: 0;
}
.wb-delivers__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light-border, #E2E8F0);
}
.wb-deliver {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--light-border, #E2E8F0);
  align-items: start;
}
.wb-deliver__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cyan-deep, #00A8B8);
  padding-top: 4px;
}
.wb-deliver__body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--light-text, #0A1628);
  margin: 0 0 10px;
}
.wb-deliver__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-text-muted, #5C7691);
  margin: 0;
  max-width: 640px;
}

/* ── Process ── */
.wb-process {
  background: var(--bg, #0A1628);
  padding: 100px 0;
}
.wb-process__header {
  margin-bottom: 64px;
}
.wb-process__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0;
}
.wb-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.wb-pstep {
  padding: 48px 48px 48px 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.wb-pstep:first-child { padding-left: 0; }
.wb-pstep:last-child { border-right: none; padding-right: 0; padding-left: 48px; }
.wb-pstep:nth-child(2) { padding-left: 48px; }
.wb-pstep__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cyan-deep, #00A8B8);
  margin-bottom: 20px;
}
.wb-pstep__body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}
.wb-pstep__body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* ── Cases ── */
.wb-cases {
  padding: 100px 0;
}
.wb-cases__header {
  margin-bottom: 56px;
}
.wb-cases__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--light-text, #0A1628);
  margin: 0;
}

/* ── Specs ── */
.wb-specs {
  background: var(--bg, #0A1628);
  padding: 100px 0;
}
.wb-specs__header {
  margin-bottom: 56px;
}
.wb-specs__header .wb-tag { display: block; }
.wb-specs__sub {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  margin: 8px 0 0;
}
.wb-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.wb-spec {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: baseline;
}
.wb-specs__grid .wb-spec:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.wb-specs__grid .wb-spec:nth-child(even) {
  padding-left: 48px;
}
.wb-spec__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep, #00A8B8);
}
.wb-spec__value {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}

/* ── CTA ── */
.wb-cta {
  background: var(--bg, #0A1628);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.wb-cta__h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px;
}
.wb-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  margin: 0 0 48px;
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .wb-hero { padding: 80px 0 72px; }
  .wb-hero__foot { grid-template-columns: 1fr; gap: 32px; }
  .wb-impact__grid { grid-template-columns: 1fr; border-top: none; }
  .wb-impact__item {
    padding: 32px 0;
    border-right: none;
    border-top: 1px solid var(--light-border, #E2E8F0);
  }
  .wb-impact__item:last-child { padding-left: 0; }
  .wb-impact__item:nth-child(2) { padding-left: 0; }
  .wb-process__steps { grid-template-columns: 1fr; }
  .wb-pstep {
    padding: 36px 0;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .wb-pstep:last-child { padding-left: 0; }
  .wb-pstep:nth-child(2) { padding-left: 0; }
  .wb-specs__grid { grid-template-columns: 1fr; }
  .wb-spec {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right: none !important;
  }
}

@media (max-width: 640px) {
  .wb-hero__h1 { letter-spacing: -.02em; }
  .wb-deliver { grid-template-columns: 56px 1fr; gap: 0 16px; }
  .wb-spec { grid-template-columns: 1fr; gap: 6px; }
  .wb-cta { padding: 80px 0; }
}

/* ════════════════════════════════════════════════════════════
   WB-* extensões pra HOME (variants e wrappers)
   ════════════════════════════════════════════════════════════ */

/* Grid de 6 itens (diferenciais) — 3 cols × 2 rows */
.wb-impact--six .wb-impact__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
.wb-impact--six .wb-impact__item {
  border-right: none;
  padding: 0 !important;
}
.wb-impact--six .wb-impact__item:nth-child(3n+2) {
  padding-left: 0 !important;
}

/* H2 inline no impact (diferenciais usa h2 grande direto) */
.wb-impact__h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 8px 0 48px;
  max-width: 880px;
}

/* Subtítulo dentro do delivers__header */
.wb-delivers__sub {
  font-size: 17px;
  line-height: 1.55;
  margin-top: 16px;
  max-width: 720px;
  opacity: 0.85;
}

/* Segunda linha do h2 no bloco portfólio — fonte fina em azul claro */
.wb-delivers__sub-line {
  display: block;
  font-weight: 200;
  color: #00D4E8;
  font-size: inherit;
  line-height: inherit;
}

/* Variant: deliver clicável (cards da seção Soluções da home) */
a.wb-deliver--link {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
a.wb-deliver--link:hover {
  transform: translateX(4px);
}
a.wb-deliver--link:hover .wb-deliver__arrow {
  transform: translateX(4px);
  opacity: 1;
}
.wb-deliver__arrow {
  align-self: center;
  font-size: 22px;
  opacity: 0.35;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Narrative statement na home — variação compacta */
.narrative-statement {
  padding: 100px 0;
}

/* Responsive ajustes pro grid de 6 */
@media (max-width: 880px) {
  .wb-impact--six .wb-impact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wb-impact--six .wb-impact__item:nth-child(3n+2) {
    padding-left: 0 !important;
  }
  a.wb-deliver--link {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .wb-deliver__arrow { display: none; }
}

/* ════════════════════════════════════════════════════════════
   CONTATO — identidade Insights (blog-portal + ct-*)
   ════════════════════════════════════════════════════════════ */

/* Hero contato */
.bp-hero--contact {
  padding: 96px 0 80px;
}
.bp-hero--contact .bp-hero__sub {
  max-width: 520px;
}

/* Canais */
.ct-channels {
  padding: 0 0 80px;
  background: #fff;
}
.ct-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ct-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  background: #fff;
  border: 1.5px solid var(--bp-border, #E8ECF2);
  border-radius: 16px;
  text-decoration: none;
  color: var(--bp-text, #0A1628);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.ct-channel:hover {
  border-color: var(--bp-cyan, #00A8B8);
  box-shadow: 0 8px 32px rgba(0,168,184,0.12);
  transform: translateY(-2px);
}
.ct-channel--featured {
  background: var(--bp-text, #0A1628);
  border-color: var(--bp-text, #0A1628);
  color: #fff;
}
.ct-channel--featured:hover {
  background: #0D2040;
  border-color: #0D2040;
  box-shadow: 0 8px 32px rgba(10,22,40,0.2);
}
.ct-channel__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,168,184,0.08);
  border: 1px solid rgba(0,168,184,0.2);
  border-radius: 12px;
  color: var(--bp-cyan, #00A8B8);
  flex-shrink: 0;
}
.ct-channel--featured .ct-channel__icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.ct-channel__body { flex: 1; }
.ct-channel__label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bp-cyan, #00A8B8);
  margin-bottom: 4px;
}
.ct-channel--featured .ct-channel__label { color: rgba(255,255,255,0.6); }
.ct-channel__body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
  color: inherit;
}
.ct-channel__body p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
.ct-channel--featured .ct-channel__body p { color: rgba(255,255,255,0.65); }
.ct-channel__arrow {
  font-size: 20px;
  color: var(--bp-cyan, #00A8B8);
  flex-shrink: 0;
}
.ct-channel--featured .ct-channel__arrow { color: rgba(255,255,255,0.7); }

/* Form section */
.ct-form-section {
  padding: 80px 0;
  background: #F8FAFB;
  border-top: 1px solid var(--bp-border, #E8ECF2);
  border-bottom: 1px solid var(--bp-border, #E8ECF2);
}
.ct-form-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.ct-info__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #0A1628;
  line-height: 1.2;
  margin: 16px 0 36px;
  font-weight: 700;
}
.ct-info-item {
  margin-bottom: 24px;
}
.ct-info-item__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bp-cyan, #00A8B8);
  margin-bottom: 4px;
}
.ct-info-item__value {
  font-size: 15px;
  color: #334155;
}
.ct-info-socials {
  display: flex;
  gap: 16px;
}
.ct-info-socials a {
  font-size: 14px;
  color: #007A87;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.ct-info-socials a:hover { color: #0A1628; }
.ct-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 18px;
  background: rgba(0,168,184,0.06);
  border: 1px solid rgba(0,168,184,0.2);
  border-radius: 10px;
  font-size: 13px;
  color: #334155;
}
.ct-trust svg { color: var(--bp-cyan, #00A8B8); flex-shrink: 0; }

/* Formulário */
.ct-form {
  background: #fff;
  border: 1.5px solid var(--bp-border, #E8ECF2);
  border-radius: 20px;
  padding: 48px;
}
.ct-form__h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 6px;
}
.ct-form__intro {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 32px;
}
.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ct-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.ct-form__group label {
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}
.ct-form__group input,
.ct-form__group select,
.ct-form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E8ECF2;
  border-radius: 10px;
  font-size: 15px;
  color: #0A1628;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.ct-form__group input:focus,
.ct-form__group select:focus,
.ct-form__group textarea:focus {
  border-color: var(--bp-cyan, #00A8B8);
  box-shadow: 0 0 0 3px rgba(0,168,184,0.1);
}
.ct-form__group textarea { resize: vertical; }
.ct-form__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  border-radius: 10px;
}
.ct-form__privacy {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* FAQ */
.ct-faq {
  padding: 80px 0;
  background: #fff;
}
.ct-faq__header {
  margin-bottom: 48px;
}
.ct-faq__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #0A1628;
  font-weight: 700;
  margin-top: 14px;
}
.ct-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.ct-faq__item {
  border-top: 1px solid var(--bp-border, #E8ECF2);
  padding: 0 8px;
}
.ct-faq__item:nth-child(odd) { border-right: 1px solid var(--bp-border, #E8ECF2); padding-right: 40px; }
.ct-faq__item:nth-child(even) { padding-left: 40px; }
.ct-faq__item:last-child,
.ct-faq__item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--bp-border, #E8ECF2); }
.ct-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #0A1628;
  list-style: none;
  user-select: none;
}
.ct-faq__item summary::-webkit-details-marker { display: none; }
.ct-faq__icon {
  font-size: 22px;
  color: var(--bp-cyan, #00A8B8);
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ct-faq__item[open] .ct-faq__icon { transform: rotate(45deg); }
.ct-faq__content {
  padding-bottom: 24px;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}
.ct-faq__content p { margin: 0; }

/* Responsive */
@media (max-width: 880px) {
  .ct-channels__grid { grid-template-columns: 1fr; }
  .ct-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-form { padding: 28px 20px; }
  .ct-form__row { grid-template-columns: 1fr; gap: 0; }
  .ct-faq__grid { grid-template-columns: 1fr; }
  .ct-faq__item { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
  .ct-faq__item:last-child { border-bottom: 1px solid var(--bp-border, #E8ECF2); }
}

/* ════════════════════════════════════════════════════════════
   SOBRE — identidade Insights (ab-*)
   ════════════════════════════════════════════════════════════ */

.bp-hero--sobre { padding: 96px 0 80px; }
.bp-hero--sobre .bp-hero__sub { max-width: 560px; }

.ab-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.ab-ghost-link {
  font-size: 15px;
  font-weight: 500;
  color: #007A87;
  text-decoration: none;
  transition: color 0.2s;
}
.ab-ghost-link:hover { color: #0A1628; }

/* Statement quote */
.ab-statement {
  padding: 80px 0;
  background: #F8FAFB;
  border-top: 1px solid #E8ECF2;
  border-bottom: 1px solid #E8ECF2;
}
.ab-statement__quote {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: #0A1628;
  line-height: 1.4;
  border-left: 4px solid #00A8B8;
  padding-left: 32px;
  margin: 0 0 20px;
  max-width: 820px;
}
.ab-statement__attr {
  padding-left: 36px;
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
}

/* Seções genéricas */
.ab-section {
  padding: 96px 0;
  background: #ffffff;
}
.ab-section--gray { background: #F8FAFB; }
.ab-section__header {
  margin-bottom: 64px;
}
.ab-section__h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0A1628;
  line-height: 1.2;
  margin-top: 14px;
}

/* Quem somos — 3 colunas */
.ab-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ab-impact-item {
  padding: 36px 32px;
  background: #fff;
  border: 1.5px solid #E8ECF2;
  border-radius: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ab-section--gray .ab-impact-item { background: #fff; }
.ab-impact-item:hover {
  box-shadow: 0 12px 40px rgba(0,20,40,0.08);
  transform: translateY(-3px);
}
.ab-impact-item__num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #00A8B8;
  margin-bottom: 16px;
}
.ab-impact-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0A1628;
  line-height: 1.35;
  margin-bottom: 12px;
}
.ab-impact-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Missão — 4 valores em grid 2×2 */
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.ab-value {
  padding: 40px;
  border-bottom: 1px solid #E8ECF2;
  border-right: 1px solid #E8ECF2;
}
.ab-value:nth-child(2n) { border-right: none; }
.ab-value:nth-last-child(-n+2) { border-bottom: none; }
.ab-value__num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #00A8B8;
  margin-bottom: 14px;
}
.ab-value h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 10px;
}
.ab-value p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Como trabalhamos — 3 passos */
.ab-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid #E8ECF2;
  border-radius: 16px;
  overflow: hidden;
}
.ab-step {
  padding: 40px 36px;
  border-right: 1px solid #E8ECF2;
  background: #fff;
}
.ab-step:last-child { border-right: none; }
.ab-step__num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #00A8B8;
  margin-bottom: 20px;
}
.ab-step__body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 10px;
}
.ab-step__body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Números — 4 stats */
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid #E8ECF2;
  border-radius: 16px;
  overflow: hidden;
}
.ab-stat {
  padding: 40px 32px;
  border-right: 1px solid #E8ECF2;
  text-align: center;
}
.ab-stat:last-child { border-right: none; }
.ab-stat__num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #00A8B8;
  line-height: 1;
  margin-bottom: 8px;
}
.ab-stat__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 8px;
}
.ab-stat__desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .ab-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stat:nth-child(2) { border-right: none; }
  .ab-stat:nth-child(1),
  .ab-stat:nth-child(2) { border-bottom: 1px solid #E8ECF2; }
}
@media (max-width: 768px) {
  .ab-impact-grid { grid-template-columns: 1fr; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-value { border-right: none !important; border-bottom: 1px solid #E8ECF2 !important; }
  .ab-steps { grid-template-columns: 1fr; }
  .ab-step { border-right: none; border-bottom: 1px solid #E8ECF2; }
  .ab-step:last-child { border-bottom: none; }
  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-hero__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}
