body {
    font-family: 'DM Sans', sans-serif;
    background: #f8f9fb;
}

.page-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 32px 0;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.page-header p {
    color: #64748b;
    margin: 6px 0 0;
    font-size: 0.95rem;
}

.eventos-section {
    padding: 36px 0 60px;
}

.evento-card {
    background: white;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.evento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #c7d2fe;
}

.evento-card .card-body {
    padding: 1.4rem;
}

.evento-card .card-footer {
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    padding: 1rem 1.4rem;
}

.fecha-badge {
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.77rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cupo-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.info-item i {
    color: #3b82f6;
    font-size: 0.85rem;
    width: 14px;
}

.titulo-evento {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 10px 0 6px;
    line-height: 1.3;
}

.descripcion-evento {
    font-size: 0.83rem;
    color: #94a3b8;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.btn-inscribirse {
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 9px;
    transition: background 0.2s;
}

.btn-inscribirse:hover {
    background: #1d3a9e;
    color: white;
}

.btn-lleno {
    background: #f1f5f9;
    color: #94a3b8;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 9px;
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 80px 0;
    color: #94a3b8;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.section-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-meta h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.count-pill {
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 500;
}