/* ============================================================
   CONCEPT B — "Trusted & Clinical"
   Azul institucional #0b3d91 · Verde de ação #10b981
   NÃO alterar style.css — este arquivo é additive
   ============================================================ */

:root {
  --cb-bg:           #ffffff;
  --cb-surface:      #f4f6fb;
  --cb-ink:          #0b1d3a;
  --cb-ink2:         #475569;
  --cb-primary:      #0b3d91;
  --cb-primary-dark: #06245c;
  --cb-accent:       #10b981;
  --cb-rule:         #e5e9f2;
  --cb-font:         'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Aplicar Inter em todo o main */
main {
  font-family: var(--cb-font);
}

/* ============================================================
   HERO
   ============================================================ */
.b-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: var(--cb-primary-dark);
  overflow: hidden;
}

.b-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.b-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    #06245c 0%,
    rgba(11, 61, 145, 0.85) 45%,
    rgba(11, 61, 145, 0.05) 80%
  );
}

.b-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 7rem; /* espaço para sobreposição do quick-access */
  max-width: 680px;
}

.b-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9bd1ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.b-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #9bd1ff;
  flex-shrink: 0;
}

.b-hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.b-hero-accent {
  color: #9bd1ff;
}

.b-hero-sub {
  font-size: 1.0625rem;
  color: #cfe0ff;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2rem;
}

.b-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.b-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cb-accent);
  color: #ffffff;
  font-family: var(--cb-font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.b-btn-accent:hover {
  background: #0da371;
  color: #fff;
  transform: translateY(-1px);
}

.b-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--cb-font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.b-btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.b-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--cb-primary);
  color: #ffffff;
  font-family: var(--cb-font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.b-btn-primary:hover {
  background: var(--cb-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.b-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--cb-primary);
  font-family: var(--cb-font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--cb-primary);
  transition: background 0.2s, color 0.2s;
}
.b-btn-outline:hover {
  background: var(--cb-primary);
  color: #fff;
}

.b-btn-outline-sm {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--cb-primary);
  font-family: var(--cb-font);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--cb-primary);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.b-btn-outline-sm:hover {
  background: var(--cb-primary);
  color: #fff;
}

/* ============================================================
   QUICK-ACCESS STRIP
   ============================================================ */
.b-quick-access-wrap {
  position: relative;
  z-index: 10;
  margin-top: -64px;
  padding-bottom: 0;
}

.b-quick-access {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 48px -24px rgba(11, 29, 58, 0.28);
  overflow: hidden;
}

.b-qa-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--cb-ink);
  border-right: 1px solid var(--cb-rule);
  transition: background 0.2s;
}
.b-qa-card:last-child {
  border-right: none;
}
.b-qa-card:hover {
  background: var(--cb-surface);
}

.b-qa-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cb-surface);
  border-radius: 10px;
  color: var(--cb-primary);
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}

.b-qa-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cb-ink);
  line-height: 1.2;
}

.b-qa-desc {
  font-size: 0.8125rem;
  color: var(--cb-ink2);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.b-qa-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-primary);
  margin-top: 0.875rem;
}

/* ============================================================
   UTILITÁRIO: eyebrow label
   ============================================================ */
.b-eyebrow-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cb-primary);
  margin-bottom: 0.625rem;
}

.b-eyebrow-light {
  color: #9bd1ff;
}

/* ============================================================
   ESPECIALIDADES (3 × 2)
   ============================================================ */
.b-specialties {
  padding: 5rem 0 4rem;
  background: var(--cb-bg);
}

.b-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.b-section-title {
  font-size: clamp(1.625rem, 2.8vw, 2.125rem);
  font-weight: 700;
  color: var(--cb-ink);
  line-height: 1.2;
  margin: 0;
}

.b-section-sub {
  color: var(--cb-ink2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 380px;
  margin: 0;
}

.b-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--cb-rule);
  border-radius: 12px;
  overflow: hidden;
}

