/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #053A5B;
  --primary-dark: #032539;
  --success: #3B6D11;
  --success-bg: #EAF3DE;
  --warning: #BA7517;
  --warning-bg: #FAEEDA;
  --danger: #A32D2D;
  --danger-bg: #FAEBE7;
  --info-bg: #E6F1FB;
  --info: #053A5B;
  --gray: #5F5E5A;
  --gray-bg: #F1EFE8;
  --bg: #F5F5F2;
  --surface: #FFFFFF;
  --border: rgba(0,0,0,0.12);
  --text: #1a1a18;
  --text-muted: #5F5E5A;
  --text-hint: #888780;
  --radius: 8px;
  --radius-lg: 12px;
  --sidebar-w: 210px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  height: 100vh;
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* ── Login ─────────────────────────────────────────────────────────────── */
#login-screen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.login-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 360px;
}

.login-logo {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.login-logo-img {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 0 8px;
}

.login-logo span { color: var(--primary); }

.login-area-restrita {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--info-bg, rgba(5,58,91,0.08));
  border: 1px solid rgba(5,58,91,0.18);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 0 18px;
  width: fit-content;
}

.login-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 9px 12px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .15s;
}

.form-group input:focus { border-color: var(--primary); }

.login-erro {
  font-size: 12px;
  color: var(--danger);
  margin-top: 8px;
  min-height: 16px;
}

/* ── Layout Principal ───────────────────────────────────────────────────── */
#app {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--surface);
  border-right: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform .2s;
}

.logo {
  padding: 16px 16px 20px;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.logo span { color: var(--primary); }

nav { flex: 1; }

.nav-section {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 16px 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 0;
  transition: background .12s, color .12s;
  cursor: pointer;
}

.nav-item i { font-size: 16px; }

.nav-item:hover {
  background: var(--gray-bg);
  color: var(--text);
}

.nav-item.active {
  background: var(--info-bg);
  color: var(--primary);
  font-weight: 500;
}

.sidebar-footer {
  padding: 16px;
  border-top: 0.5px solid var(--border);
}

.btn-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 8px 0;
  width: 100%;
}

.btn-logout:hover { color: var(--danger); }

/* ── Main ──────────────────────────────────────────────────────────────── */
.aian {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.topbar {
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
}

.topbar-title { font-size: 15px; font-weight: 500; flex: 1; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--info-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* ── Componentes ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text);
  transition: background .12s;
}

.btn-outline:hover { background: var(--gray-bg); }

.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.card-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.kpi {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}

.kpi-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.kpi-value { font-size: 22px; font-weight: 500; }
.kpi-sub { font-size: 11px; color: var(--text-hint); margin-top: 3px; }
.kpi-value.success { color: var(--success); }
.kpi-value.warning { color: var(--warning); }
.kpi-value.danger  { color: var(--danger); }
.kpi-value.primary { color: var(--primary); }

.badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger  { background: var(--danger-bg);  color: var(--danger); }
.badge-info    { background: var(--info-bg);    color: var(--info); }
.badge-gray    { background: var(--gray-bg);    color: var(--gray); }

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th {
  text-align: left;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 14px;
  border-bottom: 0.5px solid var(--border);
}

td {
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--border);
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--gray-bg); }

.input-field {
  padding: 8px 12px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  color: var(--text);
  background: var(--surface);
  transition: border-color .15s;
}

.input-field:focus { border-color: var(--primary); }

select.input-field { height: 36px; }

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.toolbar-left { display: flex; align-items: center; gap: 8px; }

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  min-width: 220px;
}

.search-box input {
  border: none;
  outline: none;
  background: none;
  font-size: 13px;
  color: var(--text);
  width: 100%;
}

.ini {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--info-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}

.funil-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: start;
}

.funil-col { background: var(--gray-bg); border-radius: var(--radius-lg); padding: 10px; }

.funil-col-header {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: center;
}

.lead-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: box-shadow .12s;
}

.lead-card:hover { border-color: var(--primary); }
.lead-card-name { font-weight: 500; font-size: 13px; margin-bottom: 3px; }
.lead-card-desc { font-size: 11px; color: var(--text-muted); }
.lead-card-val  { font-size: 12px; color: var(--text-hint); margin-top: 5px; }

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  margin-bottom: 8px;
}

.alert-warning { background: var(--warning-bg); color: var(--warning); }
.alert-danger  { background: var(--danger-bg);  color: var(--danger); }
.alert-info    { background: var(--info-bg);    color: var(--info); }

