.public-seguimiento-page {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: #f0f4f8;
    color: #0f172a;
    min-height: 100vh;
}

.public-hero {
    background: #0891b2;
    color: #fff;
    padding: 2.5rem 1rem 3rem;
}

.hero-inner {
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.public-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero-lead {
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.95;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-actions .btn {
    border-radius: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.public-main {
    max-width: 1100px;
    margin-top: -1.5rem;
    padding-bottom: 2.5rem;
}

.stats-row {
    margin-bottom: 0.5rem;
}

.stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.stat-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-icon.bg-teal { background: #0d9488; }
.stat-icon.bg-indigo { background: #4f46e5; }
.stat-icon.bg-amber { background: #d97706; }
.stat-icon.bg-green { background: #059669; }

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.panel-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.panel-header h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
}

.panel-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.volunteer-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.volunteer-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.volunteer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #06b6d4;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.volunteer-body {
    flex: 1;
    min-width: 0;
}

.volunteer-body strong {
    font-size: 0.95rem;
}

.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #ecfeff;
    color: #0e7490;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #a5f3fc;
}

.estado-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.estado-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

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

.activity-feed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-feed li {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.activity-feed li:last-child {
    border-bottom: none;
}

.activity-feed i {
    margin-top: 0.2rem;
}

.cta-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cta-card .btn-info {
    background: #0891b2;
    border: none;
    font-weight: 700;
    border-radius: 0.75rem;
}

.public-footer {
    padding: 1.25rem 1rem 2rem;
}

@media (max-width: 575.98px) {
    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

    .volunteer-item {
        flex-wrap: wrap;
    }
}
