/* ============================================================
   BENZA COMIGO — Design System
   Mobile-first · Paleta lavanda/dourado · Cormorant + Roboto
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:            #FDFAFF;
  --bg-alt:        #F5F0FA;
  --surface:       #FFFFFF;
  --purple-deep:   #3D1A5C;
  --purple:        #7B4FA2;
  --purple-soft:   #9B7BBF;
  --lilac:         #C4A8D8;
  --lilac-light:   #E8DCF0;
  --lilac-faint:   rgba(196,168,216,0.15);
  --gold:          #C9A24B;
  --gold-hover:    #A8842E;
  --gold-faint:    rgba(201,162,75,0.12);
  --violet:        #8B5CF6;
  --violet-hover:  #7B54BF;
  --text:          #2D2235;
  --text-light:    #6B5E78;
  --text-muted:    #9B8FAA;
  --border:        rgba(124,79,162,0.10);
  --white:         #FFFFFF;

  /* Paleta Eliana (extraída do WordPress) — aplicada globalmente */
  --e-primary:      #8B5CF6;
  --e-secondary:    #BA7AF8;
  --e-accent:       #7B54BF;
  --e-text:         #333333;
  --btn-purple:     #8B5CF6;
  --btn-hover-text: #E9D5FF;
  --btn-border:     #9D4EDD;
  --card-bg-right:  #F5F0FF;
  --section-highlight-bg:    #FAF7FF;
  --card-title-color:        #7c3aed;
  --section-highlight-title: #312E81;
  --link-color:  #414AFF;
  --link-hover:  #001691;

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Roboto', -apple-system, sans-serif;
  --font-btn: 'Montserrat', 'Roboto', -apple-system, sans-serif;

  --shadow-sm:   0 2px 12px rgba(61,26,92,0.05);
  --shadow-md:   0 4px 20px rgba(61,26,92,0.08);
  --shadow-lg:   0 8px 32px rgba(61,26,92,0.12);

  --space-xs:  clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --space-md:  clamp(1rem, 2vw, 1.5rem);
  --space-lg:  clamp(1.5rem, 3vw, 2.5rem);
  --space-xl:  clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);

  --container-pad: clamp(1rem, 4vw, 2rem);
  --container-max: 1140px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --tr: 0.3s ease;
}

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

html {
  font-size: 112.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gold); }

img { display: block; max-width: 100%; height: auto; }

/* ── CONTAINER ───────────────────────────────────────────── */
.b-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── HEADER ──────────────────────────────────────────────── */
.b-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,250,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.b-header.scrolled { box-shadow: var(--shadow-md); }

.b-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(0.6rem, 1.5vw, 0.9rem);
  gap: var(--space-sm);
}

.b-logo { display: block; line-height: 1; }
.b-logo-name {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--purple-deep);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.b-logo:hover .b-logo-name { color: var(--purple); }

.b-nav {
  display: none;
  align-items: center;
}
.b-nav .nav {
  display: flex;
  gap: clamp(0.5rem, 1.2vw, 1.2rem);
  align-items: center;
  list-style: none;
}
.b-nav .nav a {
  display: inline-block;
  font-family: var(--font-b);
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  font-weight: 500;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

/* Permitir quebra apenas no último item (Orações e Benzimentos) */
.b-nav .nav li:last-child a {
  white-space: normal;
  max-width: 7rem;
  text-align: center;
  line-height: 1.3;
}
.b-nav .nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--tr);
}
.b-nav .nav a:hover,
.b-nav .nav li.nav-current a { color: var(--purple-deep); }
.b-nav .nav a:hover::after,
.b-nav .nav li.nav-current a::after { width: 100%; }

.b-header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.b-btn-whatsapp {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--tr);
}
.b-btn-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-1px); }

.b-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.b-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: all var(--tr);
}
.b-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.b-hamburger.active span:nth-child(2) { opacity: 0; }
.b-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

