/* ==========================================================================
   COMPONENTS.CSS — Botões, cards, badges, WA float, filtros, forms, doutoras
   BellaMiss Saúde Estética v2
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BOTÕES
   -------------------------------------------------------------------------- */
.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bm-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--bm-radius-sm);
  cursor: pointer;
  transition: all var(--bm-transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Primário — Bordô filled */
.bm-btn-primary {
  background: var(--bm-primary);
  color: var(--bm-white);
}
.bm-btn-primary:hover {
  background: var(--bm-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--bm-shadow-md);
  color: var(--bm-white);
}
.bm-btn-primary:active {
  transform: translateY(0);
}

/* Old Rose filled */
.bm-btn-rose {
  background: var(--bm-secondary);
  color: var(--bm-white);
}
.bm-btn-rose:hover {
  background: var(--bm-secondary-light);
  transform: translateY(-1px);
  color: var(--bm-white);
}

/* Ghost bordô */
.bm-btn-ghost {
  background: transparent;
  color: var(--bm-primary);
  border: 1.5px solid var(--bm-primary);
}
.bm-btn-ghost:hover {
  background: var(--bm-primary);
  color: var(--bm-white);
}

/* Ghost branco — para fundos escuros */
.bm-btn-ghost-white {
  background: transparent;
  color: var(--bm-white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.bm-btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--bm-white);
  color: var(--bm-white);
}

/* WhatsApp */
.bm-btn-whatsapp {
  background: #25D366;
  color: var(--bm-white);
}
.bm-btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  color: var(--bm-white);
}

/* Tamanhos */
.bm-btn-lg { padding: 16px 36px; font-size: 15px; }
.bm-btn-sm { padding: 9px 18px;  font-size: 13px; }
.bm-btn-full { width: 100%; justify-content: center; }

/* Botão com ícone SVG */
.bm-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   2. CARDS BASE
   -------------------------------------------------------------------------- */
.bm-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 24px;
  transition: transform var(--bm-transition), box-shadow var(--bm-transition);
  box-shadow: var(--bm-shadow-sm);
}

.bm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-rose);
}

/* Card de procedimento — borda esquerda colorida */
.bm-card-proc {
  border-left: 3px solid var(--bm-secondary);
  position: relative;
}

/* Card escuro — para seções bordô */
.bm-card-dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--bm-white);
  box-shadow: none;
}

.bm-card-dark h3,
.bm-card-dark h4 {
  color: var(--bm-white);
}

.bm-card-dark p {
  color: rgba(221, 187, 177, 0.8);
}

/* Card featured — "Mais Procurado" */
.bm-card-featured {
  border: 1.5px solid var(--bm-secondary);
  position: relative;
}

.bm-card-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--bm-primary);
  color: var(--bm-white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--bm-radius-pill);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. BADGES E PILLS
   -------------------------------------------------------------------------- */
.bm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221, 187, 177, 0.30);
  color: var(--bm-primary);
  border: 0.5px solid var(--bm-pale-dogwood);
  font-family: var(--bm-font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--bm-radius-pill);
}

.bm-badge-urgency {
  background: rgba(93, 13, 42, 0.07);
  color: var(--bm-primary);
  border-color: var(--bm-border-strong);
}

.bm-badge-urgency::before {
  content: '●';
  color: #E84545;
  font-size: 8px;
  animation: bm-blink 1.5s ease-in-out infinite;
}

@keyframes bm-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.bm-badge-category {
  background: rgba(93, 13, 42, 0.08);
  color: var(--bm-primary);
  border: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* --------------------------------------------------------------------------
   4. AVALIAÇÃO — ESTRELAS (estilo Damaface)
   -------------------------------------------------------------------------- */
.bm-proc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.bm-stars {
  color: var(--bm-secondary);
  font-size: 13px;
  letter-spacing: 1px;
}

.bm-rating-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--bm-text-sec);
}