.progress-row { margin-bottom: 12px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.progress-bg {
  background: var(--gray-bg);
  border-radius: 4px;
  height: 7px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--primary);
  transition: width .4s ease;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

.list-row:last-child { border-bottom: none; }

.agenda-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--border);
}

.agenda-item:last-child { border-bottom: none; }
.agenda-hora { font-size: 12px; color: var(--text-muted); min-width: 50px; line-height: 1.4; }
.agenda-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 480px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-title { font-size: 15px; font-weight: 500; }
.modal-close { background: none; border: none; font-size: 20px; color: var(--text-muted); cursor: pointer; }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 5px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 8px 12px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  color: var(--text);
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--primary);
}

.form-row textarea { min-height: 80px; resize: vertical; }

.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

.empty-state i { font-size: 40px; margin-bottom: 12px; color: var(--text-hint); display: block; }
.empty-state p { font-size: 14px; }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  z-index: 200;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
}

.toast.show { opacity: 1; transform: translateY(0); }

.mini-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--text-muted);
}
.mini-info span { color: var(--text-hint); font-size: 11px; }
.mini-info b { color: var(--text); font-size: 13px; }

code {
  background: var(--gray-bg);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 11px;
  color: var(--text-muted);
}

canvas { max-height: 260px; }

#pwa-install-btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(24,95,165,.35);
  z-index: 90;
}

#pwa-install-btn.show { display: flex; }

.admin-tabs, .c360-tabs, .module-tabs, #materiais-tabs {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: 4px 0 18px !important;
  padding: 0 0 14px !important;
  border-bottom: 0.5px solid var(--border) !important;
}

.admin-tab, .c360-tab, .module-tab, #materiais-tabs button {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 40px !important;
  min-width: 118px !important;
  padding: 0 18px !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 999px !important;
  background: var(--surface) !important;
  color: var(--text-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background .16s ease, border-color .16s ease, color .16s ease !important;
}

.admin-tab.active, .c360-tab.active, .module-tab.active, #materiais-tabs button.active,
.admin-tab[aria-selected="true"], .c360-tab[aria-selected="true"] {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    z-index: 50;
    transform: translateX(-100%);
  }
  .sidebar.open { transform: translateX(0); }
  .menu-toggle { display: block; }
  .grid2 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .funil-board { grid-template-columns: 1fr; }
  .content { padding: 16px; }
}