.b-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--space-sm) var(--container-pad);
}
.b-mobile-menu.open { display: flex; }
.b-mobile-menu .nav { list-style: none; }
.b-mobile-menu .nav a,
.b-mobile-menu-cta {
  display: block;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lilac-faint);
}
.b-mobile-menu-cta { border-bottom: none; }
.b-mobile-menu .nav a:hover,
.b-mobile-menu-cta:hover { color: var(--purple); }
.b-mobile-menu .nav li.nav-current a { color: var(--purple); font-weight: 700; }

/* ── MAIN ────────────────────────────────────────────────── */
.b-main { padding-top: clamp(3.5rem, 8vw, 4.2rem); }

/* ── HERO ────────────────────────────────────────────────── */
.b-hero {
  position: relative;
  min-height: clamp(24rem, 60vw, 36rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1208;
}
.b-hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}
.b-hero .b-container {
  position: relative;
  z-index: 3;
  padding-block: var(--space-2xl);
}
.b-hero-content {
  max-width: min(680px, 100%);
  text-align: center;
  margin-inline: auto;
}
.b-hero-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 24px rgba(0,0,0,0.35);
}
.b-hero-sub {
  font-family: var(--font-b);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.b-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.b-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(0.7rem, 1.5vw, 0.85rem) clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: var(--font-btn);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--white);
  background: var(--violet);
  border: 2px solid var(--violet);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--tr);
}
.b-btn-primary:hover {
  background: var(--violet-hover);
  border-color: var(--violet-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139,92,246,0.35);
}

.b-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(0.7rem, 1.5vw, 0.85rem) clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: var(--font-btn);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--tr);
}
.b-btn-outline:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--white);
}

/* ── PAGE BODY ───────────────────────────────────────────── */
.b-page-body { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

/* ── SECTION HEADER ──────────────────────────────────────── */
.b-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-lg);
}
.b-section-title {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--purple-deep);
  white-space: nowrap;
}
.b-section-line {
  flex: 1;
  height: 1px;
  background: var(--lilac-light);
}
.b-section-all {
  font-family: var(--font-b);
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  color: var(--text-muted);
  white-space: nowrap;
}
.b-section-all:hover { color: var(--purple); }

/* ── POST GRID ───────────────────────────────────────────── */
.b-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.b-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--tr);
}
.b-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.b-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lilac-light), var(--bg-alt));
}
.b-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.b-card:hover .b-card-img img { transform: scale(1.04); }
.b-card-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-card-icon { font-size: 2.5rem; color: var(--lilac); }

.b-card-body { padding: clamp(1rem, 2vw, 1.4rem); }

.b-card-meta {
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.b-card-cat {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
}
.b-card-title {
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.b-card-title a { color: var(--text); }
.b-card:hover .b-card-title a { color: var(--purple); }
.b-card-excerpt {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--text-light);
  line-height: 1.65;
}

/* ── PAGINATION ──────────────────────────────────────────── */
.b-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}
.b-pagination-link {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  padding: 0.5rem 1rem;
  border: 1px solid var(--lilac-light);
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.b-pagination-link:hover { background: var(--bg-alt); color: var(--purple-deep); }
.b-pagination-info {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── SPLIT SECTIONS (Sobre / Atendimentos / Livro) ──────────── */
.b-split-section {
  padding-block: var(--space-2xl);
}
.b-split-section--alt { background: var(--bg-alt); }

.b-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.b-split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.b-split-media--round img {
  border-radius: 50%;
  max-width: 320px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
}

.b-split-media--contain {
  background: linear-gradient(135deg, var(--lilac-light), var(--bg-alt));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}
.b-split-media--contain img {
  aspect-ratio: 4/3;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.b-split-eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple-soft);
  margin-bottom: 0.6rem;
}
.b-split-title {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.b-split-text {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.b-split-text-col .b-btn-primary { margin-top: 0.4rem; }

/* ── SERVICE CARDS (usado nas páginas Sobre / Cortes / Livro / Cursos) ── */
.b-fullbleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

/* ── PAGE HTML-CARD COMPONENTS (Sobre / Cortes / Livro / Cursos) ── */
.b-bio-photo {
  max-width: 260px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}
.b-bio-photo img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.b-contact-block {
  margin-top: var(--space-xl);
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}
.b-contact-block h3 {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 1rem;
}
.b-contact-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.b-contact-block li { font-size: clamp(0.88rem, 1.2vw, 0.98rem); color: var(--text-light); }
.b-contact-block a { color: var(--purple); font-weight: 500; }
.b-contact-block a:hover { color: var(--gold); }

.b-cta-block { text-align: center; margin: var(--space-xl) 0 var(--space-lg); }
.b-cta-block img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
}

.b-capture-block {
  margin-top: var(--space-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  text-align: center;
}
.b-capture-block h3 {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.7rem;
}
.b-capture-block p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 1.3rem;
}

.b-closing-quote {
  text-align: center;
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--purple-deep);
  margin: var(--space-xl) 0;
  line-height: 1.5;
}

/* ── DOAÇÕES — BLOCO PIX ────────────────────────────────── */
.b-pix-block {
  text-align: center;
  margin: var(--space-xl) 0;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 5vw, 2rem);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.b-pix-icon {
  color: var(--violet);
  margin-bottom: 0.75rem;
}
.b-pix-label {
  font-family: var(--font-btn);
  font-size: clamp(0.8rem, 1.3vw, 0.9rem) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-deep) !important;
  margin: 0 0 0.6rem 0 !important;
}
.b-pix-key {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 4vw, 1.9rem) !important;
  font-weight: 700;
  color: var(--violet) !important;
  word-break: break-word;
  margin: 0 !important;
}