/* --------------------------------------------------------------------------
   5. BOTÃO WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.bm-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  animation: bm-pulse 2.5s ease-in-out infinite;
  z-index: 9998;
  transition: transform var(--bm-transition);
  cursor: pointer;
  text-decoration: none;
}

.bm-whatsapp-float:hover {
  transform: scale(1.10);
}

.bm-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--bm-white);
}

/* Tooltip ao hover */
.bm-whatsapp-float::before {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bm-text);
  color: var(--bm-white);
  font-family: var(--bm-font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bm-transition);
}

.bm-whatsapp-float:hover::before {
  opacity: 1;
}

@keyframes bm-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.70); }
}

/* --------------------------------------------------------------------------
   6. FILTROS POR CATEGORIA (página /tratamentos)
   -------------------------------------------------------------------------- */
.bm-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bm-filter-tab {
  padding: 10px 24px;
  border-radius: var(--bm-radius-pill);
  border: 1.5px solid var(--bm-border-strong);
  background: transparent;
  color: var(--bm-text-sec);
  font-family: var(--bm-font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--bm-transition);
}

.bm-filter-tab.active,
.bm-filter-tab:hover {
  background: var(--bm-primary);
  border-color: var(--bm-primary);
  color: var(--bm-white);
}

/* Tab desabilitada — "Em breve" */
.bm-filter-tab:disabled,
.bm-filter-tab.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   7. CARDS DE CATEGORIA (3 grandes: Facial / Não Inv. / Corporal)
   -------------------------------------------------------------------------- */
.bm-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bm-category-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--bm-transition), box-shadow var(--bm-transition);
  position: relative;
}

.bm-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-rose);
}

/* Card central em destaque — fundo bordô */
.bm-category-card--featured {
  background: var(--bm-primary);
  border-color: var(--bm-primary);
  color: var(--bm-white);
}

.bm-category-card--featured h3 { color: var(--bm-pale-dogwood) !important; }
.bm-category-card--featured p  { color: rgba(245, 221, 216, 0.85) !important; }

.bm-category-card--featured .bm-category-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.bm-category-card--featured .bm-category-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.bm-category-card--featured .bm-category-list li { color: rgba(255, 255, 255, 0.85); }
.bm-category-card--featured .bm-category-list li::before { color: var(--bm-pale-dogwood); }

/* Card "Em breve" */
.bm-category-card--soon {
  opacity: 0.72;
  pointer-events: none;
}

.bm-category-badge-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bm-ash-gray);
  color: var(--bm-white);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--bm-radius-pill);
}

/* Ícone da categoria */
.bm-category-icon {
  width: 52px;
  height: 52px;
  background: rgba(221, 187, 177, 0.20);
  border: 1px solid var(--bm-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bm-category-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--bm-secondary);
  fill: none;
  stroke-width: 1.5;
}

.bm-category-card h3 {
  font-family: var(--bm-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bm-primary);
  margin: 0;
}

.bm-category-card p {
  font-size: var(--bm-text-sm);
  color: var(--bm-text-sec);
  line-height: 1.6;
  margin: 0;
}

.bm-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bm-category-list li {
  font-size: 14px;
  color: var(--bm-text-sec);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bm-category-list li::before {
  content: '✓';
  color: var(--bm-secondary);
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .bm-categories-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   8. CARDS DAS DOUTORAS
   -------------------------------------------------------------------------- */
.bm-doutor-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(93, 13, 42, 0.07);
  transition: box-shadow var(--bm-transition), transform var(--bm-transition);
  display: flex;
  flex-direction: column;
}

.bm-doutor-card:hover {
  box-shadow: 0 10px 40px rgba(93, 13, 42, 0.14);
  transform: translateY(-3px);
}

/* --- Parte superior: foto cobre largura total, fundo vinho --- */
.bm-doutor-top {
  background: var(--bm-primary);
  height: 320px;
  overflow: hidden;
}

.bm-doutor-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bm-doutor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}

.bm-doutor-card:hover .bm-doutor-photo img {
  transform: scale(1.06);
}

