/* ╔══════════════════════════════════════════════╗
   ║  BHOS — FOLHA DE ESTILO ÚNICA (estilo.css)    ║
   ║  Usada por todas as páginas do site           ║
   ╚══════════════════════════════════════════════╝ */

/* ===== HOME + NAV + RODAPÉ + RESPONSIVO ===== */
/* ╔══════════════════════════════════════════════════╗
   ║  BHOS — HOME COMPLETA · default.php               ║
   ║  Menu + 6 blocos + rodapé · Mobile otimizado      ║
   ╚══════════════════════════════════════════════════╝ */

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100%; }
body { font-family: 'Montserrat', sans-serif; background: #FFFFFF; overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }

/* ── Trava anti-scroll-horizontal: corta elementos decorativos que vazam ── */
section, footer, main { overflow-x: hidden; max-width: 100%; }
main { display: block; width: 100%; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   NAVBAR (sticky + hambúrguer mobile)
═══════════════════════════════════════ */
.bh-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bh-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.bh-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bh-nav__logo img { height: 40px; width: auto; }

.bh-nav__wordmark {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  line-height: 1;
}
.bh-nav__wordmark span { color: #AF1816; }

/* Links desktop */
.bh-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.bh-nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  padding: 10px 14px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.bh-nav__links a:hover { color: #FFFFFF; }

/* Botão CTA na nav */
.bh-nav__cta {
  background: #AF1816;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  font-size: 11px !important;
  padding: 12px 22px !important;
  margin-left: 8px;
  transition: background 0.25s ease !important;
}
.bh-nav__cta:hover { background: #8d1210; }

/* Ícone área logada */
.bh-nav__login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6) !important;
  padding: 0 !important;
  margin-left: 6px;
  transition: border-color 0.2s, color 0.2s !important;
}
.bh-nav__login:hover { border-color: #AF1816; color: #FFFFFF !important; }
.bh-nav__login svg { width: 16px; height: 16px; }

/* Hambúrguer */
.bh-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.bh-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.bh-nav.open .bh-nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bh-nav.open .bh-nav__burger span:nth-child(2) { opacity: 0; }
.bh-nav.open .bh-nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile (drawer) */
.bh-nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: auto;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 72px);
  background: #0F0F0F;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
}

.bh-nav.open .bh-nav__mobile { transform: translateX(0); opacity: 1; visibility: visible; }

.bh-nav__mobile a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}
.bh-nav__mobile a:hover { color: #FFFFFF; padding-left: 18px; }
.bh-nav__mobile a::after {
  content: '→';
  color: #AF1816;
  opacity: 0;
  transition: opacity 0.2s;
}
.bh-nav__mobile a:hover::after { opacity: 1; }

.bh-nav__mobile-cta {
  margin-top: 20px;
  background: #AF1816 !important;
  color: #FFFFFF !important;
  text-align: center;
  justify-content: center !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px !important;
  padding: 18px !important;
  border: none !important;
}
.bh-nav__mobile-cta::after { display: none; }

/* ════════════════════════════════════════
   BLOCO 1 — HERO
═══════════════════════════════════════ */
.bh-hero {
  background: #0F0F0F;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 32px 80px;
  position: relative;
  overflow: hidden;
}
.bh-hero::before {
  content: '';
  position: absolute;
  top: 10%; right: 8%;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, #AF1816 30%, #AF1816 70%, transparent);
  opacity: 0.6;
}
.bh-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(175,24,22,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.bh-hero__inner { max-width: 860px; width: 100%; text-align: center; position: relative; z-index: 2; }
.bh-hero__tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: #AF1816; margin-bottom: 36px;
}
.bh-hero__tag::before, .bh-hero__tag::after {
  content: ''; display: block; width: 28px; height: 1px; background: #AF1816; opacity: 0.7;
}
.bh-hero__title {
  font-size: clamp(32px, 5.5vw, 64px); font-weight: 800;
  line-height: 1.08; letter-spacing: -1.5px; color: #FFFFFF; margin-bottom: 28px;
}
.bh-hero__title em { font-style: normal; color: #AF1816; }
.bh-hero__title span {
  display: block; font-weight: 300; font-size: 0.75em;
  color: rgba(255,255,255,0.5); margin-top: 6px;
}
.bh-hero__sub {
  font-size: clamp(15px, 1.8vw, 18px); font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto 48px;
}
.bh-hero__sub strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.bh-hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.bh-btn-p {
  display: inline-block; background: #AF1816; color: #FFFFFF;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 44px; border: 2px solid #AF1816; transition: background 0.25s, border-color 0.25s; cursor: pointer;
}
.bh-btn-p:hover { background: #8d1210; border-color: #8d1210; }
.bh-btn-s {
  display: inline-block; background: transparent; color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 44px; border: 2px solid rgba(255,255,255,0.2); transition: border-color 0.25s, color 0.25s; cursor: pointer;
}
.bh-btn-s:hover { border-color: rgba(255,255,255,0.6); color: #FFFFFF; }
.bh-hero__note {
  margin-top: 24px; font-size: 11px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════
   BLOCO 2 — NÚMEROS
═══════════════════════════════════════ */
.bh-nums {
  background: #FFFFFF; border-top: 3px solid #AF1816; border-bottom: 1px solid #EBEBEB;
  padding: 52px 32px;
}
.bh-nums__grid {
  max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr);
}
.bh-nums__item { text-align: center; padding: 8px 20px; position: relative; }
.bh-nums__item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: #EBEBEB;
}
.bh-nums__val {
  display: block; font-size: clamp(34px, 4.5vw, 52px); font-weight: 800;
  color: #AF1816; line-height: 1; margin-bottom: 10px; letter-spacing: -1px;
}
.bh-nums__lbl {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #595959;
}

/* ════════════════════════════════════════
   BLOCO 3 — PILARES
═══════════════════════════════════════ */
.bh-pilares { background: #F4F4F2; padding: 96px 32px; }
.bh-pilares__inner { max-width: 1100px; margin: 0 auto; }
.bh-sec-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: #AF1816; display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.bh-sec-label::after { content: ''; display: block; height: 1px; width: 40px; background: #AF1816; }
.bh-pilares__title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.15; color: #1A1A1A; margin-bottom: 16px; max-width: 640px;
}
.bh-pilares__subtitle {
  font-size: 16px; font-weight: 400; line-height: 1.7; color: #595959; max-width: 580px; margin-bottom: 64px;
}
.bh-pilares__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.bh-pilar-card {
  background: #FFFFFF; padding: 48px 40px; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bh-pilar-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #AF1816; }
.bh-pilar-card::after {
  content: ''; position: absolute; bottom: -60px; right: -60px; width: 120px; height: 120px;
  background: rgba(175,24,22,0.04); border-radius: 50%; transition: transform 0.35s;
}
.bh-pilar-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.bh-pilar-card:hover::after { transform: scale(2); }
.bh-pilar-icon { width: 48px; height: 48px; margin-bottom: 28px; color: #AF1816; }
.bh-pilar-num {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #AF1816; margin-bottom: 12px; display: block;
}
.bh-pilar-title { font-size: 20px; font-weight: 800; color: #1A1A1A; margin-bottom: 8px; letter-spacing: -0.3px; }
.bh-pilar-sub {
  font-size: 12px; font-weight: 600; color: #AF1816; letter-spacing: 1px;
  margin-bottom: 20px; text-transform: uppercase;
}
.bh-pilar-text { font-size: 14px; font-weight: 400; line-height: 1.75; color: #595959; }
.bh-pilares__quote { margin-top: 64px; padding: 40px 48px; background: #1A1A1A; position: relative; }
.bh-pilares__quote::before {
  content: '"'; position: absolute; top: -20px; left: 48px; font-size: 120px; font-weight: 800;
  color: #AF1816; line-height: 1;
}
.bh-pilares__quote p {
  font-size: clamp(16px, 2vw, 20px); font-weight: 500; font-style: italic; line-height: 1.6;
  color: rgba(255,255,255,0.85); padding-left: 40px;
}

/* ════════════════════════════════════════
   BLOCO 4 — SERVIÇOS
═══════════════════════════════════════ */
.bh-servicos { background: #FFFFFF; padding: 96px 32px; }
.bh-servicos__inner { max-width: 1100px; margin: 0 auto; }
.bh-servicos__title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.15; color: #1A1A1A; margin-bottom: 12px;
}
.bh-servicos__sub { font-size: 16px; font-weight: 400; line-height: 1.7; color: #595959; max-width: 540px; margin-bottom: 64px; }
.bh-servicos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #EBEBEB; border: 1px solid #EBEBEB;
}
.bh-srv-card {
  background: #FFFFFF; padding: 40px 36px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: background 0.25s;
}
.bh-srv-card:hover { background: #FAFAFA; }
.bh-srv-card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: #AF1816;
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s;
}
.bh-srv-card:hover::before { transform: scaleY(1); }
.bh-srv-icon { width: 40px; height: 40px; color: #AF1816; margin-bottom: 20px; flex-shrink: 0; }
.bh-srv-title { font-size: 15px; font-weight: 800; color: #1A1A1A; margin-bottom: 10px; letter-spacing: -0.2px; line-height: 1.3; }
.bh-srv-text { font-size: 13px; font-weight: 400; line-height: 1.75; color: #595959; flex-grow: 1; }
.bh-srv-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #AF1816; transition: gap 0.2s;
}
.bh-srv-link:hover { gap: 10px; }
.bh-srv-link svg { width: 14px; height: 14px; }
.bh-servicos__cta { text-align: center; margin-top: 56px; }
.bh-btn-outline {
  display: inline-block; background: transparent; color: #1A1A1A;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 44px; border: 2px solid #1A1A1A; transition: background 0.25s, color 0.25s;
}
.bh-btn-outline:hover { background: #1A1A1A; color: #FFFFFF; }

/* ════════════════════════════════════════
   BLOCO 5 — AUTORIDADE + CLIENTES
═══════════════════════════════════════ */
.bh-auth { background: #F4F4F2; padding: 96px 32px; }
.bh-auth__inner { max-width: 1100px; margin: 0 auto; }
.bh-auth__split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.bh-auth__title {
  font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.15; color: #1A1A1A; margin-bottom: 24px;
}
.bh-auth__text { font-size: 15px; font-weight: 400; line-height: 1.8; color: #595959; margin-bottom: 32px; }
.bh-auth__text strong { color: #1A1A1A; font-weight: 700; }
.bh-auth__photo-wrap { position: relative; display: inline-block; margin-bottom: 28px; }
.bh-auth__photo {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover;
  border: 3px solid #FFFFFF; box-shadow: 0 8px 24px rgba(0,0,0,0.12); background: #D9D9D9;
}
.bh-auth__photo-placeholder {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #AF1816 0%, #7a1110 100%);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #FFFFFF; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.bh-auth__photo-placeholder span { font-size: 28px; font-weight: 800; color: #FFFFFF; letter-spacing: -1px; }
.bh-auth__badge {
  position: absolute; bottom: -4px; right: -4px; width: 28px; height: 28px;
  background: #AF1816; border-radius: 50%; border: 2px solid #F4F4F2;
  display: flex; align-items: center; justify-content: center;
}
.bh-auth__badge svg { width: 14px; height: 14px; color: #FFFFFF; }
.bh-auth__name { font-size: 18px; font-weight: 800; color: #1A1A1A; margin-bottom: 4px; }
.bh-auth__role { font-size: 12px; font-weight: 500; letter-spacing: 1px; color: #595959; margin-bottom: 32px; text-transform: uppercase; }
.bh-auth__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #AF1816; transition: gap 0.2s;
}
.bh-auth__link:hover { gap: 12px; }
.bh-auth__link svg { width: 14px; height: 14px; }
.bh-creds { padding: 48px 40px; background: #FFFFFF; border-top: 3px solid #AF1816; }
.bh-creds__title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #AF1816; margin-bottom: 28px; }
.bh-cred-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #F0F0F0; }
.bh-cred-item:last-child { border-bottom: none; }
.bh-cred-icon {
  width: 36px; height: 36px; background: rgba(175,24,22,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #AF1816;
}
.bh-cred-icon svg { width: 18px; height: 18px; }
.bh-cred-label { font-size: 13px; font-weight: 700; color: #1A1A1A; margin-bottom: 2px; }
.bh-cred-detail { font-size: 11px; font-weight: 400; color: #595959; line-height: 1.5; }
.bh-clients { margin-top: 80px; padding-top: 64px; border-top: 1px solid #E0E0E0; }
.bh-clients__label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #595959; text-align: center; margin-bottom: 40px; }
.bh-clients__logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.bh-client-item { opacity: 0.6; transition: opacity 0.2s; }
.bh-client-item:hover { opacity: 1; }
.bh-client-logo { width: 120px; height: 48px; background: #595959; display: flex; align-items: center; justify-content: center; }
.bh-client-logo span { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #FFFFFF; text-align: center; padding: 0 8px; }

/* ════════════════════════════════════════
   BLOCO 6 — CTA DIAGNÓSTICO
═══════════════════════════════════════ */
.bh-cta { background: #AF1816; padding: 96px 32px; position: relative; overflow: hidden; }
.bh-cta::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  border: 60px solid rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none;
}
.bh-cta::after {
  content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px;
  border: 40px solid rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none;
}
.bh-cta__inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.bh-cta__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 32px;
}
.bh-cta__tag::before, .bh-cta__tag::after { content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.4); }
.bh-cta__title { font-size: clamp(28px, 4.5vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: #FFFFFF; margin-bottom: 24px; }
.bh-cta__sub { font-size: clamp(15px, 1.8vw, 18px); font-weight: 400; line-height: 1.7; color: rgba(255,255,255,0.9); max-width: 580px; margin: 0 auto 52px; }
.bh-cta__benefits { display: flex; justify-content: center; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.bh-benefit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bh-benefit__icon { width: 44px; height: 44px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #FFFFFF; }
.bh-benefit__icon svg { width: 22px; height: 22px; }
.bh-benefit__text { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.8); text-align: center; max-width: 100px; line-height: 1.4; }
.bh-cta__btn {
  display: inline-flex; align-items: center; gap: 12px; background: #FFFFFF; color: #AF1816;
  font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 22px 56px; border: 2px solid #FFFFFF; transition: background 0.25s, color 0.25s;
}
.bh-cta__btn:hover { background: transparent; color: #FFFFFF; }
.bh-cta__btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.bh-cta__btn:hover svg { transform: translateX(4px); }
.bh-cta__note { margin-top: 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: rgba(255,255,255,0.85); }

/* ════════════════════════════════════════
   RODAPÉ
═══════════════════════════════════════ */
.bh-footer { background: #111111; color: #FFFFFF; }
.bh-footer a { text-decoration: none; }
.bh-footer__top {
  padding: 80px 32px 64px; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 56px; align-items: start;
}
.bh-footer__wordmark { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: #FFFFFF; line-height: 1; margin-bottom: 20px; display: inline-block; }
.bh-footer__wordmark span { color: #AF1816; }
.bh-footer__tagline { font-size: 12px; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 32px; max-width: 260px; }
.bh-footer__social { display: flex; gap: 10px; align-items: center; }
.bh-social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bh-social-btn:hover { background: #AF1816; border-color: #AF1816; color: #FFFFFF; }
.bh-social-btn svg { width: 16px; height: 16px; }
.bh-footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #AF1816; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(175,24,22,0.3); }
.bh-footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bh-footer__links li a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.bh-footer__links li a:hover { color: #FFFFFF; padding-left: 6px; }
.bh-footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.bh-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.bh-contact-item__icon { width: 32px; height: 32px; background: rgba(175,24,22,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #AF1816; }
.bh-contact-item__icon svg { width: 15px; height: 15px; }
.bh-contact-item__label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.bh-contact-item__value { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); line-height: 1.5; word-break: break-word; }
.bh-contact-item__value a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.bh-contact-item__value a:hover { color: #FFFFFF; }
.bh-footer__divider { max-width: 1200px; margin: 0 auto; height: 1px; background: rgba(255,255,255,0.06); margin-left: 32px; margin-right: 32px; }
.bh-footer__bottom { padding: 24px 32px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bh-footer__copy { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.3); line-height: 1.6; }
.bh-footer__copy strong { color: rgba(255,255,255,0.5); font-weight: 600; }
.bh-footer__legal { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.bh-footer__legal a { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.bh-footer__legal a:hover { color: rgba(255,255,255,0.7); }
.bh-footer__legal span { display: block; width: 3px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* ════════════════════════════════════════
   RESPONSIVO / MOBILE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .bh-nav__links { display: none; }
  .bh-nav__burger { display: flex; }
  .bh-nav__mobile { display: flex; }
  .bh-footer__top { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .bh-pilares__grid { grid-template-columns: 1fr; }
  .bh-servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .bh-auth__split { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .bh-nav__inner { padding: 0 20px; height: 64px; }
  .bh-nav__mobile { top: 64px; height: calc(100vh - 64px); }

  .bh-hero { min-height: 78vh; padding: 64px 24px 56px; }
  .bh-hero::before { display: none; }
  .bh-hero__ctas { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
  .bh-btn-p, .bh-btn-s { text-align: center; }

  .bh-nums { padding: 40px 20px; }
  .bh-nums__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .bh-nums__item:nth-child(2)::after, .bh-nums__item:nth-child(4)::after { display: none; }
  .bh-nums__item:nth-child(1), .bh-nums__item:nth-child(3) { border-right: 1px solid #EBEBEB; }

  .bh-pilares { padding: 72px 24px; }
  .bh-pilar-card { padding: 40px 32px; }
  .bh-pilares__quote { padding: 32px 24px; }
  .bh-pilares__quote p { padding-left: 0; }
  .bh-pilares__quote::before { display: none; }

  .bh-servicos { padding: 72px 24px; }
  .bh-servicos__grid { grid-template-columns: 1fr; }
  .bh-srv-card { padding: 36px 28px; }

  .bh-auth { padding: 72px 24px; }
  .bh-creds { padding: 36px 28px; }
  .bh-clients__logos { gap: 32px; }
  .bh-client-logo { width: 100px; height: 40px; }

  .bh-cta { padding: 72px 24px; }
  .bh-cta__benefits { gap: 24px; }
  .bh-cta__btn { width: 100%; max-width: 320px; justify-content: center; }

  .bh-footer__top { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 48px; }
  .bh-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .bh-footer__legal { gap: 16px; }
  .bh-footer__divider { margin-left: 24px; margin-right: 24px; }
}

/* ===== PÁGINA SOBRE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bso-hero {
  font-family: 'Montserrat', sans-serif;
  background: #0F0F0F;
  padding: 120px 32px 96px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Grade sutil de fundo */
.bso-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(175,24,22,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175,24,22,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Brilho crimson esquerdo */
.bso-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(175,24,22,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.bso-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Breadcrumb */
.bso-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bso-breadcrumb a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.bso-breadcrumb a:hover { color: rgba(255,255,255,0.65); }
.bso-breadcrumb span { color: rgba(255,255,255,0.18); }
.bso-breadcrumb strong { color: #AF1816; font-weight: 700; }

/* Tag */
.bso-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 28px;
}

.bso-hero__tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #AF1816;
}

/* Headline */
.bso-hero__title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 0 0 28px;
}

.bso-hero__title em {
  font-style: normal;
  color: #AF1816;
}

.bso-hero__title span {
  display: block;
  font-weight: 300;
  font-size: 0.72em;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Subtítulo */
.bso-hero__sub {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

.bso-hero__sub strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Lado direito: manifesto visual */
.bso-hero__right {
  position: relative;
}

.bso-manifesto {
  border-left: 3px solid #AF1816;
  padding: 36px 40px;
  background: rgba(255,255,255,0.03);
}

.bso-manifesto__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 20px;
  display: block;
}

.bso-manifesto__text {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.bso-manifesto__text em {
  font-style: normal;
  color: #AF1816;
}

/* Números rápidos abaixo do manifesto */
.bso-hero__nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2px;
}

.bso-num-item {
  background: rgba(255,255,255,0.03);
  padding: 24px 28px;
  text-align: center;
}

.bso-num-item__val {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #AF1816;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.bso-num-item__lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}

/* Linha bottom */
.bso-hero__line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #AF1816, transparent 55%);
}

@media (max-width: 960px) {
  .bso-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .bso-hero__sub { max-width: 100%; }
}

@media (max-width: 640px) {
  .bso-hero {
    padding: 100px 24px 72px;
  }
  .bso-manifesto { padding: 28px 28px; }
  .bso-hero__nums { grid-template-columns: repeat(3, 1fr); }
  .bso-num-item { padding: 20px 12px; }
  .bso-num-item__val { font-size: 26px; }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bso-mvv * { box-sizing: border-box; margin: 0; padding: 0; }

.bso-mvv {
  font-family: 'Montserrat', sans-serif;
  background: #1A1A1A;
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

/* Elemento decorativo geométrico */
.bso-mvv::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(175,24,22,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.bso-mvv::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 1px solid rgba(175,24,22,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.bso-mvv__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Cabeçalho */
.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bso-mvv__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 64px;
}

/* Grid de Missão + Visão */
.bso-mvv__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

/* Card base */
.bso-mvv-card {
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

/* Missão: fundo crimson */
.bso-mvv-card--missao {
  background: #AF1816;
}

.bso-mvv-card--missao::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  pointer-events: none;
}

/* Visão: fundo escuro médio */
.bso-mvv-card--visao {
  background: #252525;
  border-top: 3px solid #AF1816;
}

/* Letra grande decorativa */
.bso-mvv-card__letter {
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.bso-mvv-card--missao .bso-mvv-card__letter {
  color: rgba(0,0,0,0.12);
}

.bso-mvv-card--visao .bso-mvv-card__letter {
  color: rgba(175,24,22,0.07);
}

.bso-mvv-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bso-mvv-card--missao .bso-mvv-card__icon {
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
}

.bso-mvv-card--visao .bso-mvv-card__icon {
  background: rgba(175,24,22,0.15);
  color: #AF1816;
}

.bso-mvv-card__icon svg {
  width: 22px;
  height: 22px;
}

.bso-mvv-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.bso-mvv-card--missao .bso-mvv-card__label { color: rgba(255,255,255,0.65); }
.bso-mvv-card--visao .bso-mvv-card__label { color: #AF1816; }

.bso-mvv-card__text {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

.bso-mvv-card--missao .bso-mvv-card__text { color: #FFFFFF; }
.bso-mvv-card--visao .bso-mvv-card__text { color: rgba(255,255,255,0.85); }

.bso-mvv-card__note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.bso-mvv-card--missao .bso-mvv-card__note { color: rgba(255,255,255,0.65); }
.bso-mvv-card--visao .bso-mvv-card__note { color: rgba(255,255,255,0.45); }

/* ── VALORES: linha horizontal de 5 cards ── */
.bso-valores {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.bso-valor-card {
  background: #252525;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}

.bso-valor-card:hover {
  background: #2E2E2E;
}

/* Linha crimson top no hover */
.bso-valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: #AF1816;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.bso-valor-card:hover::before {
  transform: scaleX(1);
}

.bso-valor-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(175,24,22,0.5);
  margin-bottom: 12px;
  display: block;
}

.bso-valor-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.bso-valor-card__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

.bso-valor-card__desc strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 960px) {
  .bso-mvv__top { grid-template-columns: 1fr; }
  .bso-valores { grid-template-columns: repeat(2, 1fr); }
  .bso-valor-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 640px) {
  .bso-mvv { padding: 72px 24px; }
  .bso-mvv-card { padding: 44px 32px; }
  .bso-mvv-card__letter { font-size: 120px; }
  .bso-valores { grid-template-columns: 1fr; }
  .bso-valor-card:nth-child(5) { grid-column: span 1; }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bso-team * { box-sizing: border-box; margin: 0; padding: 0; }
.bso-team a { text-decoration: none; }

.bso-team {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  padding: 96px 32px;
}

.bso-team__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Cabeçalho */
.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bso-team__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.bso-team__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #595959;
  max-width: 600px;
  margin-bottom: 72px;
}


/* ══════════════════════════
   CARD DE MEMBRO — PRINCIPAL
   (Bia e Oreonnilda — layout grande)
══════════════════════════ */
.bso-member {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #F4F4F2;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #AF1816;
}

/* Lado esquerdo: foto + nome */
.bso-member__left {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #1A1A1A;
  position: relative;
}

/* Elemento geométrico decorativo */
.bso-member__left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border: 40px solid rgba(175,24,22,0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Foto / placeholder */
.bso-member__photo-wrap {
  position: relative;
  margin-bottom: 24px;
}

.bso-member__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255,255,255,0.1);
}

.bso-member__photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AF1816 0%, #7a1110 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.1);
}

.bso-member__photo-placeholder span {
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -1px;
}

.bso-member__role-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #AF1816;
  padding: 4px 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
}

.bso-member__name {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.bso-member__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 8px;
}

.bso-member__oab {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

/* LinkedIn badge */
.bso-member__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.bso-member__linkedin:hover { color: rgba(255,255,255,0.85); }

/* Bloco de redes sociais (LinkedIn + Instagram lado a lado) */
.bso-member__socials { display: flex; gap: 18px; margin-top: auto; flex-wrap: wrap; }
.bso-member__socials .bso-member__linkedin { margin-top: 0; }

/* Redes sociais do parceiro (fundo claro) */
.bso-partner__socials { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.bso-partner__social {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #AF1816; text-decoration: none; transition: color 0.2s;
}
.bso-partner__social:hover { color: #8d1210; }
.bso-partner__social svg { width: 14px; height: 14px; }

.bso-member__linkedin svg {
  width: 14px;
  height: 14px;
}

/* Lado direito: conteúdo */
.bso-member__right {
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
}

.bso-member__bio {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
  margin-bottom: 36px;
}

.bso-member__bio strong {
  color: #1A1A1A;
  font-weight: 700;
}

/* Grade de credenciais */
.bso-member__creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.bso-cred {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #FFFFFF;
}

.bso-cred__icon {
  width: 32px;
  height: 32px;
  background: rgba(175,24,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #AF1816;
}

.bso-cred__icon svg {
  width: 15px;
  height: 15px;
}

.bso-cred__content {}

.bso-cred__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 2px;
  display: block;
}

.bso-cred__text {
  font-size: 12px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.45;
}

/* Tags de expertise */
.bso-member__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bso-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #595959;
  padding: 6px 12px;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
}


/* ══════════════════════════
   CARD DE PARCEIRO — COMPACTO
   (Marketing/Tráfego Pago)
══════════════════════════ */
.bso-partner {
  background: #F4F4F2;
  border-top: 3px solid #AF1816;
  padding: 52px 52px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 2px;
}

.bso-partner__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bso-partner__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #595959;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bso-partner__photo-placeholder span {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.bso-partner__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.bso-partner__badge {
  display: inline-block;
  background: #1A1A1A;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AF1816;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.bso-partner__name {
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.bso-partner__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #AF1816;
}

.bso-partner__right {}

.bso-partner__bio {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
  margin-bottom: 28px;
}

.bso-partner__bio strong {
  color: #1A1A1A;
  font-weight: 700;
}

/* Certificações em linha */
.bso-partner__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bso-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #FFFFFF;
  border-left: 3px solid #AF1816;
}

.bso-cert svg {
  width: 16px;
  height: 16px;
  color: #AF1816;
  flex-shrink: 0;
}

.bso-cert__text {
  font-size: 11px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.3px;
}


/* Responsivo */
@media (max-width: 960px) {
  .bso-member {
    grid-template-columns: 1fr;
  }
  .bso-member__left {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 40px 36px;
  }
  .bso-member__left::after { display: none; }
  .bso-member__photo-wrap { margin-bottom: 0; }
  .bso-member__linkedin { margin-top: 0; }
  .bso-member__right { padding: 40px 36px; }
  .bso-partner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 36px;
  }
  .bso-partner__left {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .bso-partner__photo-placeholder { margin-bottom: 0; }
}

@media (max-width: 640px) {
  .bso-team { padding: 72px 24px; }
  .bso-member__creds { grid-template-columns: 1fr; }
  .bso-member__left { padding: 36px 28px; }
  .bso-member__right { padding: 36px 28px; }
  .bso-partner { padding: 36px 28px; }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bso-dep * { box-sizing: border-box; margin: 0; padding: 0; }

.bso-dep {
  font-family: 'Montserrat', sans-serif;
  background: #F4F4F2;
  padding: 96px 32px;
}

.bso-dep__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bso-dep__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.bso-dep__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #595959;
  margin-bottom: 64px;
  max-width: 540px;
}

/* Grid de depoimentos */
.bso-dep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.bso-dep-card {
  background: #FFFFFF;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Aspas decorativas */
.bso-dep-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(175,24,22,0.08);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  pointer-events: none;
}

/* Borda top crimson */
.bso-dep-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: #AF1816;
}

.bso-dep-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  color: #1A1A1A;
  font-style: italic;
  margin-bottom: 32px;
  flex-grow: 1;
  padding-top: 24px; /* espaço para as aspas */
}

.bso-dep-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bso-dep-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bso-dep-card__avatar span {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

.bso-dep-card__info {}

.bso-dep-card__name {
  font-size: 13px;
  font-weight: 800;
  color: #1A1A1A;
  display: block;
  margin-bottom: 2px;
}

.bso-dep-card__role {
  font-size: 11px;
  font-weight: 500;
  color: #595959;
  letter-spacing: 0.5px;
}

/* Estrelas */
.bso-dep-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.bso-dep-card__stars svg {
  width: 14px;
  height: 14px;
  fill: #AF1816;
  color: #AF1816;
}

/* ⚠️ Nota de implementação para Bia */
.bso-dep__note {
  margin-top: 40px;
  padding: 28px 36px;
  background: #1A1A1A;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.bso-dep__note svg {
  width: 20px;
  height: 20px;
  color: #AF1816;
  flex-shrink: 0;
  margin-top: 2px;
}

.bso-dep__note p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.bso-dep__note p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.bso-dep__note p em {
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  display: block;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .bso-dep__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .bso-dep { padding: 72px 24px; }
  .bso-dep-card { padding: 40px 28px; }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bso-cta * { box-sizing: border-box; margin: 0; padding: 0; }
.bso-cta a { text-decoration: none; }

.bso-cta {
  font-family: 'Montserrat', sans-serif;
  background: #AF1816;
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

/* Círculos decorativos */
.bso-cta::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border: 60px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.bso-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border: 40px solid rgba(0,0,0,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.bso-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

/* Esquerda */
.bso-cta__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bso-cta__tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: rgba(255,255,255,0.4);
}

.bso-cta__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.bso-cta__sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

/* Direita: botões */
.bso-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.bso-btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: #AF1816;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 32px;
  border: 2px solid #FFFFFF;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}

.bso-btn-white:hover {
  background: transparent;
  color: #FFFFFF;
}

.bso-btn-white svg { width: 16px; height: 16px; flex-shrink: 0; }

.bso-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 32px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
}

.bso-btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  color: #FFFFFF;
}

.bso-btn-outline svg { width: 16px; height: 16px; flex-shrink: 0; }

.bso-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.bso-cta__trust span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #FFFFFF;
}

.bso-cta__trust .dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: block;
}

/* Linha top */
.bso-cta__topline {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .bso-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bso-cta__actions { min-width: 0; }
}

@media (max-width: 640px) {
  .bso-cta { padding: 72px 24px; }
  .bso-btn-white, .bso-btn-outline {
    width: 100%;
    max-width: 340px;
  }
}

/* ===== PÁGINA SERVIÇOS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bhs-hero {
  font-family: 'Montserrat', sans-serif;
  background: #0F0F0F;
  padding: 120px 32px 100px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Grade decorativa de fundo */
.bhs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(175,24,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175,24,22,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Brilho crimson superior direito */
.bhs-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(175,24,22,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.bhs-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.bhs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bhs-breadcrumb a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.bhs-breadcrumb a:hover { color: rgba(255,255,255,0.7); }

.bhs-breadcrumb span {
  color: rgba(255,255,255,0.2);
}

.bhs-breadcrumb strong {
  color: #AF1816;
  font-weight: 700;
}

/* Tag */
.bhs-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 32px;
}

.bhs-hero__tag::before,
.bhs-hero__tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #AF1816;
}

/* Headline */
.bhs-hero__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 0 0 32px;
}

.bhs-hero__title em {
  font-style: normal;
  color: #AF1816;
}

/* Subtítulo */
.bhs-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 680px;
  margin: 0 0 60px;
}

.bhs-hero__sub strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Serviços em linha (anchor links) */
.bhs-hero__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bhs-anchor {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s ease;
}

.bhs-anchor:hover {
  border-color: #AF1816;
  color: #FFFFFF;
  background: rgba(175,24,22,0.08);
}

/* Âncoras de serviços digitais — diferenciadas visualmente */
.bhs-anchor--digital {
  border-color: rgba(175,24,22,0.25);
  color: rgba(255,255,255,0.35);
}

.bhs-anchor--digital:hover {
  border-color: #AF1816;
  color: #FFFFFF;
  background: rgba(175,24,22,0.08);
}

/* Linha inferior */
.bhs-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #AF1816, transparent 60%);
}

@media (max-width: 640px) {
  .bhs-hero {
    padding: 100px 24px 80px;
  }
  .bhs-hero__anchors {
    gap: 8px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bhs-prob {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  padding: 96px 32px;
  box-sizing: border-box;
}

.bhs-prob__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Layout: texto esquerda, lista direita */
.bhs-prob__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Lado esquerdo */
.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bhs-prob__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin: 0 0 24px;
}

.bhs-prob__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
  margin: 0 0 32px;
}

.bhs-prob__text strong {
  color: #1A1A1A;
  font-weight: 700;
}

.bhs-prob__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AF1816;
  text-decoration: none;
  transition: gap 0.2s;
}

.bhs-prob__cta:hover { gap: 12px; }

.bhs-prob__cta svg {
  width: 14px;
  height: 14px;
}

/* Lado direito: cenários de dor */
.bhs-prob__cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bhs-pain-card {
  background: #F4F4F2;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.bhs-pain-card:hover {
  background: #EFEFED;
}

/* Linha crimson esquerda */
.bhs-pain-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: #AF1816;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.bhs-pain-card:hover::before {
  transform: scaleY(1);
}

.bhs-pain-icon {
  width: 40px;
  height: 40px;
  background: rgba(175,24,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #AF1816;
}

.bhs-pain-icon svg {
  width: 20px;
  height: 20px;
}

.bhs-pain-content {}

.bhs-pain-title {
  font-size: 13px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.bhs-pain-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: #595959;
}

/* Número de empresas afetadas */
.bhs-prob__stat {
  margin-top: 40px;
  padding: 32px 40px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 32px;
}

.bhs-stat__num {
  font-size: 48px;
  font-weight: 900;
  color: #AF1816;
  letter-spacing: -2px;
  line-height: 1;
  flex-shrink: 0;
}

.bhs-stat__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.bhs-stat__text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .bhs-prob__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .bhs-prob {
    padding: 72px 24px;
  }
  .bhs-prob__stat {
    flex-direction: column;
    gap: 16px;
    padding: 28px 28px;
    text-align: center;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bhs-pilares {
  font-family: 'Montserrat', sans-serif;
  background: #F4F4F2;
  padding: 96px 32px;
  box-sizing: border-box;
}

.bhs-pilares__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Cabeçalho da seção */
.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bhs-pilares__title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.bhs-pilares__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #595959;
  max-width: 600px;
  margin: 0 0 72px;
}

/* ── Serviço individual ── */
.bhs-srv {
  background: #FFFFFF;
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

/* Número gigante decorativo */
.bhs-srv__num {
  position: absolute;
  top: -20px;
  right: 32px;
  font-size: 140px;
  font-weight: 900;
  color: rgba(175,24,22,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -6px;
}

/* Lado do problema */
.bhs-srv__problem {
  padding: 56px 48px;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bhs-srv__problem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #AF1816;
}

.bhs-srv__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bhs-srv__tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #AF1816;
}

.bhs-srv__ptitle {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

.bhs-srv__ptext {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.bhs-srv__ptext strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Lado da solução */
.bhs-srv__solution {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.bhs-srv__icon {
  width: 52px;
  height: 52px;
  background: rgba(175,24,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AF1816;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.bhs-srv__icon svg {
  width: 26px;
  height: 26px;
}

.bhs-srv__stitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #1A1A1A;
  margin: 0 0 16px;
  letter-spacing: -0.4px;
}

.bhs-srv__sdesc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
  margin: 0 0 32px;
  flex-grow: 1;
}

/* O que inclui */
.bhs-srv__includes {
  margin-bottom: 32px;
}

.bhs-srv__includes-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 14px;
}

.bhs-srv__includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bhs-srv__includes ul li {
  font-size: 12px;
  font-weight: 500;
  color: #595959;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.bhs-srv__includes ul li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #AF1816;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7 L5.5 10.5 L12 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Âncora de ID */
.bhs-anchor-target {
  display: block;
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  pointer-events: none;
  visibility: hidden;
}

/* Link CTA */
.bhs-srv__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AF1816;
  text-decoration: none;
  transition: gap 0.2s;
}

.bhs-srv__link:hover { gap: 12px; }

.bhs-srv__link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .bhs-srv {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bhs-srv__problem {
    padding: 48px 36px;
  }
  .bhs-srv__solution {
    padding: 48px 36px;
  }
  .bhs-srv__num {
    display: none;
  }
}

@media (max-width: 640px) {
  .bhs-pilares {
    padding: 72px 24px;
  }
  .bhs-srv__problem,
  .bhs-srv__solution {
    padding: 40px 28px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bhs-comp {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  padding: 96px 32px;
  box-sizing: border-box;
}

.bhs-comp__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bhs-comp__title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.bhs-comp__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #595959;
  max-width: 600px;
  margin: 0 0 72px;
}

/* ── Card de serviço complementar ── */
.bhs-anchor-target {
  display: block;
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  pointer-events: none;
  visibility: hidden;
}

.bhs-crd {
  display: grid;
  grid-template-columns: 380px 1fr;
  border: 1px solid #EBEBEB;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

/* Borda crimson superior */
.bhs-crd::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: #AF1816;
}

/* Coluna esquerda: problema (fundo escuro) */
.bhs-crd__left {
  background: #1A1A1A;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bhs-crd__ptag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bhs-crd__ptag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #AF1816;
}

.bhs-crd__ptitle {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.bhs-crd__ptext {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.bhs-crd__ptext strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Coluna direita: solução */
.bhs-crd__right {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bhs-crd__icon {
  width: 48px;
  height: 48px;
  background: rgba(175,24,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AF1816;
  margin-bottom: 20px;
}

.bhs-crd__icon svg {
  width: 24px;
  height: 24px;
}

.bhs-crd__stitle {
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.bhs-crd__sdesc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
  margin: 0 0 28px;
}

/* Lista compacta em 2 colunas */
.bhs-crd__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 32px;
}

.bhs-crd__list-item {
  font-size: 12px;
  font-weight: 500;
  color: #595959;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.bhs-crd__list-item::before {
  content: '▸';
  color: #AF1816;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA */
.bhs-srv__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AF1816;
  text-decoration: none;
  transition: gap 0.2s;
}

.bhs-srv__link:hover { gap: 12px; }

.bhs-srv__link svg {
  width: 14px;
  height: 14px;
}

/* Card especial de diagnóstico (destaque visual diferente) */
.bhs-crd--diag {
  border-color: #AF1816;
}

.bhs-crd--diag .bhs-crd__left {
  background: #AF1816;
}

.bhs-crd--diag .bhs-crd__ptag {
  color: rgba(255,255,255,0.7);
}

.bhs-crd--diag .bhs-crd__ptag::before {
  background: rgba(255,255,255,0.5);
}

.bhs-crd--diag .bhs-crd__ptitle {
  color: #FFFFFF;
}

.bhs-crd--diag .bhs-crd__ptext {
  color: rgba(255,255,255,0.75);
}

.bhs-crd--diag .bhs-crd__ptext strong {
  color: #FFFFFF;
}

/* Badge free/paid no diagnóstico */
.bhs-diag-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.bhs-diag-plan {
  border: 1px solid #EBEBEB;
  padding: 20px;
}

.bhs-diag-plan--paid {
  border-color: #AF1816;
  background: rgba(175,24,22,0.03);
}

.bhs-diag-plan__badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #595959;
  margin-bottom: 8px;
  display: block;
}

.bhs-diag-plan--paid .bhs-diag-plan__badge {
  color: #AF1816;
}

.bhs-diag-plan__title {
  font-size: 13px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.bhs-diag-plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bhs-diag-plan__list li {
  font-size: 11px;
  font-weight: 500;
  color: #595959;
  display: flex;
  gap: 6px;
}

.bhs-diag-plan__list li::before {
  content: '✓';
  color: #AF1816;
  font-size: 10px;
  flex-shrink: 0;
}

.bhs-diag-plan__cta {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px;
  border: 1.5px solid #EBEBEB;
  color: #595959;
  transition: all 0.2s;
}

.bhs-diag-plan--paid .bhs-diag-plan__cta {
  background: #AF1816;
  color: #FFFFFF;
  border-color: #AF1816;
}

.bhs-diag-plan__cta:hover {
  border-color: #AF1816;
  color: #AF1816;
}

.bhs-diag-plan--paid .bhs-diag-plan__cta:hover {
  background: #8d1210;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .bhs-crd {
    grid-template-columns: 1fr;
  }
  .bhs-crd__list {
    grid-template-columns: 1fr;
  }
  .bhs-crd__left {
    padding: 40px 32px;
  }
  .bhs-crd__right {
    padding: 40px 32px;
  }
}

@media (max-width: 640px) {
  .bhs-comp {
    padding: 72px 24px;
  }
  .bhs-diag-plans {
    grid-template-columns: 1fr;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset base ── */
.bhs-dig * { box-sizing: border-box; margin: 0; padding: 0; }
.bhs-dig a { text-decoration: none; }

/* ── Wrapper ── */
.bhs-dig {
  font-family: 'Montserrat', sans-serif;
  background: #F4F4F2;
  padding: 96px 32px;
}

.bhs-dig__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Cabeçalho de seção ── */
.bhs-dig__header {
  margin-bottom: 72px;
}

.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bhs-dig__title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.bhs-dig__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #595959;
  max-width: 680px;
}

.bhs-dig__sub strong {
  color: #1A1A1A;
  font-weight: 700;
}

/* ── Divisor entre Compliance e Digital ── */
.bhs-dig__divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}

.bhs-dig__divider-line {
  flex: 1;
  height: 1px;
  background: #DCDCDC;
}

.bhs-dig__divider-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #1A1A1A;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.bhs-dig__divider-badge svg {
  width: 14px;
  height: 14px;
  color: #AF1816;
  flex-shrink: 0;
}

/* ── Anchor target ── */
.bhs-anchor-target {
  display: block;
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  pointer-events: none;
  visibility: hidden;
}

/* ════════════════════════════════════
   CARD DE SERVIÇO DIGITAL
   Layout: problema (escuro) | solução
════════════════════════════════════ */
.bhs-dig-srv {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: #FFFFFF;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}

/* Número decorativo */
.bhs-dig-srv__num {
  position: absolute;
  top: -16px;
  right: 28px;
  font-size: 130px;
  font-weight: 900;
  color: rgba(175,24,22,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

/* ── Lado esquerdo: problema ── */
.bhs-dig-srv__left {
  background: #0F0F0F;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Linha crimson top */
.bhs-dig-srv__left::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: #AF1816;
}

.bhs-dig-srv__ptag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bhs-dig-srv__ptag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: #AF1816;
}

.bhs-dig-srv__ptitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.bhs-dig-srv__ptext {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
}

.bhs-dig-srv__ptext strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ── Lado direito: solução ── */
.bhs-dig-srv__right {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
}

.bhs-dig-srv__icon {
  width: 50px;
  height: 50px;
  background: rgba(175,24,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AF1816;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.bhs-dig-srv__icon svg {
  width: 25px;
  height: 25px;
}

.bhs-dig-srv__stitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.bhs-dig-srv__sdesc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ── Subtópicos (para serviços com frentes múltiplas) ── */
.bhs-dig-srv__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.bhs-dig-topic {
  background: #F4F4F2;
  padding: 14px 16px;
  border-left: 2px solid #AF1816;
}

.bhs-dig-topic__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 4px;
  display: block;
}

.bhs-dig-topic__text {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  color: #595959;
}

/* ── Lista de includes ── */
.bhs-dig-srv__includes {
  margin-bottom: 28px;
}

.bhs-dig-srv__includes-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 12px;
}

.bhs-dig-srv__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 20px;
  list-style: none;
  padding: 0;
}

.bhs-dig-srv__list li {
  font-size: 12px;
  font-weight: 500;
  color: #595959;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.bhs-dig-srv__list li::before {
  content: '▸';
  color: #AF1816;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA ── */
.bhs-dig-srv__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AF1816;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.bhs-dig-srv__link:hover { gap: 12px; }

.bhs-dig-srv__link svg {
  width: 14px;
  height: 14px;
}

/* ── Responsivo ── */
@media (max-width: 960px) {
  .bhs-dig-srv {
    grid-template-columns: 1fr;
  }
  .bhs-dig-srv__num { display: none; }
  .bhs-dig-srv__left { padding: 44px 36px; }
  .bhs-dig-srv__right { padding: 44px 36px; }
}

@media (max-width: 640px) {
  .bhs-dig { padding: 72px 24px; }
  .bhs-dig-srv__topics { grid-template-columns: 1fr; }
  .bhs-dig-srv__list { grid-template-columns: 1fr; }
  .bhs-dig-srv__left,
  .bhs-dig-srv__right { padding: 40px 28px; }
  .bhs-dig__divider-badge { font-size: 8px; padding: 8px 14px; }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.bhs-faq {
  font-family: 'Montserrat', sans-serif;
  background: #F4F4F2;
  padding: 96px 32px;
  box-sizing: border-box;
}

.bhs-faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

.bh-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bh-sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #AF1816;
}

.bhs-faq__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.bhs-faq__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #595959;
  margin: 0 0 64px;
}

/* Lista de perguntas */
.bhs-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Item */
.bhs-faq-item {
  background: #FFFFFF;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease;
  overflow: hidden;
}

.bhs-faq-item.open {
  border-left-color: #AF1816;
}

/* Pergunta (botão) */
.bhs-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.bhs-faq-item__q-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.bhs-faq-item.open .bhs-faq-item__q-text {
  color: #AF1816;
}

/* Ícone + / × */
.bhs-faq-item__icon {
  width: 32px;
  height: 32px;
  background: #F4F4F2;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #595959;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.bhs-faq-item.open .bhs-faq-item__icon {
  background: #AF1816;
  color: #FFFFFF;
  transform: rotate(45deg);
}

.bhs-faq-item__icon svg {
  width: 14px;
  height: 14px;
}

/* Resposta (colapsável) */
.bhs-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.bhs-faq-item.open .bhs-faq-item__a {
  max-height: 600px;
}

.bhs-faq-item__a-inner {
  padding: 0 32px 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #595959;
}

.bhs-faq-item__a-inner p {
  margin: 0 0 12px;
}

.bhs-faq-item__a-inner p:last-child {
  margin: 0;
}

.bhs-faq-item__a-inner strong {
  color: #1A1A1A;
  font-weight: 700;
}

/* Linha divisória sutil entre resposta e próximo item */
.bhs-faq-item + .bhs-faq-item {
  border-top: 1px solid #F0F0F0;
}

/* Nota final */
.bhs-faq__note {
  margin-top: 48px;
  padding: 32px 40px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bhs-faq__note-icon {
  width: 44px;
  height: 44px;
  background: rgba(175,24,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #AF1816;
}

.bhs-faq__note-icon svg {
  width: 22px;
  height: 22px;
}

.bhs-faq__note-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.bhs-faq__note-text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.bhs-faq__note-text a {
  color: #AF1816;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.bhs-faq__note-text a:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .bhs-faq {
    padding: 72px 24px;
  }
  .bhs-faq-item__q {
    padding: 24px 24px;
  }
  .bhs-faq-item__a-inner {
    padding: 0 24px 28px;
  }
  .bhs-faq__note {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.bhs-cta {
  font-family: 'Montserrat', sans-serif;
  background: #0F0F0F;
  padding: 96px 32px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Grade decorativa */
.bhs-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Brilho crimson */
.bhs-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(175,24,22,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.bhs-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

/* Lado esquerdo */
.bhs-cta__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bhs-cta__tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: #AF1816;
}

.bhs-cta__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.bhs-cta__title em {
  font-style: normal;
  color: #AF1816;
}

.bhs-cta__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
}

.bhs-cta__sub strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Lado direito: botões */
.bhs-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.bhs-btn-p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #AF1816;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 32px;
  border: 2px solid #AF1816;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.bhs-btn-p:hover {
  background: #8d1210;
  border-color: #8d1210;
}

.bhs-btn-p svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bhs-btn-s {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 32px;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.bhs-btn-s:hover {
  border-color: rgba(255,255,255,0.4);
  color: #FFFFFF;
}

.bhs-btn-s svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Nota de confiança */
.bhs-cta__trust {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.bhs-cta__trust span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
}

.bhs-cta__trust span.dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: block;
}

/* Linha top crimson */
.bhs-cta__topline {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #AF1816, transparent 60%);
}

@media (max-width: 900px) {
  .bhs-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bhs-cta__actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .bhs-cta {
    padding: 72px 24px;
  }
  .bhs-cta__trust {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* ===== PÁGINA DIAGNÓSTICO (LEAD CAPTURE) ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset ── */
#bhos-lead-capture * { box-sizing: border-box; margin: 0; padding: 0; }
#bhos-lead-capture a { text-decoration: none; }

/* ── Wrapper geral ── */
#bhos-lead-capture {
  font-family: 'Montserrat', sans-serif;
  background: #0F0F0F;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

/* Grade decorativa de fundo */
#bhos-lead-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(175,24,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175,24,22,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Brilho crimson canto superior esquerdo */
#bhos-lead-capture::after {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(175,24,22,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Layout 2 colunas ── */
#bhos-lead-capture .lc-inner {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ══════════════════════
   COLUNA ESQUERDA: COPY
══════════════════════ */
#bhos-lead-capture .lc-copy {}

#bhos-lead-capture .lc-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 28px;
}

#bhos-lead-capture .lc-tag::before,
#bhos-lead-capture .lc-tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #AF1816;
}

#bhos-lead-capture .lc-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

#bhos-lead-capture .lc-title em {
  font-style: normal;
  color: #AF1816;
}

#bhos-lead-capture .lc-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  max-width: 460px;
}

#bhos-lead-capture .lc-sub strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Benefícios */
#bhos-lead-capture .lc-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

#bhos-lead-capture .lc-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#bhos-lead-capture .lc-benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(175,24,22,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #AF1816;
}

#bhos-lead-capture .lc-benefit-icon svg {
  width: 15px; height: 15px;
}

#bhos-lead-capture .lc-benefit-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  padding-top: 6px;
}

#bhos-lead-capture .lc-benefit-text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  display: block;
  font-size: 12px;
  margin-bottom: 1px;
}

/* Estatística */
#bhos-lead-capture .lc-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(175,24,22,0.08);
  border-left: 3px solid #AF1816;
}

#bhos-lead-capture .lc-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #AF1816;
  letter-spacing: -1px;
  line-height: 1;
  flex-shrink: 0;
}

#bhos-lead-capture .lc-stat-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

#bhos-lead-capture .lc-stat-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

/* ══════════════════════
   COLUNA DIREITA: FORM
══════════════════════ */
#bhos-lead-capture .lc-form-wrap {
  background: #FFFFFF;
  padding: 0;
  position: relative;
}

/* Linha crimson topo */
#bhos-lead-capture .lc-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: #AF1816;
}

#bhos-lead-capture .lc-form-header {
  background: #1A1A1A;
  padding: 32px 36px 28px;
}

#bhos-lead-capture .lc-form-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #AF1816;
  margin-bottom: 10px;
  display: block;
}

#bhos-lead-capture .lc-form-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.25;
}

#bhos-lead-capture .lc-form-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

#bhos-lead-capture .lc-form-body {
  padding: 32px 36px 36px;
}

/* Labels */
#bhos-lead-capture .form-group {
  margin-bottom: 18px;
}

#bhos-lead-capture label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #595959;
  margin-bottom: 7px;
}

#bhos-lead-capture .required {
  color: #AF1816;
}

/* Inputs */
#bhos-lead-capture input[type="text"],
#bhos-lead-capture input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  background: #FAFAFA;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

#bhos-lead-capture input[type="text"]:focus,
#bhos-lead-capture input[type="email"]:focus {
  border-color: #AF1816;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(175,24,22,0.07);
}

#bhos-lead-capture input::placeholder { color: #BBBBBB; }

/* Botão */
#bhos-lead-capture .submit-button {
  width: 100%;
  background: #AF1816;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  transition: background 0.25s ease;
}

#bhos-lead-capture .submit-button:hover:not(:disabled) {
  background: #8d1210;
}

#bhos-lead-capture .submit-button:disabled {
  background: #C0C0C0;
  cursor: not-allowed;
}

#bhos-lead-capture .arrow {
  font-size: 16px;
  font-weight: 400;
}

/* Privacidade */
#bhos-lead-capture .privacy-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #BBBBBB;
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#bhos-lead-capture .privacy-text::before {
  content: '🔒';
  font-size: 11px;
}

/* Credibilidade abaixo do form */
#bhos-lead-capture .lc-trust {
  padding: 18px 36px;
  background: #F4F4F4;
  border-top: 1px solid #EBEBEB;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

#bhos-lead-capture .lc-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #595959;
  letter-spacing: 0.5px;
}

#bhos-lead-capture .lc-trust-item svg {
  width: 13px; height: 13px;
  color: #AF1816;
  flex-shrink: 0;
}

/* ── Responsivo ── */
@media (max-width: 860px) {
  #bhos-lead-capture .lc-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  #bhos-lead-capture .lc-sub { max-width: 100%; }
}

@media (max-width: 480px) {
  #bhos-lead-capture {
    padding: 40px 16px;
  }
  #bhos-lead-capture .lc-form-header,
  #bhos-lead-capture .lc-form-body {
    padding-left: 24px;
    padding-right: 24px;
  }
  #bhos-lead-capture .lc-trust { padding: 16px 24px; }
}