/* ── CTA COMMUNITY ───────────────────────────────────────── */
.b-cta-community {
  background: var(--bg-alt);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-lg);
}
.b-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}
.b-cta-eyebrow {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple-soft);
}
.b-cta-title {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--purple-deep);
}
.b-cta-sub {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--text-light);
  max-width: 480px;
}
.b-btn-community {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-btn);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.b-btn-community:hover { background: var(--violet-hover); color: var(--white); transform: translateY(-2px); }

/* ── POST / PAGE ─────────────────────────────────────────── */
.b-post {
  max-width: 740px;
  margin-inline: auto;
  padding: 0 var(--container-pad) var(--space-2xl);
}

/* Páginas estáticas: conteúdo na largura do container do site */
.page-template .b-post,
.page-template .gh-content,
.page-template .b-post-content {
  max-width: var(--container-max); /* 1140px — mesma largura do hero/container */
}

/* Posts de blog: manter largura de leitura */
.post-template .b-post,
.post-template .gh-content {
  max-width: 740px;
}

.b-post-header {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--lilac-light);
  margin-bottom: var(--space-lg);
}
.b-post-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: clamp(0.6rem, 1vw, 0.68rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 1rem;
}
.b-post-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.b-post-title {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--e-primary);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.b-post-excerpt {
  font-family: var(--font-b);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.b-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  color: var(--text-muted);
}
.b-dot { color: var(--lilac); }

.b-post-feature { margin-bottom: var(--space-lg); }
.b-post-feature img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 2.5/1;
  object-fit: cover;
}

/* ── PAGE HERO (full-width, sem bordas) ─────────────────────── */
.b-page-hero {
  margin: clamp(1.5rem, 3vw, 2.2rem) 0 var(--space-xl);
}
.b-page-hero img {
  display: block;
  width: 100%;
  height: clamp(220px, 40vw, 480px);
  object-fit: cover;
  border-radius: 0;
}

/* ── PÁGINA CORTES ENERGÉTICOS (paridade visual com o WordPress) ── */
body.page-cortes-energeticos .b-page-hero {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
body.page-cortes-energeticos .b-page-hero img {
  height: 25.5556rem; /* 460px */
  border-radius: var(--radius-lg);
}

.cortes-intro {
  font-family: var(--font-btn);
  font-size: clamp(1.05rem, 2vw, 1.3125rem);
  font-weight: 400;
  text-align: center;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
}

.b-service-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 0;
}

/* === CARTÕES CORTES ENERGÉTICOS === */
.bc-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #F5F0FF;
}

.bc-card-img {
  width: 100%;
  min-height: 12rem;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.5rem 1.5rem 0 0;
}

.bc-card-content {
  padding: 1.25rem 1.5rem;
}

