/* ==========================================================================
   LG-Forms — Frontend Embed Stylesheet
   Usado por: shortcode [lg_form] e bloco Gutenberg lg-forms/form
   Carregado via wp_enqueue_style / register_block_type editor_style + style

   NOTA: As regras globais de body/label/input para a página standalone
   (page.php com <!DOCTYPE html>) ficam inline nesse ficheiro — nunca aqui,
   para não afectar o editor Gutenberg nem temas WordPress.
   ========================================================================== */

/* ── Shortcode embed / bloco Gutenberg ──────────────────────────────────────
   Todos os seletores prefixados com .lgf-embed para não conflituar com o
   tema do site nem com os estilos do editor.                                 */

.lgf-embed {
  width: 100%;
  margin-top: 0;
  box-sizing: border-box;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lgf-embed .lgf-img-topo { max-width:100%; height:auto; margin-bottom:25px; }

.lgf-embed .f-g { margin-bottom:20px; text-align:left; }

/* Heading do formulário — sem !important para permitir que o tema/página sobrescreva */
.lgf-embed h2 {
  text-align: left;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: normal;
  text-transform: none;
}

.lgf-embed label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.lgf-embed input:not([type=checkbox]),
.lgf-embed select,
.lgf-embed textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: inherit;
}

.lgf-embed textarea { resize: vertical; }
.lgf-embed select   { background: #fff; }

.lgf-embed .btn {
  width: 100%;
  padding: 18px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

.lgf-embed .msg-ok     { background:#d4edda; color:#155724; padding:15px; border-radius:8px; margin-bottom:20px; }
.lgf-embed .msg-col    { background:#fff3cd; color:#664d03; padding:15px; border-radius:8px; margin-bottom:20px; }
.lgf-embed .msg-err    { background:#f8d7da; color:#721c24; padding:15px; border-radius:8px; margin-bottom:20px; }
.lgf-embed .msg-inativo {
  background: #fff8f0;
  color: #7a4f00;
  border: 1px solid #f5c842;
  padding: 20px 18px;
  border-radius: 12px;
  margin: 20px 0;
  line-height: 1.6;
  font-size: 15px;
}