.b-spec-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cb-ink);
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
  transition: background 0.2s;
}
.b-spec-card:nth-child(3n) { border-right: none; }
.b-spec-card:nth-last-child(-n+3) { border-bottom: none; }
.b-spec-card:hover { background: var(--cb-surface); }

.b-spec-img-wrap {
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.b-spec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.b-spec-card:hover .b-spec-img-wrap img {
  transform: scale(1.05);
}

.b-spec-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.b-spec-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cb-ink);
  margin-bottom: 0.375rem;
}

.b-spec-desc {
  font-size: 0.875rem;
  color: var(--cb-ink2);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 0.75rem;
}

.b-spec-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cb-primary);
}

/* ============================================================
   SOBRE / STATS
   ============================================================ */
.b-about {
  padding: 5rem 0;
  background: var(--cb-surface);
}

.b-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.b-about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  box-shadow: 0 20px 60px -20px rgba(11, 29, 58, 0.22);
}

.b-about-title {
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: var(--cb-ink);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.b-about-desc {
  color: var(--cb-ink2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.b-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
  margin-bottom: 2rem;
}

.b-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cb-primary);
  line-height: 1;
}

.b-stat-label {
  font-size: 0.8125rem;
  color: var(--cb-ink2);
  margin-top: 0.3rem;
}

.b-about-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   NOTÍCIAS
   ============================================================ */
.b-news {
  padding: 5rem 0;
  background: var(--cb-bg);
}

.b-news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

/* ============================================================
   MAPA
   ============================================================ */
.b-map-section {
  padding: 4rem 0 3rem;
  background: var(--cb-primary-dark);
}

.b-map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.b-map-title {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.b-map-address {
  color: #cfe0ff;
  font-size: 1rem;
  margin: 0;
}

.b-map-embed iframe {
  border-radius: 12px;
  display: block;
}

/* ============================================================
   CONVÊNIOS
   ============================================================ */
.b-convenios-band {
  padding: 3rem 0;
  background: var(--cb-surface);
  border-top: 1px solid var(--cb-rule);
}

.b-convenios-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cb-ink2);
  text-align: center;
  margin-bottom: 1.5rem;
}

.b-convenios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.b-conv-item {
  background: #ffffff;
  border: 1px solid var(--cb-rule);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  height: 80px;
  transition: box-shadow 0.2s;
}
.b-conv-item:hover {
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.1);
}

.b-conv-item img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================================
   PÁGINA INTERNA — Hero
   ============================================================ */
.b-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--cb-primary-dark);
  overflow: hidden;
}

.b-page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.b-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #06245c 0%, rgba(11,61,145,0.9) 50%, rgba(11,61,145,0.4) 100%);
}

.b-page-hero-content {
  position: relative;
  z-index: 2;
}

.b-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(207, 224, 255, 0.65);
  margin-bottom: 1.5rem;
  font-family: var(--cb-font);
}
.b-page-breadcrumb a {
  color: rgba(207, 224, 255, 0.65);
  text-decoration: none;
}
.b-page-breadcrumb a:hover { color: #cfe0ff; }
.b-page-breadcrumb span  { color: #cfe0ff; }

.b-page-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9bd1ff;
  margin-bottom: 1rem;
  font-family: var(--cb-font);
}

.b-page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--cb-font);
}

.b-page-subtitle {
  font-size: 1.0625rem;
  color: #cfe0ff;
  line-height: 1.7;
  max-width: 600px;
  font-family: var(--cb-font);
  margin: 0;
}

/* ============================================================
   MISSÃO / VISÃO / VALORES
   ============================================================ */
.b-mvv-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,29,58,0.1);
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.b-mvv-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.b-mvv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.b-mvv-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 36, 92, 0.55);
}

.b-mvv-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  z-index: 2;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--cb-font);
}