/* ── v18: Central Google + IA / PWA / estados ───────────────────────────── */
.admin-hero{background:var(--surface);border:0.5px solid var(--border);border-radius:var(--radius-lg);padding:18px;display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.admin-hero h2{font-size:20px;margin:0 0 6px}.admin-hero p{font-size:13px;color:var(--text-muted);line-height:1.55;max-width:760px}.admin-kpis{display:flex;gap:8px;flex-wrap:wrap}.mini-kpi{background:var(--gray-bg);border-radius:10px;padding:10px 12px;min-width:110px}.mini-kpi span{display:block;font-size:11px;color:var(--text-muted);margin-bottom:4px}.mini-kpi strong{font-size:13px;color:var(--text)}
.module-tabs,.c360-tabs{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin-bottom:16px}.module-tab,.c360-tab{display:inline-flex;align-items:center;gap:7px;border:0.5px solid var(--border);background:var(--surface);border-radius:999px;padding:8px 14px;font-size:13px;color:var(--text-muted);cursor:pointer;transition:.15s}.module-tab i,.c360-tab i{font-size:16px;color:currentColor}.module-tab.active,.c360-tab.active{background:var(--primary);border-color:var(--primary);color:#fff;font-weight:600;box-shadow:0 6px 18px rgba(24,95,165,.16)}
.google-tab-panel{animation:fadeIn .16s ease-out}.alert-info{background:var(--info-bg);color:var(--info);border-left:3px solid var(--info)}.alert-warning{background:var(--warning-bg);color:var(--warning);border-left:3px solid var(--warning)}
#pwa-install-btn{position:fixed;right:18px;bottom:18px;display:none;align-items:center;gap:8px;border:0;background:var(--primary);color:#fff;border-radius:999px;padding:10px 16px;box-shadow:0 10px 24px rgba(0,0,0,.18);z-index:50}#pwa-install-btn.show{display:inline-flex}
@keyframes fadeIn{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:780px){.admin-hero{flex-direction:column}.admin-kpis{width:100%}.mini-kpi{flex:1}.module-tabs,.c360-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.module-tab,.c360-tab{white-space:nowrap}}


/* Consultor 360 v19 — SaaS Multiempresa */
#tenant-badge-v19 .plano-badge { margin-left: 0; margin-top: 5px; }
.badge-cortesia, .plano-badge.cortesia { background:#F3E8FF; color:#7C3AED; }
.saas-warning { background:#FFF7ED; border:1px solid #FED7AA; color:#9A3412; border-radius:12px; padding:12px; font-size:13px; line-height:1.5; }
.saas-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap:16px; }


/* ── Agenda com Google Calendar lateral ───────────────────────────────── */
.agenda-google-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: 16px;
  align-items: start;
}
.agenda-list-panel { min-width: 0; }
.agenda-google-panel { min-width: 0; position: sticky; top: 12px; }
.agenda-google-card { padding: 14px; }
.agenda-google-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.google-calendar-frame {
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 520px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
@media (max-width: 1200px) {
  .agenda-google-layout { grid-template-columns: 1fr; }
  .agenda-google-panel { position: static; }
  .google-calendar-frame { height: 620px; }
}
@media (max-width: 700px) {
  .google-calendar-frame { height: 520px; min-height: 420px; }
}

/* ═══ v21 — Propostas Inteligentes / Biblioteca de Modelos / IA ═══ */
.grid3 { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px; }
.modelos-grid-v21 { align-items:stretch; }
.modelo-card-v21 { position:relative; overflow:hidden; min-height:210px; }
.modelo-swatch-v21 { height:54px; border-radius:12px; margin:-4px 0 12px; border:1px solid rgba(0,0,0,.08); }
.modelo-tags-v21 { display:flex; flex-wrap:wrap; gap:6px; margin:10px 0; }
.modelo-tags-v21 span { font-size:11px; padding:3px 8px; border-radius:999px; background:var(--info-bg); color:var(--primary); font-weight:600; }
.choice-grid-v21 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.choice-card-v21 { text-align:left; background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:22px; min-height:160px; display:flex; flex-direction:column; gap:8px; transition:.15s; color:var(--text); }
.choice-card-v21 i { font-size:28px; color:var(--primary); }
.choice-card-v21 b { font-size:17px; }
.choice-card-v21 span { color:var(--text-muted); font-size:13px; line-height:1.45; }
.choice-card-v21:hover { border-color:var(--primary); box-shadow:0 8px 26px rgba(0,0,0,.08); transform:translateY(-1px); }
.proposal-preview-wrap-v21 { max-height:70vh; overflow:auto; background:#f0f0ed; border-radius:14px; padding:16px; }
.proposal-preview-v21 { background:white; color:#151515; border-radius:14px; overflow:hidden; max-width:980px; margin:auto; box-shadow:0 16px 40px rgba(0,0,0,.12); }
.proposal-preview-v21 section { padding:34px 42px; border-bottom:1px solid rgba(0,0,0,.08); }
.pv21-cover { min-height:330px; background:linear-gradient(135deg,var(--pv21-secondary),var(--pv21-primary)); color:#fff; display:grid; grid-template-columns:110px 1fr; gap:24px; align-items:center; }
.pv21-cover h1 { font-size:42px; line-height:1.03; margin:8px 0; max-width:650px; }
.pv21-kicker { text-transform:uppercase; letter-spacing:.18em; font-size:12px; opacity:.78; }
.pv21-logo { max-width:86px; max-height:86px; background:white; border-radius:14px; padding:8px; }
.pv21-mark { width:80px; height:80px; border-radius:20px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.16); color:#fff; font-weight:800; font-size:24px; }
.pv21-client { grid-column:1/-1; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); padding:12px 16px; border-radius:12px; font-size:13px; }
.proposal-preview-v21 h2 { color:var(--pv21-primary); margin:0 0 10px; font-size:25px; }
.proposal-preview-v21 p, .proposal-preview-v21 li { font-size:15px; line-height:1.65; }
.pv21-two { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.pv21-cards, .pv21-steps, .pv21-packages { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:14px; }
.pv21-cards div, .pv21-steps div, .pv21-packages div { background:var(--pv21-soft); border-radius:14px; padding:16px; }
.pv21-steps span { display:inline-flex; width:30px; height:30px; border-radius:50%; align-items:center; justify-content:center; background:var(--pv21-primary); color:#fff; font-weight:700; margin-bottom:8px; }
.pv21-price { font-size:30px !important; font-weight:800; color:var(--pv21-primary); }
.pv21-validade { font-size:13px !important; color:#666; margin-top:12px; }
@media(max-width:900px){ .grid3,.choice-grid-v21,.pv21-two,.pv21-cards,.pv21-steps,.pv21-packages{grid-template-columns:1fr}.pv21-cover{grid-template-columns:1fr}.pv21-cover h1{font-size:32px}.proposal-preview-v21 section{padding:24px} }
