/**
 * novo-cadastro.css — novo cadastro (novo-cadastro.php)
 * Extraído de <style> inline (~220 linhas). Sem PHP interpolado.
 */

        :root { --primary: #00A651; --primary-hover: #008f45; --primary-light: #00c960; }

        * { box-sizing: border-box; }
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #f0fdf4;
            min-height: 100vh;
            margin: 0;
        }

        /* ── Layout ── */
        .page-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        /* ── Left panel (hero) ── */
        .hero-panel {
            background: linear-gradient(145deg, #007a3d 0%, #00A651 50%, #00c960 100%);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 56px;
            position: relative;
            overflow: hidden;
        }
        .hero-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 55%),
                        radial-gradient(circle at 10% 85%, rgba(0,0,0,0.08) 0%, transparent 45%);
        }
        .hero-panel > * { position: relative; z-index: 1; }

        .hero-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 48px;
            opacity: 0.95;
        }
        .hero-brand span { opacity: 0.7; font-weight: 500; }

        .hero-headline {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }
        .hero-sub {
            font-size: 1.05rem;
            opacity: 0.85;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .feature-list { list-style: none; padding: 0; margin: 0 0 48px; display: flex; flex-direction: column; gap: 14px; }
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .feature-list li .icon-wrap {
            width: 32px; height: 32px;
            background: rgba(255,255,255,0.18);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .badge-strip {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .badge-pill {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 0.78rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(4px);
        }

        /* ── Right panel (form) ── */
        .form-panel {
            background: #f0fdf4;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 24px;
        }
        .form-box {
            width: 100%;
            max-width: 420px;
        }
        .form-heading {
            font-size: 1.6rem;
            font-weight: 800;
            color: #1a2e1a;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
        }
        .form-subheading {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 28px;
        }
        .form-subheading strong { color: var(--primary); }

        .card-form {
            background: #fff;
            border: 1px solid #e2f5ea;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 8px 40px rgba(0, 166, 81, 0.08);
        }

        .form-label { font-size: 0.8rem; font-weight: 700; color: #374151; margin-bottom: 6px; }
        .form-control {
            border-radius: 10px;
            padding: 11px 14px;
            border: 1.5px solid #e2e8f0;
            font-size: 0.9rem;
            transition: border-color .2s, box-shadow .2s;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0,166,81,0.12);
            outline: none;
        }

        .req-item { font-size: 11px; margin-bottom: 2px; color: #94a3b8; transition: .2s; }
        .req-item.valid { color: var(--primary); font-weight: 700; }
        .req-item i { font-size: 8px; margin-right: 5px; }

        .btn-cta {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 13px;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 12px;
            width: 100%;
            transition: background .2s, transform .2s, box-shadow .2s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .btn-cta:hover:not(:disabled) {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,166,81,0.25);
        }
        .btn-cta:disabled { background: #cbd5e1; cursor: not-allowed; }

        .alert-error {
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fecaca;
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 0.85rem;
            margin-bottom: 18px;
        }

        .divider-text {
            display: flex; align-items: center; gap: 10px;
            color: #94a3b8; font-size: 0.78rem;
            margin: 20px 0 16px;
        }
        .divider-text::before, .divider-text::after {
            content: ''; flex: 1; height: 1px; background: #e2e8f0;
        }

        /* ── Módulos ── */
        .modulos-label { font-size: 0.8rem; font-weight: 700; color: #374151; margin-bottom: 8px; }
        .modulos-label span { color: var(--primary); font-weight: 500; }
        .modulos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
        .mc {
            border: 2px solid #e2e8f0; border-radius: 10px; padding: 10px 12px;
            cursor: pointer; display: flex; align-items: center; gap: 9px;
            transition: border-color .15s, background .15s; background: #fff;
            user-select: none;
        }
        .mc.selected { border-color: var(--primary); background: #f0fdf4; }
        .mc.locked { cursor: default; }
        .mc-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
        .mc-info { flex: 1; min-width: 0; }
        .mc-name { font-size: .78rem; font-weight: 700; color: #1a2e1a; }
        .mc-sub  { font-size: .68rem; color: #94a3b8; }
        .mc-check { font-size: .85rem; flex-shrink: 0; }

        /* ── Animate ── */
        @keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
        .animate { animation: slideUp .5s ease-out both; }
        .a1 { animation-delay: .05s; } .a2 { animation-delay: .1s; }
        .a3 { animation-delay: .15s; } .a4 { animation-delay: .2s; }
        .a5 { animation-delay: .25s; }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .page-wrapper { grid-template-columns: 1fr; }
            .hero-panel { padding: 40px 28px 32px; }
            .hero-headline { font-size: 1.8rem; }
            .feature-list { display: none; }
        }
        @media (max-width: 480px) {
            .card-form { padding: 24px 18px; }
        }
