/* Reset específico para que Hello no encajone el listing */
html,
body {
  overflow-x: hidden;
}

body.bmh-fullscreen,
body:has(.bmh-app) {
  background: var(--bmh-bg);
}

body:has(.bmh-app) #site-header,
body:has(.bmh-app) .site-header,
body:has(.bmh-app) header.site-header,
body:has(.bmh-app) .page-header,
body:has(.bmh-app) .entry-header,
body:has(.bmh-app) .entry-title,
body:has(.bmh-app) h1.entry-title {
  display: none !important;
}

body:has(.bmh-app) .site-main,
body:has(.bmh-app) .content-area,
body:has(.bmh-app) .page-content,
body:has(.bmh-app) .entry-content,
body:has(.bmh-app) .hentry,
body:has(.bmh-app) .post,
body:has(.bmh-app) article.page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body:has(.bmh-app) .page-content > *,
body:has(.bmh-app) .entry-content > * {
  max-width: none !important;
}

body:has(.bmh-app) a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bmh-bg);
}

body .site-main,
body .page-content,
body .entry-content {
  width: 100%;
  max-width: none;
}

body .page-header,
body .entry-title,
body h1.entry-title {
  display: none !important;
}

.bmh-app {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  color: var(--bmh-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(68,199,199,.18), transparent 28%),
    linear-gradient(180deg, #eef5fb 0%, #f8fbfe 45%, #eef5fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bmh-app * {
  box-sizing: border-box;
}

.bmh-app a {
  color: inherit;
  text-decoration: none;
}

.bmh-container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.bmh-section {
  padding: 46px 0;
}

.bmh-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 22px;
}

.bmh-section-head h2 {
  margin: 0;
  color: var(--bmh-blue-dark);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 900;
}

.bmh-section-head p {
  margin: 10px 0 0;
  color: var(--bmh-muted);
  font-size: 16px;
}

.bmh-counter {
  padding: 10px 14px;
  border: 1px solid var(--bmh-border);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--bmh-blue);
  font-weight: 900;
  box-shadow: var(--bmh-shadow-soft);
}

.bmh-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}

.bmh-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--bmh-border);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--bmh-shadow-soft);
  backdrop-filter: blur(14px);
}

.bmh-sidebar strong {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--bmh-blue-dark);
}

.bmh-sidebar button,
.bmh-quick-chips button {
  cursor: pointer;
  font-family: inherit;
}

.bmh-sidebar button {
  border: 0;
  border-radius: 16px;
  padding: 12px 13px;
  background: rgba(8,47,79,.06);
  color: var(--bmh-blue-dark);
  font-weight: 850;
  text-align: left;
}

.bmh-sidebar button.is-active {
  background: var(--bmh-blue);
  color: #fff;
}


body.bmh-fullscreen #site-header,
body.bmh-fullscreen .site-header,
body.bmh-fullscreen header.site-header,
body.bmh-fullscreen .page-header,
body.bmh-fullscreen .entry-header,
body.bmh-fullscreen .entry-title,
body.bmh-fullscreen h1.entry-title {
  display: none !important;
}

body.bmh-fullscreen .site-main,
body.bmh-fullscreen .content-area,
body.bmh-fullscreen .page-content,
body.bmh-fullscreen .entry-content,
body.bmh-fullscreen .hentry,
body.bmh-fullscreen .post,
body.bmh-fullscreen article.page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* NMH co-branding */
.bmh-topbar{
  position:absolute;
  top:18px;
  left:0;
  right:0;
  z-index:20;
}

.bmh-topbar-inner{
  width:min(1440px, calc(100% - 48px));
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.bmh-nmh-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:-.02em;
}

.bmh-nmh-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#ff8a00;
  box-shadow:0 0 18px rgba(255,138,0,.7);
}

.bmh-powered{
  color:rgba(255,255,255,.8);
  font-size:13px;
  font-weight:700;
}

.bmh-card.is-premium{
  border-color:rgba(255,138,0,.42);
  box-shadow:0 28px 90px rgba(255,138,0,.18);
}

.bmh-plan-badge{
  background:linear-gradient(135deg,#ff8a00,#ff5e00);
}

.bmh-action-main{
  background:linear-gradient(135deg,#ff8a00,#ff6b00);
  color:#fff;
}

.bmh-action-main:hover{
  transform:translateY(-1px);
}

.bmh-counter{
  border-color:rgba(255,138,0,.2);
  color:#ff6b00;
}

