/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background:#f4f6f8; color:#222; line-height:1.5; }

/* Topbar */
.topbar { display:flex; justify-content:space-between; align-items:center; background:#2d3748; color:#fff; padding:12px 18px; }
.brand { display:flex; gap:12px; align-items:center; }
.brand img { height:38px; }
.actions button { margin-left:10px; }

/* Layout principal */
.grid { display:grid; grid-template-columns: 1fr 1fr; gap:18px; padding:18px; }
.panel { background:#fff; padding:16px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.08); }
h2 { margin-bottom:12px; font-size:18px; }

/* Formulário */
label { display:block; margin-bottom:12px; font-weight:600; font-size:13px; }
input, textarea, select { width:100%; padding:8px; margin-top:6px; border:1px solid #ccc; border-radius:6px; font-size:14px; }
textarea { min-height:80px; resize:vertical; }
.inline { display:flex; gap:10px; }
.form-actions { display:flex; gap:10px; margin-top:6px; }

/* Botões */
.btn { padding:9px 14px; border-radius:8px; border:none; cursor:pointer; font-weight:700; }
.primary { background:#2563eb; color:#fff; } 
.success { background:#16a34a; color:#fff; }
.secondary { background:#475569; color:#fff; } 
.ghost { background:#e2e8f0; color:#2d3748; }
.danger { background:#ef4444; color:#fff; }

/* Preview */
.preview-panel { max-height:78vh; overflow:auto; }
.contrato { padding:22px; background:#fff; border:1px solid #ddd; font-family:"Times New Roman", serif; font-size:14pt; text-align:justify; line-height:1.6; min-height:300px; }

/* Estilo do contrato */
.contrato .cabecalho { text-align:center; margin-bottom:18px; }
.contrato .cabecalho img { max-height:70px; display:block; margin:0 auto 8px; }
.contrato h1 { font-size:18px; letter-spacing:1px; margin-bottom:6px; }
.contrato .clausula { margin:12px 0; text-indent: 1.2em; }
.assinaturas { display:flex; justify-content:space-between; margin-top:42px; gap:12px; }
.assinatura { width:48%; text-align:center; }
.small-info { font-size:12px; color:#555; margin-top:8px; }

/* Rodapé */
footer.footer { text-align:center; padding:10px 0; background:#edf2f7; margin-top:12px; font-size:13px; }

/* Responsivo */
@media (max-width:900px) { .grid { grid-template-columns: 1fr; } }
