:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b57d0;
    --accent-color: #f4b400;
    --bg-soft: #f5f7fb;
    --text-dark: #1f2937;
    --muted: #6b7280;
    --card-radius: 18px;
}

body.public-body {
    background: var(--bg-soft);
    color: var(--text-dark);
    font-family: Arial, sans-serif;
}

.public-navbar {
    background: linear-gradient(135deg, #0d6efd 0%, #0b57d0 100%);
}

.site-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.site-logo-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    overflow: hidden;
}

.brand-school {
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.brand-app {
    color: rgba(255,255,255,.85);
}

.hero-box {
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.info-card,
.sim-card,
.side-card {
    border: 0;
    border-radius: var(--card-radius);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.06);
    background: #fff;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.note-box {
    background: #fff8e1;
    border: 1px solid #ffe08a;
    border-radius: 12px;
    padding: 12px 14px;
    color: #7a5d00;
}

.map-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

#map {
    width: 100%;
    height: 460px;
}

.kpi-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
}

.kpi-item h6 {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 6px;
}

.kpi-item .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
}

.public-footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.small-muted {
    font-size: 13px;
    color: var(--muted);
}

.step-list li {
    margin-bottom: 8px;
}

.badge-soft {
    background: #e8f0fe;
    color: #0b57d0;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
}