.bm-doutor-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bm-font-display);
  font-size: 48px;
  font-weight: 600;
  color: rgba(245, 221, 216, 0.35);
}

/* --- Parte inferior: fundo branco com nome e detalhes --- */
.bm-doutor-info {
  padding: 20px 24px 24px;
  background: var(--bm-white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bm-doutor-nome {
  font-family: var(--bm-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bm-primary);
  margin: 0 0 6px;
  line-height: 1.2;
}

.bm-doutor-titulo {
  font-size: var(--bm-text-sm);
  color: var(--bm-text-sec);
  margin: 2px 0 0;
}

.bm-doutor-crf {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bm-secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bm-doutor-especialidades {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .bm-doutor-top {
    height: 260px;
  }
}

/* --------------------------------------------------------------------------
   9. DIFERENCIAIS — GRID FUNDO ESCURO
   -------------------------------------------------------------------------- */
.bm-diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.bm-diferencial-item {
  text-align: center;
}

.bm-diferencial-icon {
  width: 64px;
  height: 64px;
  background: rgba(177, 115, 104, 0.15);
  border: 1px solid rgba(177, 115, 104, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--bm-transition), transform var(--bm-transition);
}

.bm-diferencial-item:hover .bm-diferencial-icon {
  background: rgba(177, 115, 104, 0.25);
  transform: translateY(-3px);
}

.bm-diferencial-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bm-pale-dogwood);
  fill: none;
  stroke-width: 1.5;
}

.bm-diferencial-item h4 {
  font-family: var(--bm-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bm-white);
  margin-bottom: 8px;
}

.bm-diferencial-item p {
  font-size: var(--bm-text-sm);
  color: rgba(221, 187, 177, 0.75);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .bm-diferenciais-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
}

@media (max-width: 480px) {
  .bm-diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   10. PARCEIROS / MARCAS — FAIXA ANIMADA
   -------------------------------------------------------------------------- */
.bm-partners {
  background: var(--bm-bg-section-2);
  border-top: 1px solid var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
  overflow: hidden;
  padding: 32px 0;
}

.bm-partners-track-wrapper {
  overflow: hidden;
  position: relative;
}

.bm-partners-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: bm-scroll-partners 22s linear infinite;
  width: max-content;
}

.bm-partners-track:hover {
  animation-play-state: paused;
}

.bm-partner-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity var(--bm-transition), filter var(--bm-transition);
  flex-shrink: 0;
  font-family: var(--bm-font-body);
  font-size: var(--bm-text-sm);
  font-weight: 600;
  color: var(--bm-text-sec);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 8px;
}

.bm-partner-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.bm-partner-logo:hover {
  opacity: 1;
  filter: none;
}

@keyframes bm-scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   11. ACCORDION FAQ
   -------------------------------------------------------------------------- */
.bm-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bm-accordion-item {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  overflow: hidden;
  transition: box-shadow var(--bm-transition);
}

.bm-accordion-item.is-open {
  box-shadow: var(--bm-shadow-sm);
  border-color: var(--bm-border-strong);
}

.bm-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--bm-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bm-text);
  transition: color var(--bm-transition);
}

.bm-accordion-trigger:hover {
  color: var(--bm-primary);
}

.bm-accordion-item.is-open .bm-accordion-trigger {
  color: var(--bm-primary);
}

.bm-accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bm-bg-section-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--bm-transition), transform var(--bm-transition);
  font-size: 14px;
  color: var(--bm-secondary);
  font-weight: 300;
}

.bm-accordion-item.is-open .bm-accordion-icon {
  background: var(--bm-primary);
  color: var(--bm-white);
  transform: rotate(45deg);
}

.bm-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--bm-transition);
  padding: 0 24px;
}

.bm-accordion-body.is-open {
  padding: 0 24px 18px;
}

