/* ==========================================================================
   HM2 FACTORY — DOBRA CTA DESTAQUE
   Identificador único: .h2-secao--cta-destaque
   Todos os seletores são prefixados por este identificador.

   Layout: card escuro centralizado (título + subtítulo) + CTAs centralizados.
   Body: oculto — conteúdo vem de field_titulo_secao e field_secao_subtitulo.
   ========================================================================== */

/* ── 1. Card escuro: sempre centralizado ────────────────────────────────── */
body:not(.path-admin) .h2-secao--cta-destaque .lp-section__header {
  background-color: var(--hm2-pal-surface-dark, #1a2340);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* ── 2. Título: branco, destaque ────────────────────────────────────────── */
body:not(.path-admin) .h2-secao--cta-destaque .lp-section__titulo {
  color: #ffffff !important;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* ── 3. Subtítulo: branco semi-transparente ─────────────────────────────── */
body:not(.path-admin) .h2-secao--cta-destaque .lp-section__subtitulo {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.1rem;
  margin: 0.6rem 0 0;
  line-height: 1.6;
  max-width: none;
}

/* ── 4. Categoria pill: borda e texto brancos ───────────────────────────── */
body:not(.path-admin) .h2-secao--cta-destaque .lp-section__categoria {
  color: rgba(255, 255, 255, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* ── 5. Body: oculto — conteúdo via field_titulo_secao/field_secao_subtitulo */
body:not(.path-admin) .h2-secao--cta-destaque .field--name-body {
  display: none !important;
}

/* ── 6. CTAs: sempre centralizados ─────────────────────────────────────── */
body:not(.path-admin) .h2-secao--cta-destaque .h2-secao__ctas {
  justify-content: center;
}

/* ── 7. Mobile ───────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  body:not(.path-admin) .h2-secao--cta-destaque .lp-section__header {
    padding: 2rem 1.5rem;
  }
  body:not(.path-admin) .h2-secao--cta-destaque .h2-secao__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  body:not(.path-admin) .h2-secao--cta-destaque .h2-secao__ctas .btn {
    text-align: center;
  }
}