.bc-card-title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 800 !important;
  font-size: 1.625rem !important;
  color: #7c3aed !important;
  margin: 0 0 0.75rem 0 !important;
  line-height: 1.25 !important;
}

.bc-card-items {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #333;
  margin: 0;
}

@media (min-width: 48rem) {
  .bc-card {
    flex-direction: row;
    min-height: 13.75rem;
    height: auto;
    width: 100vw;
    max-width: 71.25rem;
    margin-left: calc(50% - min(35.625rem, 50vw));
    margin-right: calc(50% - min(35.625rem, 50vw));
    margin-bottom: 1.5rem;
  }

  .bc-card-img {
    width: 35%;
    flex-shrink: 0;
    min-height: auto;
    border-radius: 1.5rem 0 0 1.5rem;
  }

  .bc-card-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 2rem;
  }

  .bc-card-title {
    font-size: clamp(1.375rem, 2.2vw, 1.875rem) !important;
    margin: 0 0 0.5rem 0 !important;
  }

  .bc-card-items {
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    line-height: 1.625rem;
  }
}

.cortes-btn-wrap { text-align: center; margin: clamp(1.5rem, 3vw, 2rem) 0; }
.cortes-btn-agendar {
  display: block;
  width: 100%;
  max-width: 640px;
  height: 50px;
  margin-inline: auto;
  font-family: var(--font-btn);
  font-size: 19px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
  color: var(--white);
  background: var(--btn-purple);
  border: 1px solid var(--btn-border);
  border-radius: 12px;
  transition: color var(--tr);
}
.cortes-btn-agendar:hover { color: var(--btn-hover-text); background: var(--btn-purple); }

/* ── CROSS-SELL ("Você também pode gostar") ─────────────────── */
.b-cross-sell {
  background: var(--section-highlight-bg);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-xl);
}
.b-cross-sell .b-section-header { justify-content: center; }
.b-cross-sell .b-section-title {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--section-highlight-title);
  white-space: normal;
  text-align: center;
}
.b-cross-sell .b-section-line { display: none; }

.b-cross-sell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.b-cross-sell-main { grid-column: 1; }
.b-cross-sell-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.b-cross-sell-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr);
}
.b-cross-sell-main .b-cross-sell-card { aspect-ratio: auto; min-height: 25.5556rem; height: 100%; } /* 460px */
.b-cross-sell-main .b-cross-sell-card img { object-position: right center; }
.b-cross-sell-side .b-cross-sell-card { aspect-ratio: auto; min-height: 12.1111rem; } /* 218px */
.b-cross-sell-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.b-cross-sell-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.b-cross-sell-card:hover img { transform: scale(1.05); }
.b-cross-sell-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 24px rgba(0,0,0,0.4);
}

/* Cards pequenos (livro / WhatsApp) — imagem já tem texto embutido, sem overlay */
.b-cross-sell-card.bc-promo-card-small {
  background-color: #F5F0FF;
}
.b-cross-sell-card.bc-promo-card-small img {
  object-fit: contain;
}

