/* =================================================================
   LP Report Governança de IA — add-ons sobre theme.css
   Acento: laranja da marca (CTA), no lugar do verde das LPs de ads.
   ================================================================= */
:root { --g-50: var(--op-orange-50); --g-300: var(--op-orange-300); --g-400: var(--op-orange-400); --g-500: var(--op-orange-500); --g-600: var(--op-orange-600); }

/* ---- Select estilizado como os inputs do form ---- */
.form-row select { width: 100%; padding: 12px 40px 12px 14px; border: 1px solid var(--border-subtle); border-radius: var(--r-md); font: inherit; font-size: var(--fs-16); color: var(--fg-1); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 256 256'%3E%3Cpath fill='%238a95a0' d='M213 101 133 181a8 8 0 0 1-11 0L43 101a8 8 0 1 1 11-11l74 74 74-74a8 8 0 0 1 11 11Z'/%3E%3C/svg%3E") no-repeat right 14px center; appearance: none; transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard); }
.form-row select:focus { outline: none; border-color: var(--g-500); box-shadow: var(--sh-focus); }
.form-row select.err { border-color: var(--op-crit); }
.form-row select:invalid, .form-row select option[value=""] { color: #8a95a0; }

/* ---- Badge "report gratuito" no hero ---- */
.rep-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: var(--r-pill); background: rgba(255,107,26,0.12); border: 1px solid rgba(255,107,26,0.35); color: var(--op-orange-300); font-weight: 700; font-size: var(--fs-14); margin-bottom: 18px; }
.rep-badge i { font-size: 17px; }

/* ---- Fatos do report (36 páginas etc.) ---- */
.rep-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.rep-fact { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,0.05); border: 1px solid var(--ink-line); color: #c6d0da; font-weight: 600; font-size: var(--fs-14); }
.rep-fact i { color: var(--op-orange-400); font-size: 17px; }

/* ---- Capítulos numerados ---- */
.chapters { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.chapter { position: relative; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--r-lg); padding: 28px 28px 28px 84px; box-shadow: var(--sh-1); transition: box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard); }
.chapter:hover { box-shadow: var(--sh-3); border-color: var(--border-strong); }
.chapter .ch-n { position: absolute; left: 24px; top: 26px; width: 42px; height: 42px; border-radius: var(--r-md); display: grid; place-items: center; font-family: var(--font-mono, monospace); font-weight: 700; font-size: var(--fs-18); color: var(--op-orange-600); background: var(--op-orange-50); border: 1px solid rgba(255,107,26,0.25); }
.chapter h3 { margin: 0 0 8px; font-size: var(--fs-18); color: var(--fg-1); letter-spacing: -0.01em; }
.chapter p { margin: 0; font-size: var(--fs-14); line-height: 1.6; color: var(--fg-3); }
@media (max-width: 760px) { .chapters { grid-template-columns: 1fr; } }

/* ---- Capa do report + coluna de conteúdo ---- */
.rep-split { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.rep-cover { position: sticky; top: 110px; }
.rep-cover .cover-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-4); border: 1px solid var(--border-subtle); background: var(--ink); aspect-ratio: 749/1064; }
.rep-cover .cover-cap { margin-top: 14px; text-align: center; font-size: var(--fs-12); color: var(--fg-4); }
@media (max-width: 900px) { .rep-split { grid-template-columns: 1fr; } .rep-cover { position: static; max-width: 300px; margin: 0 auto; } }

/* ---- Vídeo ---- */
.video-frame { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-4); border: 1px solid var(--ink-line); background: var(--ink-1); aspect-ratio: 16/9; max-width: 860px; margin: 0 auto; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- Riscos: valor da multa em destaque ---- */
.risk-fig { font-family: var(--font-mono, monospace); font-weight: 700; font-size: var(--fs-24); color: var(--op-orange-300); margin: 2px 0 10px; letter-spacing: -0.01em; }

/* ---- Footer social ---- */
.soc-row { display: flex; gap: 10px; margin-top: 16px; }
.soc-row a { width: 38px; height: 38px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 19px; color: #c6d0da; background: rgba(255,255,255,0.05); border: 1px solid var(--ink-line); transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); }
.soc-row a:hover { background: rgba(255,107,26,0.15); color: var(--op-orange-300); }

#form-hero, #form-final { scroll-margin-top: 100px; }
@media (max-width: 520px) { .chapter { padding: 24px; } .chapter .ch-n { position: static; margin-bottom: 12px; } }