.b-mvv-body {
  padding: 1.75rem 1.5rem;
  flex: 1;
  background: var(--cb-primary-dark);
}

.b-mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.b-mvv-list li {
  font-size: 1rem;
  font-weight: 500;
  color: #cfe0ff;
  font-family: var(--cb-font);
  padding-left: 1rem;
  position: relative;
}
.b-mvv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cb-accent);
}

.b-mvv-text {
  font-size: 1rem;
  color: #cfe0ff;
  line-height: 1.7;
  font-family: var(--cb-font);
  margin: 0;
}

/* ============================================================
   ABAS — Concept B
   ============================================================ */
.b-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cb-rule);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.b-tab-btn {
  padding: 0.875rem 1.75rem;
  font-family: var(--cb-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cb-ink2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.b-tab-btn:hover { color: var(--cb-primary); }
.b-tab-btn.active {
  color: var(--cb-primary);
  border-bottom-color: var(--cb-primary);
}

/* ============================================================
   DIRETORIA — grid de cards + depoimentos
   ============================================================ */
.b-dir-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11,29,58,0.1);
}

.b-dir-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cb-surface);
}
.b-dir-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s;
}
.b-dir-card:hover .b-dir-photo-wrap img {
  transform: scale(1.04);
}

.b-dir-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,36,92,0.82) 0%, rgba(6,36,92,0.2) 50%, transparent 100%);
  pointer-events: none;
}

.b-dir-chip {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: var(--cb-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--cb-font);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.b-dir-chip:hover {
  background: #0da371;
}

.b-dir-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem;
  font-family: var(--cb-font);
}

.b-dir-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.2;
}

.b-dir-role {
  font-size: 0.8125rem;
  color: #9bd1ff;
  margin-top: 0.2rem;
}

/* Depoimentos (vídeos) */
.b-dir-depoimentos {
  padding-top: 4rem;
  border-top: 1px solid var(--cb-rule);
  margin-top: 1rem;
}

.b-dir-video-card {
  border: 1px solid var(--cb-rule);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(11,29,58,0.07);
}

.b-dir-video-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--cb-rule);
  background: var(--cb-surface);
}
.b-dir-video-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--cb-primary);
  flex-shrink: 0;
}

.b-dir-vcard-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cb-ink);
  font-family: var(--cb-font);
}

.b-dir-vcard-role {
  font-size: 0.8125rem;
  color: var(--cb-ink2);
  font-family: var(--cb-font);
}

.b-dir-video-card video {
  display: block;
  width: 100%;
  border-radius: 0;
}

/* ============================================================
   VÍDEOS
   ============================================================ */
.b-video-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cb-ink2);
  margin-bottom: 0.75rem;
  font-family: var(--cb-font);
}

/* ============================================================
   CONTATO — info + formulário
   ============================================================ */
.b-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.b-contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cb-primary);
  margin-bottom: 0.5rem;
  font-family: var(--cb-font);
}

.b-contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cb-ink);
  margin-bottom: 1.5rem;
  font-family: var(--cb-font);
}

.b-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.b-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cb-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.b-info-text {
  font-family: var(--cb-font);
}
.b-info-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cb-ink);
  margin-bottom: 0.15rem;
}
.b-info-text span {
  font-size: 0.9375rem;
  color: var(--cb-ink2);
  line-height: 1.5;
}

.b-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--cb-rule);
  border-radius: 16px;
  padding: 2rem;
}

.b-form-group {
  margin-bottom: 1rem;
}

.b-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-ink);
  margin-bottom: 0.375rem;
  font-family: var(--cb-font);
}

.b-form-control {
  width: 100%;
  padding: 0.6875rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--cb-font);
  color: var(--cb-ink);
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-rule);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.b-form-control:focus {
  border-color: var(--cb-primary);
  box-shadow: 0 0 0 3px rgba(11,61,145,0.1);
  background: #fff;
}

textarea.b-form-control { resize: vertical; min-height: 130px; }