/* ── POST CONTENT (gh-content) ───────────────────────────── */
.b-post-content {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.85;
  color: var(--text);
}
.b-post-content h2 {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: #000;
  margin: clamp(2rem, 4vw, 3rem) 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--lilac-light);
  line-height: 1.25;
}
.b-post-content h3 {
  font-family: var(--font-btn);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin: clamp(1.5rem, 3vw, 2rem) 0 0.75rem;
}
.b-post-content h4 {
  font-family: var(--font-btn);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin: clamp(1.2rem, 2.5vw, 1.6rem) 0 0.6rem;
}
.b-post-content h5,
.b-post-content h6 { font-family: var(--font-btn); font-weight: 600; color: var(--purple-deep); }
.b-post-content p { margin-bottom: 1.5em; }
.b-post-content a {
  font-family: 'Lora', serif;
  font-weight: 800;
  color: var(--link-color);
  text-decoration: none;
}
.b-post-content a.b-btn-primary,
.b-post-content a.cortes-btn-agendar { font-family: var(--font-btn); font-weight: 600; color: var(--white); }
.b-post-content a.b-btn-primary:hover { color: var(--white); }
.b-post-content a:hover { color: var(--link-hover); }
.b-post-content strong { color: var(--text); font-weight: 600; }
.b-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 1.5rem;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-light);
}
.b-post-content ul,
.b-post-content ol { padding-left: 1.5rem; margin-bottom: 1.5em; }
.b-post-content li { margin-bottom: 0.4em; }
.b-post-content hr { border: none; border-top: 1px solid var(--lilac-light); margin: clamp(2rem, 4vw, 2.5rem) 0; }
.b-post-content figure { margin: clamp(1.5rem, 3vw, 2rem) 0; }
.b-post-content figure img { width: 100%; border-radius: var(--radius-sm); }
.b-post-content figcaption { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* ── SHARE ───────────────────────────────────────────────── */
.b-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--space-md) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--lilac-light);
}
.b-share-label {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.b-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: all var(--tr);
}
.b-share--whatsapp { background: #25D366; color: #fff; }
.b-share--whatsapp:hover { background: #1da851; color: #fff; }
.b-share--facebook { background: #1877F2; color: #fff; }
.b-share--facebook:hover { background: #0d65d9; color: #fff; }
.b-share--x { background: #000; color: #fff; }
.b-share--x:hover { background: #333; color: #fff; }
.b-share--telegram { background: #0088cc; color: #fff; }
.b-share--telegram:hover { background: #006699; color: #fff; }

/* ── CATEGORY CTA ────────────────────────────────────────── */
.b-category-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.b-category-cta__text { margin: 0; font-size: 0.95rem; color: var(--text-light); font-style: italic; }
.b-category-cta__link {
  padding: 0.4em 1em;
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-btn);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.b-category-cta__link:hover { background: var(--violet-hover); color: var(--white); }

/* ── POST FOOTER ─────────────────────────────────────────── */
.b-post-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--lilac-light);
}
.b-post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.b-post-tag-pill {
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border: 1px solid var(--lilac-light);
  border-radius: var(--radius-lg);
  color: var(--text-light);
  transition: all var(--tr);
}
.b-post-tag-pill:hover { border-color: var(--purple); color: var(--purple); }

/* ── RELATED POSTS ───────────────────────────────────────── */
.b-related {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
  margin-top: var(--space-xl);
}

/* ── TAG PAGE ────────────────────────────────────────────── */
.b-tag-page { padding: clamp(1.5rem, 3vw, 2.5rem) 0 var(--space-2xl); }
.b-tag-header { margin-bottom: var(--space-xl); text-align: center; }
.b-tag-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
}
.b-tag-description {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-light);
  max-width: 560px;
  margin-inline: auto;
}
.b-tag-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.5rem;
}

/* ── ERROR ───────────────────────────────────────────────── */
.b-error {
  text-align: center;
  padding: clamp(4rem, 10vw, 6rem) var(--container-pad);
}
.b-error-code {
  font-family: var(--font-d);
  font-size: clamp(4rem, 12vw, 6rem);
  color: var(--lilac);
  line-height: 1;
  margin-bottom: 1rem;
}
.b-error-msg {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.b-footer {
  background: #111111;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--container-pad) clamp(1rem, 2vw, 1.5rem);
}
.b-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-md);
}
.b-footer-logo {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.b-footer-tagline {
  font-family: var(--font-b);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.b-footer-social { display: flex; gap: 12px; }
.b-footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--tr);
}
.b-footer-social a:hover { color: var(--gold); }

.b-footer-col-title {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.b-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.b-footer-col ul li a,
.b-footer-nav .nav a {
  font-size: clamp(0.82rem, 1.1vw, 0.88rem);
  color: rgba(255,255,255,0.65);
  transition: color var(--tr);
}
.b-footer-col ul li a:hover,
.b-footer-nav .nav a:hover { color: var(--gold); }
.b-footer-nav .nav { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.b-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-b);
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  color: rgba(255,255,255,0.5);
}
.b-footer-copy-links { display: flex; gap: 16px; }
.b-footer-copy-links a { color: rgba(255,255,255,0.5); }
.b-footer-copy-links a:hover { color: var(--gold); }

/* ── WHATSAPP FLUTUANTE ──────────────────────────────────── */
.b-whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all var(--tr);
}
.b-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── KOENIG EDITOR ───────────────────────────────────────── */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: clamp(1.5rem, 3vw, 2rem) calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  margin: clamp(1.5rem, 3vw, 2rem) calc(50% - 50vw);
}
.kg-width-wide img,
.kg-width-full img { width: 100%; height: auto; border-radius: 0; }