.bm-accordion-body p {
  font-size: var(--bm-text-base);
  color: var(--bm-text-sec);
  line-height: 1.75;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. CARROSSEL DE DEPOIMENTOS
   -------------------------------------------------------------------------- */
.bm-carousel {
  position: relative;
}

.bm-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.bm-carousel-track::-webkit-scrollbar {
  display: none;
}

.bm-carousel-track .bm-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
}

@media (max-width: 1024px) {
  .bm-carousel-track .bm-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .bm-carousel-track .bm-card {
    flex: 0 0 calc(85% - 10px);
  }
}

/* Dots de paginação */
.bm-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.bm-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bm-pale-dogwood);
  border: none;
  cursor: pointer;
  transition: background var(--bm-transition), transform var(--bm-transition);
}

.bm-carousel-dot.active {
  background: var(--bm-secondary);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   13. CARD DE DEPOIMENTO
   -------------------------------------------------------------------------- */
.bm-testimonial-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 24px;
}

.bm-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bm-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(221, 187, 177, 0.35);
  color: var(--bm-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bm-font-display);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.bm-testimonial-meta {}
.bm-testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bm-text);
}
.bm-testimonial-proc {
  font-size: 12px;
  color: var(--bm-secondary);
  margin-top: 2px;
}

.bm-testimonial-stars {
  font-size: 13px;
  color: var(--bm-secondary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bm-testimonial-text {
  font-size: 14px;
  color: var(--bm-text-sec);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. LIGHTBOX (galeria resultados)
   -------------------------------------------------------------------------- */
.bm-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--bm-transition), visibility var(--bm-transition);
}

.bm-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.bm-lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
}

.bm-lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--bm-radius);
}

.bm-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: var(--bm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--bm-text);
  transition: background var(--bm-transition);
  border: none;
}

.bm-lightbox-close:hover {
  background: var(--bm-bg-section-2);
}

/* --------------------------------------------------------------------------
   15. CTA BOX (inline nos artigos do blog)
   -------------------------------------------------------------------------- */
.bm-cta-box {
  background: var(--bm-bg-section-3);
  border-radius: var(--bm-radius);
  padding: 28px 32px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bm-cta-box-text h4 {
  font-family: var(--bm-font-display);
  font-size: 22px;
  color: var(--bm-primary);
  margin-bottom: 6px;
}

.bm-cta-box-text p {
  font-size: var(--bm-text-sm);
  color: var(--bm-text-sec);
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. CARD ANTES/DEPOIS
   -------------------------------------------------------------------------- */
.bm-result-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  overflow: hidden;
  box-shadow: var(--bm-shadow-sm);
  transition: transform var(--bm-transition), box-shadow var(--bm-transition);
}

.bm-result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-rose);
}

.bm-result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
}

.bm-result-img-wrap {
  position: relative;
  overflow: hidden;
}

.bm-result-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bm-result-img-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: var(--bm-white);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--bm-radius-pill);
  letter-spacing: 0.08em;
}

.bm-result-info {
  padding: 16px 20px;
}

.bm-result-info p {
  font-size: var(--bm-text-sm);
  color: var(--bm-text-sec);
  margin: 6px 0 0;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   17. HERO INTERNO — Páginas Internas
   -------------------------------------------------------------------------- */
.bm-hero-inner {
  height: 300px;
  background: var(--bm-bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bm-hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bm-gradient-hero);
  opacity: 0.6;
}

.bm-hero-inner-content {
  position: relative;
  z-index: 1;
}

.bm-breadcrumb {
  font-size: var(--bm-text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bm-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--bm-transition);
}

.bm-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.bm-breadcrumb-sep {
  font-size: 10px;
  opacity: 0.5;
}

.bm-hero-inner h1 {
  font-family: var(--bm-font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--bm-white);
  margin-bottom: 10px;
}

.bm-hero-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.80);
  max-width: 520px;
}

@media (max-width: 768px) {
  .bm-hero-inner { height: 240px; }
  .bm-hero-inner h1 { font-size: 30px; }
  .bm-hero-inner p { font-size: 15px; }
}