.b-form-submit {
  width: 100%;
  padding: 0.8125rem;
  background: var(--cb-primary);
  color: #fff;
  font-family: var(--cb-font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.b-form-submit:hover {
  background: var(--cb-primary-dark);
  transform: translateY(-1px);
}

/* ============================================================
   CLASSIFICAÇÃO DE RISCO (pronto-atendimento)
   ============================================================ */
.b-risk-section {
  padding: 4rem 0;
  background: var(--cb-surface);
}

.b-risk-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.b-risk-card img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(11,29,58,0.15);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.b-risk-note {
  font-family: var(--cb-font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cb-primary);
  margin-bottom: 0.5rem;
}

.b-risk-sub {
  font-family: var(--cb-font);
  font-size: 0.9375rem;
  color: var(--cb-ink2);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   INTERNAÇÃO — lista + documentos + alta
   ============================================================ */
.b-process-list {
  padding-left: 0;
  list-style: none;
  counter-reset: b-step;
  margin: 0;
}

.b-process-list > li {
  counter-increment: b-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--cb-font);
  font-size: 0.9375rem;
  color: var(--cb-ink2);
  line-height: 1.6;
}

.b-process-list > li::before {
  content: counter(b-step);
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cb-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-family: var(--cb-font);
}

.b-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.b-doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--cb-font);
  font-size: 0.9375rem;
  color: var(--cb-ink2);
  line-height: 1.5;
}

.b-doc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cb-accent);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.b-info-card {
  background: #fff;
  border: 1px solid var(--cb-rule);
  border-radius: 12px;
  padding: 1.75rem;
}

.b-info-card-title {
  font-family: var(--cb-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cb-ink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cb-rule);
}

/* ============================================================
   FILOSOFIA — destaque de texto
   ============================================================ */
.b-highlight-block {
  background: var(--cb-primary-dark);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  font-family: var(--cb-font);
  color: #cfe0ff;
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVO — tablet (≤ 991px)
   ============================================================ */
@media (max-width: 991.98px) {
  .b-hero { min-height: 75vh; }

  .b-quick-access {
    grid-template-columns: repeat(2, 1fr);
  }
  .b-qa-card:nth-child(2)  { border-right: none; }
  .b-qa-card:nth-child(1),
  .b-qa-card:nth-child(2)  { border-bottom: 1px solid var(--cb-rule); }
  .b-qa-card:nth-child(3)  { border-right: 1px solid var(--cb-rule); }

  .b-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .b-spec-card                  { border-right: 1px solid var(--cb-rule); border-bottom: 1px solid var(--cb-rule); }
  .b-spec-card:nth-child(2n)    { border-right: none; }
  .b-spec-card:nth-last-child(-n+2) { border-bottom: none; }
  .b-spec-card:nth-child(3n)    { border-right: 1px solid var(--cb-rule); }

  .b-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .b-about-img-wrap img { height: 320px; }

  .b-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .b-section-sub { max-width: 100%; }

  .b-news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .b-convenios-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVO — mobile (≤ 575px)
   ============================================================ */
@media (max-width: 575.98px) {
  .b-hero { min-height: 65vh; }
  .b-hero-content { padding-bottom: 5rem; }

  .b-quick-access-wrap { margin-top: -36px; }
  .b-quick-access { grid-template-columns: 1fr; }
  .b-qa-card {
    border-right: none !important;
    border-bottom: 1px solid var(--cb-rule) !important;
  }
  .b-qa-card:last-child { border-bottom: none !important; }

  .b-spec-grid { grid-template-columns: 1fr; }
  .b-spec-card {
    border-right: none !important;
    border-bottom: 1px solid var(--cb-rule) !important;
  }
  .b-spec-card:last-child { border-bottom: none !important; }

  .b-stats { gap: 1.25rem; flex-wrap: wrap; }
  .b-about-ctas { flex-direction: column; }

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