.kg-gallery-container { display: flex; flex-direction: column; gap: 4px; margin: clamp(1.5rem, 3vw, 2rem) 0; }
.kg-gallery-row { display: flex; gap: 4px; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

.kg-bookmark-card {
  border: 1px solid var(--lilac-light);
  border-radius: var(--radius-sm);
  padding: clamp(0.75rem, 2vw, 1rem);
  display: flex;
  gap: 1rem;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}
.kg-bookmark-content { flex: 1; min-width: 0; }
.kg-bookmark-title { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.kg-bookmark-description { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.kg-bookmark-metadata { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }
.kg-bookmark-thumbnail img { width: 120px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }

.kg-callout-card {
  display: flex;
  gap: 0.75rem;
  padding: clamp(0.75rem, 2vw, 1.2rem);
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}
.kg-callout-emoji { font-size: 1.2rem; flex-shrink: 0; }
.kg-callout-text { font-size: clamp(0.9rem, 1.4vw, 1rem); line-height: 1.7; color: var(--text); }

.kg-toggle-card { border: 1px solid var(--lilac-light); border-radius: var(--radius-sm); margin: clamp(1rem, 2vw, 1.5rem) 0; overflow: hidden; }
.kg-toggle-heading { padding: 0.75rem 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.kg-toggle-content { padding: 0 1rem 0.75rem; font-size: 0.9rem; color: var(--text-light); }

.kg-video-card { margin: clamp(1.5rem, 3vw, 2rem) 0; }
.kg-video-card video { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-sm); }

.kg-audio-card { margin: clamp(1rem, 2vw, 1.5rem) 0; padding: 1rem; background: var(--bg-alt); border-radius: var(--radius-sm); }
.kg-audio-card audio { width: 100%; }

/* ── UTILITIES ───────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   BREAKPOINTS — Mobile-first
   ============================================================ */

@media (min-width: 30rem) { /* 480px */
  .b-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 48rem) { /* 768px */
  .b-nav { display: flex; }
  .b-btn-whatsapp { display: inline-flex; }
  .b-hamburger { display: none; }
  .b-footer-grid { grid-template-columns: 1fr 1fr; }
  .b-footer-copy { flex-direction: row; justify-content: space-between; }

  .b-split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .b-split--reverse .b-split-media { order: 2; }
  .b-split-media--round img { max-width: 380px; }
}

@media (min-width: 64rem) { /* 1024px */
  .b-post-grid { grid-template-columns: repeat(3, 1fr); }
  .b-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .b-cross-sell-grid { grid-template-columns: 50% 1fr; align-items: stretch; }
}

@media (min-width: 80rem) { /* 1280px */
  .b-hero { min-height: 36rem; }
}

/* === MENU FULL-WIDTH === */
.b-header .b-container {
  max-width: 100% !important;
  padding-inline: clamp(1rem, 3vw, 2.5rem) !important;
}
.b-nav-link {
  text-transform: uppercase !important;
  font-size: clamp(0.6rem, 0.75vw, 0.72rem) !important;
  letter-spacing: 0.1em !important;
  white-space: nowrap !important;
}
.b-nav {
  gap: clamp(0.8rem, 1.8vw, 1.8rem) !important;
}

/* === RODAPÉ FULL-WIDTH === */
.b-footer .b-container {
  max-width: 100% !important;
  padding-inline: clamp(1rem, 3vw, 2.5rem) !important;
}

/* === MENU CAIXA ALTA + LINHA ÚNICA === */
.b-nav-link, .b-nav a {
  text-transform: uppercase !important;
  white-space: nowrap !important;
  max-width: none !important;
}
.b-nav-link:last-of-type {
  white-space: nowrap !important;
  max-width: none !important;
  text-align: left !important;
  line-height: inherit !important;
}
