/* KYA Autodespido Module Styles (v1.1.4) */
:root {
  --brand: #26316c;
  --brand-900: #1f2a5c;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
}
.kya-section { background: #ffffff; }
.kya-wrapper { max-width: 1120px; margin: 0 auto; padding: 56px 24px; }
.kya-center { text-align: center; margin: 0 auto; max-width: 680px; }
.kya-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; font: 500 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; color: var(--brand); background: rgba(38,49,108,.1); }

.kya-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 768px){ .kya-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .kya-grid{ grid-template-columns: repeat(4, 1fr); } }

.kya-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: box-shadow .2s ease, transform .2s ease; }
.kya-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-1px); }
.kya-card-head { display: flex; align-items: center; gap: 12px; }
.kya-icon { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:12px; background: rgba(38,49,108,.10); color: var(--brand); }
.kya-card h3 { margin: 0; font: 600 18px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; color: var(--ink); }
.kya-card p { margin: 12px 0 0; color: var(--muted); font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; }
.kya-card ul { margin: 12px 0 0 0; padding: 0 0 0 18px; color: var(--muted); font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; }

.kya-cta { margin-top: 40px; display:flex; flex-direction:column; gap:16px; align-items:center; justify-content:space-between; border:1px solid rgba(38,49,108,.15); border-radius:16px; padding:24px; background: linear-gradient(90deg, rgba(38,49,108,.06), #ffffff); }
@media (min-width: 768px){ .kya-cta{ flex-direction:row; } }
.kya-cta-title { margin:0; font: 500 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; color: var(--ink); }
.kya-cta-sub { margin:4px 0 0; font: 400 14px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; color: #4b5563; }
.kya-cta-actions { display:flex; gap:12px; }

.kya-btn { display:inline-flex; align-items:center; justify-content:center; padding:12px 20px; font: 600 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; border-radius: 12px; text-decoration:none; transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.kya-btn:focus { outline: none; box-shadow: 0 0 0 2px var(--brand); }
.kya-btn-primary { background: var(--brand); color:#fff; border:1px solid var(--brand); }
.kya-btn-primary:hover { background: var(--brand-900); border-color: var(--brand-900); }
.kya-btn-outline { background:#fff; color: var(--brand); border:1px solid rgba(38,49,108,.30); }
.kya-btn-outline:hover { background: rgba(38,49,108,.10); }

.kya-legal { margin-top:16px; text-align:center; color:#6b7280; font: 400 12px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue; }
